OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OnListStart
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/media/webm/
webm_content_encodings_client.h
31
virtual WebMParserClient*
OnListStart
(int id) OVERRIDE;
webm_info_parser.h
32
virtual WebMParserClient*
OnListStart
(int id) OVERRIDE;
webm_parser.h
22
// to be valid for the life of that call. Each method (except for
OnListStart
)
23
// returns a bool that indicates whether the parsed data is valid.
OnListStart
26
//
OnListStart
) is returned then the parse is immediately terminated and an
32
virtual WebMParserClient*
OnListStart
(int id);
114
bool
OnListStart
(int id, int64 size);
webm_info_parser.cc
37
WebMParserClient* WebMInfoParser::
OnListStart
(int id) { return this; }
webm_parser_unittest.cc
26
MOCK_METHOD1(
OnListStart
, WebMParserClient*(int));
56
EXPECT_CALL(*client,
OnListStart
(kWebMIdCluster)).WillOnce(Return(client));
76
EXPECT_CALL(client_,
OnListStart
(kWebMIdCluster)).WillOnce(Return(&client_));
93
EXPECT_CALL(client_,
OnListStart
(kWebMIdSegment)).WillOnce(Return(&client_));
94
EXPECT_CALL(client_,
OnListStart
(kWebMIdCluster)).WillOnce(Return(&client_));
114
EXPECT_CALL(client_,
OnListStart
(kWebMIdCluster)).WillOnce(Return(&client_));
132
EXPECT_CALL(client_,
OnListStart
(kWebMIdSegment)).WillOnce(Return(&client_));
161
EXPECT_CALL(client_,
OnListStart
(kWebMIdSegment)).WillOnce(Return(&client_));
181
EXPECT_CALL(client_,
OnListStart
(kWebMIdSegment)).WillOnce(Return(&client_));
182
EXPECT_CALL(client_,
OnListStart
(kWebMIdCluster)).WillOnce(Return(&client_))
[
all
...]
webm_tracks_parser.h
67
virtual WebMParserClient*
OnListStart
(int id) OVERRIDE;
webm_cluster_parser.h
107
virtual WebMParserClient*
OnListStart
(int id) OVERRIDE;
webm_tracks_parser.cc
71
WebMParserClient* WebMTracksParser::
OnListStart
(int id) {
76
return track_content_encodings_client_->
OnListStart
(id);
webm_content_encodings_client.cc
28
WebMParserClient* WebMContentEncodingsClient::
OnListStart
(int id) {
webm_parser.cc
651
WebMParserClient* WebMParserClient::
OnListStart
(int id) {
738
if (!
OnListStart
(root_id_, element_size))
833
if (!
OnListStart
(id, element_size))
866
bool WebMListParser::
OnListStart
(int id, int64 size) {
887
WebMParserClient* new_list_client = current_list_client->
OnListStart
(id);
webm_cluster_parser.cc
135
WebMParserClient* WebMClusterParser::
OnListStart
(int id) {
Completed in 133 milliseconds