Home
last modified time | relevance | path

Searched refs:string_uid (Results 1 – 4 of 4) sorted by relevance

/external/libwebm/webm_parser/tests/
Dchapter_atom_parser_test.cc36 EXPECT_FALSE(chapter_atom.string_uid.is_present()); in TEST_F()
37 EXPECT_EQ("", chapter_atom.string_uid.value()); in TEST_F()
78 EXPECT_TRUE(chapter_atom.string_uid.is_present()); in TEST_F()
79 EXPECT_EQ("", chapter_atom.string_uid.value()); in TEST_F()
157 EXPECT_TRUE(chapter_atom.string_uid.is_present()); in TEST_F()
158 EXPECT_EQ("A", chapter_atom.string_uid.value()); in TEST_F()
/external/libwebm/webm_parser/src/
Dchapter_atom_parser.h29 &ChapterAtom::string_uid),
/external/libwebm/webm_parser/include/webm/
Ddom_types.h1632 Element<std::string> string_uid; member
1658 return uid == other.uid && string_uid == other.string_uid &&
/external/libwebm/webm_parser/demo/
Ddemo.cc805 PrintOptionalElement("ChapterStringUID", chapter_atom.string_uid); in PrintMasterElement()