OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExpectTag
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.pb.cc
[
all
...]
wire_format_lite_inl.h
232
while (elements_already_reserved > 0 && input->
ExpectTag
(tag)) {
[
all
...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
plugin.pb.cc
258
if (input->
ExpectTag
(10)) goto parse_file_to_generate;
259
if (input->
ExpectTag
(18)) goto parse_parameter;
276
if (input->
ExpectTag
(122)) goto parse_proto_file;
290
if (input->
ExpectTag
(122)) goto parse_proto_file;
589
if (input->
ExpectTag
(18)) goto parse_insertion_point;
606
if (input->
ExpectTag
(122)) goto parse_content;
[
all
...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
coded_stream.h
243
// given value. If
ExpectTag
() returns true, it also advances past
248
bool
ExpectTag
(uint32 expected) GOOGLE_ATTRIBUTE_ALWAYS_INLINE;
[
all
...]
coded_stream_unittest.cc
244
TEST_1D(CodedStreamTest,
ExpectTag
, kVarintCases) {
255
//
ExpectTag
() will return a false negative.
262
//
ExpectTag
() produces false negatives for large values.
264
EXPECT_FALSE(coded_input.
ExpectTag
(expected_value + 1));
265
EXPECT_TRUE(coded_input.
ExpectTag
(expected_value));
267
EXPECT_FALSE(coded_input.
ExpectTag
(expected_value));
[
all
...]
Completed in 153 milliseconds