OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OnString
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/media/webm/
webm_info_parser.h
37
virtual bool
OnString
(int id, const std::string& str) OVERRIDE;
webm_info_parser.cc
80
bool WebMInfoParser::
OnString
(int id, const std::string& str) {
webm_parser.h
37
virtual bool
OnString
(int id, const std::string& str);
webm_tracks_parser.h
72
virtual bool
OnString
(int id, const std::string& str) OVERRIDE;
webm_parser_unittest.cc
31
MOCK_METHOD2(
OnString
, bool(int, const std::string&));
383
EXPECT_CALL(client_,
OnString
(kWebMIdDocType, "")).WillOnce(Return(true));
384
EXPECT_CALL(client_,
OnString
(kWebMIdDocType, "")).WillOnce(Return(true));
385
EXPECT_CALL(client_,
OnString
(kWebMIdDocType, "a")).WillOnce(Return(true));
386
EXPECT_CALL(client_,
OnString
(kWebMIdDocType, "a")).WillOnce(Return(true));
webm_tracks_parser.cc
277
bool WebMTracksParser::
OnString
(int id, const std::string& str) {
webm_parser.cc
610
return client->
OnString
(id, str) ? size : -1;
676
bool WebMParserClient::
OnString
(int id, const std::string& str) {
Completed in 564 milliseconds