Home
last modified time | relevance | path

Searched refs:chapter_atom (Results 1 – 3 of 3) sorted by relevance

/external/libwebm/webm_parser/tests/
Dchapter_atom_parser_test.cc31 const ChapterAtom chapter_atom = parser_.value(); in TEST_F() local
33 EXPECT_FALSE(chapter_atom.uid.is_present()); in TEST_F()
34 EXPECT_EQ(static_cast<std::uint64_t>(0), chapter_atom.uid.value()); in TEST_F()
36 EXPECT_FALSE(chapter_atom.string_uid.is_present()); in TEST_F()
37 EXPECT_EQ("", chapter_atom.string_uid.value()); in TEST_F()
39 EXPECT_FALSE(chapter_atom.time_start.is_present()); in TEST_F()
40 EXPECT_EQ(static_cast<std::uint64_t>(0), chapter_atom.time_start.value()); in TEST_F()
42 EXPECT_FALSE(chapter_atom.time_end.is_present()); in TEST_F()
43 EXPECT_EQ(static_cast<std::uint64_t>(0), chapter_atom.time_end.value()); in TEST_F()
45 EXPECT_EQ(static_cast<std::size_t>(0), chapter_atom.displays.size()); in TEST_F()
[all …]
Dedition_entry_parser_test.cc66 ChapterAtom chapter_atom; in TEST_F() local
67 chapter_atom.uid.Set(1, true); in TEST_F()
68 edition_entry.atoms.emplace_back(chapter_atom, true); in TEST_F()
69 chapter_atom.uid.Set(2, true); in TEST_F()
70 edition_entry.atoms.emplace_back(chapter_atom, true); in TEST_F()
/external/libwebm/webm_parser/demo/
Ddemo.cc803 void PrintMasterElement(const ChapterAtom& chapter_atom) { in PrintMasterElement() argument
804 PrintMandatoryElement("ChapterUID", chapter_atom.uid); in PrintMasterElement()
805 PrintOptionalElement("ChapterStringUID", chapter_atom.string_uid); in PrintMasterElement()
806 PrintMandatoryElement("ChapterTimeStart", chapter_atom.time_start); in PrintMasterElement()
807 PrintOptionalElement("ChapterTimeEnd", chapter_atom.time_end); in PrintMasterElement()
808 PrintMasterElement("ChapterDisplay", chapter_atom.displays); in PrintMasterElement()
809 PrintMasterElement("ChapterAtom", chapter_atom.atoms); in PrintMasterElement()