Home
last modified time | relevance | path

Searched refs:OnBlockBegin (Results 1 – 10 of 10) sorted by relevance

/external/libwebm/webm_parser/tests/
Dcallback_test.cc122 TEST_F(CallbackTest, OnBlockBegin) { in TEST_F() argument
123 TestAction(&Callback::OnBlockBegin, Action::kRead); in TEST_F()
Dblock_group_parser_test.cc133 EXPECT_CALL(callback_, OnBlockBegin(_, block, NotNull())).Times(1); in TEST_F()
Dblock_parser_test.cc549 EXPECT_CALL(callback_, OnBlockBegin(_, _, _)).Times(0); in SetExpectations()
553 OnBlockBegin(metadata.parent_element, expected_block, NotNull())); in SetExpectations()
/external/libwebm/webm_parser/test_utils/
Dmock_callback.h52 ON_CALL(*this, OnBlockBegin(_, _, _)) in MockCallback()
110 MOCK_METHOD3(OnBlockBegin, Status(const ElementMetadata& metadata,
198 return Callback::OnBlockBegin(metadata, block, action); in OnBlockBeginConcrete()
/external/libwebm/webm_parser/src/
Dskip_callback.h54 Status OnBlockBegin(const ElementMetadata& /* metadata */, in OnBlockBegin() function
Dcallback.cc85 Status Callback::OnBlockBegin(const ElementMetadata& /* metadata */, in OnBlockBegin() function in webm::Callback
Dblock_parser.cc39 return callback->OnBlockBegin(metadata, block, action); in BasicBlockBegin()
/external/libwebm/webm_parser/include/webm/
Dcallback.h230 virtual Status OnBlockBegin(const ElementMetadata& metadata,
/external/libwebm/webm_parser/
DREADME.md135 - `Callback::OnBlockBegin()`
148 `Callback::OnBlockBegin()`/`Callback::OnBlockEnd()`, since the SimpleBlock and
/external/libwebm/webm_parser/demo/
Ddemo.cc1015 Status OnBlockBegin(const ElementMetadata& metadata, const Block& block, in OnBlockBegin() function in DemoCallback