HomeSort by relevance Sort by last modified time
    Searched refs:ReadTag (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectsource.cc 186 uint32 tag = stream_->ReadTag(), last_tag = tag + 1;
203 tag = stream_->ReadTag();
221 tag = stream_->ReadTag();
242 tag_to_return = stream_->ReadTag();
246 } while ((tag_to_return = stream_->ReadTag()) == list_tag);
264 for (uint32 tag = stream_->ReadTag(); tag != 0; tag = stream_->ReadTag()) {
294 } while ((tag_to_return = stream_->ReadTag()) == list_tag);
377 uint32 tag = os->stream_->ReadTag();
381 os->stream_->ReadTag();
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttributeData.h 82 /// ReadTag - read an attribute tag from input buffer.
88 static bool ReadTag(TagType& pTag, const char*& pBuf, size_t& pBufSize);
92 /// Similar with ReadTag() while this reads attribute value from the input
  /frameworks/compile/mclinker/lib/Target/
ELFAttributeData.cpp 18 bool ELFAttributeData::ReadTag(TagType& pTag,
ELFAttribute.cpp 237 if (!ELFAttributeData::ReadTag(tag, attr_buf, attr_size))
  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedInputStreamTest.cs 282 Assert.AreEqual(tag, input.ReadTag());
357 Assert.AreEqual(tag, input.ReadTag());
408 uint tag = input.ReadTag();
412 tag = input.ReadTag();
422 Assert.Throws<InvalidProtocolBufferException>(() => input.ReadTag());
464 Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited), input.ReadTag());
466 Assert.AreEqual(WireFormat.MakeTag(2, WireFormat.WireType.StartGroup), input.ReadTag());
468 Assert.AreEqual(WireFormat.MakeTag(3, WireFormat.WireType.LengthDelimited), input.ReadTag());
495 Assert.AreEqual(WireFormat.MakeTag(1, WireFormat.WireType.LengthDelimited), input.ReadTag());
497 Assert.AreEqual(WireFormat.MakeTag(2, WireFormat.WireType.StartGroup), input.ReadTag());
    [all...]
CodedOutputStreamTest.cs 340 uint tag = cin.ReadTag();
346 tag = cin.ReadTag();
357 tag = cin.ReadTag();
363 tag = cin.ReadTag();
371 tag = cin.ReadTag();
382 tag = cin.ReadTag();
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Wrappers.cs 150 while ((tag = input.ReadTag()) != 0) {
261 while ((tag = input.ReadTag()) != 0) {
372 while ((tag = input.ReadTag()) != 0) {
483 while ((tag = input.ReadTag()) != 0) {
594 while ((tag = input.ReadTag()) != 0) {
705 while ((tag = input.ReadTag()) != 0) {
816 while ((tag = input.ReadTag()) != 0) {
927 while ((tag = input.ReadTag()) != 0) {
1038 while ((tag = input.ReadTag()) != 0) {
Empty.cs 117 while ((tag = input.ReadTag()) != 0) {
SourceContext.cs 137 while ((tag = input.ReadTag()) != 0) {
Struct.cs 162 while ((tag = input.ReadTag()) != 0) {
447 while ((tag = input.ReadTag()) != 0) {
581 while ((tag = input.ReadTag()) != 0) {
  /art/runtime/jdwp/
jdwp_request.cc 136 JdwpTag Request::ReadTag() {
  /external/nanopb-c/generator/google/protobuf/internal/
decoder.py 160 def ReadTag(buffer, pos):
574 local_ReadTag = ReadTag
663 (tag_bytes, pos) = ReadTag(buffer, pos)
  /external/protobuf/csharp/src/AddressBook/
Addressbook.cs 201 while ((tag = input.ReadTag()) != 0) {
347 while ((tag = input.ReadTag()) != 0) {
454 while ((tag = input.ReadTag()) != 0) {
  /external/protobuf/csharp/src/Google.Protobuf/
CodedInputStream.cs 287 /// Verifies that the last call to ReadTag() returned tag 0 - in other words,
304 /// Peeks at the next field tag. This is like calling <see cref="ReadTag"/>, but the
305 /// tag is not consumed. (So a subsequent call to <see cref="ReadTag"/> will return the
316 nextTag = ReadTag();
318 lastTag = savedLast; // Undo the side effect of ReadTag
331 public uint ReadTag()
385 /// This should be called directly after <see cref="ReadTag"/>, when
429 // depth changes into the ReadTag method instead, potentially...
438 tag = ReadTag();
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
UnittestImportProto3.cs 142 while ((tag = input.ReadTag()) != 0) {
UnittestImportPublicProto3.cs 128 while ((tag = input.ReadTag()) != 0) {
UnittestIssues.cs 151 while ((tag = input.ReadTag()) != 0) {
229 while ((tag = input.ReadTag()) != 0) {
307 while ((tag = input.ReadTag()) != 0) {
446 while ((tag = input.ReadTag()) != 0) {
536 while ((tag = input.ReadTag()) != 0) {
735 while ((tag = input.ReadTag()) != 0) {
866 while ((tag = input.ReadTag()) != 0) {
    [all...]
UnittestProto3.cs     [all...]
  /external/v8/src/
value-serializer.h 226 Maybe<SerializationTag> ReadTag() WARN_UNUSED_RESULT;
  /external/protobuf/src/google/protobuf/io/
coded_stream_unittest.cc 207 TEST_2D(CodedStreamTest, ReadTag, kVarintCases, kBlockSizes) {
215 EXPECT_EQ(expected_value, coded_input.ReadTag());
247 input.ReadTag();
    [all...]
coded_stream.h 246 GOOGLE_ATTRIBUTE_ALWAYS_INLINE uint32 ReadTag();
248 // This usually a faster alternative to ReadTag() when cutoff is a manifest
251 // the cases where ReadTag() would return 0. If the second part is true
281 // call to LastTagWas() will act as if ReadTag() had been called and returned
285 // If the last call to ReadTag() or ReadTagWithCutoff() returned the
523 uint32 last_tag_; // result of last ReadTag() or ReadTagWithCutoff().
525 // This is set true by ReadTag{Fallback/Slow}() if it is called when exactly
    [all...]
  /external/protobuf/src/google/protobuf/
wire_format_lite.cc 225 uint32 tag = input->ReadTag();
245 uint32 tag = input->ReadTag();
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
coded_stream.h 239 uint32 ReadTag() GOOGLE_ATTRIBUTE_ALWAYS_INLINE;
263 // call to LastTagWas() will act as if ReadTag() had been called and returned
267 // If the last call to ReadTag() returned the given value, returns true.
469 uint32 last_tag_; // result of last ReadTag().
471 // This is set true by ReadTag{Fallback/Slow}() if it is called when exactly
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
coded_stream.h 239 uint32 ReadTag() GOOGLE_ATTRIBUTE_ALWAYS_INLINE;
263 // call to LastTagWas() will act as if ReadTag() had been called and returned
267 // If the last call to ReadTag() returned the given value, returns true.
469 uint32 last_tag_; // result of last ReadTag().
471 // This is set true by ReadTag{Fallback/Slow}() if it is called when exactly
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
coded_stream.h 239 uint32 ReadTag() GOOGLE_ATTRIBUTE_ALWAYS_INLINE;
263 // call to LastTagWas() will act as if ReadTag() had been called and returned
267 // If the last call to ReadTag() returned the given value, returns true.
469 uint32 last_tag_; // result of last ReadTag().
471 // This is set true by ReadTag{Fallback/Slow}() if it is called when exactly
    [all...]

Completed in 933 milliseconds

1 2 3