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

  /external/protobuf/src/google/protobuf/
descriptor.pb.cc     [all...]
wire_format_lite_inl.h 238 while (elements_already_reserved > 0 && input->ExpectTag(tag)) {
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.cc 264 if (input->ExpectTag(10)) goto parse_file_to_generate;
265 if (input->ExpectTag(18)) goto parse_parameter;
282 if (input->ExpectTag(122)) goto parse_proto_file;
295 if (input->ExpectTag(122)) goto parse_proto_file;
614 if (input->ExpectTag(18)) goto parse_insertion_point;
631 if (input->ExpectTag(122)) goto parse_content;
    [all...]
  /external/protobuf/src/google/protobuf/io/
coded_stream.h 254 // given value. If ExpectTag() returns true, it also advances past
259 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 149 milliseconds