Lines Matching refs:TouchVideoFrame

444     std::unordered_map<int32_t /*deviceId*/, std::vector<TouchVideoFrame>> mVideoFrames;
647 std::vector<TouchVideoFrame>> videoFrames) { in setVideoFrames()
787 std::vector<TouchVideoFrame> getVideoFrames(int32_t deviceId) override { in getVideoFrames()
790 std::vector<TouchVideoFrame> frames = std::move(it->second); in getVideoFrames()
8002 TouchVideoFrame frame(3, 2, {1, 2, 3, 4, 5, 6}, {1, 2}); in TEST_F()
8003 std::vector<TouchVideoFrame> frames{frame}; in TEST_F()
8016 ASSERT_EQ(std::vector<TouchVideoFrame>(), motionArgs.videoFrames); in TEST_F()
8024 TouchVideoFrame frame(3, 2, {1, 2, 3, 4, 5, 6}, {1, 2}); in TEST_F()
8033 std::vector<TouchVideoFrame> frames{frame}; in TEST_F()
8050 TouchVideoFrame frame(3, 2, {1, 2, 3, 4, 5, 6}, {1, 2}); in TEST_F()
8059 std::vector<TouchVideoFrame> frames{frame}; in TEST_F()
8079 TouchVideoFrame frame1(3, 2, {1, 2, 3, 4, 5, 6}, {1, 2}); in TEST_F()
8080 TouchVideoFrame frame2(3, 3, {0, 1, 2, 3, 4, 5, 6, 7, 8}, {1, 3}); in TEST_F()
8081 TouchVideoFrame frame3(2, 2, {10, 20, 10, 0}, {1, 4}); in TEST_F()
8082 std::vector<TouchVideoFrame> frames{frame1, frame2, frame3}; in TEST_F()
8102 TouchVideoFrame frame1(3, 2, {1, 2, 3, 4, 5, 6}, {1, 2}); in TEST_F()
8103 TouchVideoFrame frame2(3, 3, {0, 1, 2, 3, 4, 5, 6, 7, 8}, {1, 3}); in TEST_F()
8104 TouchVideoFrame frame3(2, 2, {10, 20, 10, 0}, {1, 4}); in TEST_F()
8105 std::vector<TouchVideoFrame> frames{frame1, frame2, frame3}; in TEST_F()
8113 std::for_each(frames.begin(), frames.end(), [](TouchVideoFrame& frame) { in TEST_F()