Home
last modified time | relevance | path

Searched refs:ExpectTag (Results 1 – 5 of 5) sorted by relevance

/external/protobuf/src/google/protobuf/
Ddescriptor.pb.cc851 if (input->ExpectTag(10)) goto parse_file; in MergePartialFromCodedStream()
1125 if (input->ExpectTag(18)) goto parse_package; in MergePartialFromCodedStream()
1142 if (input->ExpectTag(26)) goto parse_dependency; in MergePartialFromCodedStream()
1160 if (input->ExpectTag(26)) goto parse_dependency; in MergePartialFromCodedStream()
1161 if (input->ExpectTag(34)) goto parse_message_type; in MergePartialFromCodedStream()
1174 if (input->ExpectTag(34)) goto parse_message_type; in MergePartialFromCodedStream()
1175 if (input->ExpectTag(42)) goto parse_enum_type; in MergePartialFromCodedStream()
1188 if (input->ExpectTag(42)) goto parse_enum_type; in MergePartialFromCodedStream()
1189 if (input->ExpectTag(50)) goto parse_service; in MergePartialFromCodedStream()
1202 if (input->ExpectTag(50)) goto parse_service; in MergePartialFromCodedStream()
[all …]
Dwire_format_lite_inl.h238 while (elements_already_reserved > 0 && input->ExpectTag(tag)) { in ReadRepeatedPrimitive()
/external/protobuf/src/google/protobuf/compiler/
Dplugin.pb.cc264 if (input->ExpectTag(10)) goto parse_file_to_generate; in MergePartialFromCodedStream()
265 if (input->ExpectTag(18)) goto parse_parameter; in MergePartialFromCodedStream()
282 if (input->ExpectTag(122)) goto parse_proto_file; in MergePartialFromCodedStream()
295 if (input->ExpectTag(122)) goto parse_proto_file; in MergePartialFromCodedStream()
614 if (input->ExpectTag(18)) goto parse_insertion_point; in MergePartialFromCodedStream()
631 if (input->ExpectTag(122)) goto parse_content; in MergePartialFromCodedStream()
957 if (input->ExpectTag(122)) goto parse_file; in MergePartialFromCodedStream()
970 if (input->ExpectTag(122)) goto parse_file; in MergePartialFromCodedStream()
/external/protobuf/src/google/protobuf/io/
Dcoded_stream_unittest.cc244 TEST_1D(CodedStreamTest, ExpectTag, kVarintCases) { in TEST_1D() argument
264 EXPECT_FALSE(coded_input.ExpectTag(expected_value + 1)); in TEST_1D()
265 EXPECT_TRUE(coded_input.ExpectTag(expected_value)); in TEST_1D()
267 EXPECT_FALSE(coded_input.ExpectTag(expected_value)); in TEST_1D()
Dcoded_stream.h259 bool ExpectTag(uint32 expected) GOOGLE_ATTRIBUTE_ALWAYS_INLINE;
936 inline bool CodedInputStream::ExpectTag(uint32 expected) { in ExpectTag() function