Home
last modified time | relevance | path

Searched refs:OnClusterBegin (Results 1 – 11 of 11) sorted by relevance

/external/libwebm/webm_parser/tests/
Dmaster_value_parser_test.cc50 return callback->OnClusterBegin(metadata(Id::kCluster), value(), action); in OnParseStarted()
82 EXPECT_CALL(callback_, OnClusterBegin(metadata_, Cluster{}, NotNull())) in TEST_F()
112 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
145 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
188 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
213 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
239 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
272 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
291 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
322 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
[all …]
Dcluster_parser_test.cc44 EXPECT_CALL(callback_, OnClusterBegin(metadata_, Cluster{}, NotNull())) in TEST_F()
59 EXPECT_CALL(callback_, OnClusterBegin(metadata_, Cluster{}, NotNull())) in TEST_F()
93 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
157 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
185 EXPECT_CALL(callback_, OnClusterBegin(_, _, _)).Times(0); in TEST_F()
221 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
253 EXPECT_CALL(callback_, OnClusterBegin(metadata_, cluster, NotNull())) in TEST_F()
Dsegment_parser_test.cc112 EXPECT_CALL(callback_, OnClusterBegin(metadata, _, NotNull())).Times(1); in TEST_F()
254 EXPECT_CALL(callback_, OnClusterBegin(_, _, NotNull())).Times(1); in TEST_F()
257 EXPECT_CALL(callback_, OnClusterBegin(_, _, NotNull())).Times(1); in TEST_F()
288 EXPECT_CALL(callback_, OnClusterBegin(_, _, _)).Times(0); in TEST_F()
Dcallback_test.cc106 TEST_F(CallbackTest, OnClusterBegin) { in TEST_F() argument
107 TestAction(&Callback::OnClusterBegin, Action::kRead); in TEST_F()
/external/libwebm/webm_parser/test_utils/
Dmock_callback.h44 ON_CALL(*this, OnClusterBegin(_, _, _)) in MockCallback()
97 MOCK_METHOD3(OnClusterBegin, Status(const ElementMetadata& metadata,
177 return Callback::OnClusterBegin(metadata, cluster, action); in OnClusterBeginConcrete()
/external/libwebm/webm_parser/src/
Dcluster_parser.h38 return callback->OnClusterBegin(metadata(Id::kCluster), value(), action); in OnParseStarted()
Dskip_callback.h35 Status OnClusterBegin(const ElementMetadata& /* metadata */, in OnClusterBegin() function
Dcallback.cc58 Status Callback::OnClusterBegin(const ElementMetadata& /* metadata */, in OnClusterBegin() function in webm::Callback
/external/libwebm/webm_parser/include/webm/
Dcallback.h180 virtual Status OnClusterBegin(const ElementMetadata& metadata,
/external/libwebm/webm_parser/
DREADME.md130 - `Callback::OnClusterBegin()`
153 element, `Callback::OnSegmentBegin()` and `Callback::OnClusterBegin()` will not
/external/libwebm/webm_parser/demo/
Ddemo.cc963 Status OnClusterBegin(const ElementMetadata& metadata, const Cluster& cluster, in OnClusterBegin() function in DemoCallback