HomeSort by relevance Sort by last modified time
    Searched refs:OnString (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/media/formats/webm/
webm_info_parser.h 39 virtual bool OnString(int id, const std::string& str) OVERRIDE;
webm_info_parser.cc 99 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 83 virtual bool OnString(int id, const std::string& str) OVERRIDE;
webm_parser_unittest.cc 31 MOCK_METHOD2(OnString, bool(int, const std::string&));
401 EXPECT_CALL(client_, OnString(kWebMIdDocType, "")).WillOnce(Return(true));
402 EXPECT_CALL(client_, OnString(kWebMIdDocType, "")).WillOnce(Return(true));
403 EXPECT_CALL(client_, OnString(kWebMIdDocType, "a")).WillOnce(Return(true));
404 EXPECT_CALL(client_, OnString(kWebMIdDocType, "a")).WillOnce(Return(true));
webm_tracks_parser.cc 316 bool WebMTracksParser::OnString(int id, const std::string& str) {
webm_parser.cc 616 return client->OnString(id, str) ? size : -1;
682 bool WebMParserClient::OnString(int id, const std::string& str) {

Completed in 46 milliseconds