Home
last modified time | relevance | path

Searched refs:readSInt64 (Results 1 – 11 of 11) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStreamReader.java280 public long readSInt64() throws IOException { in readSInt64() method in CodedInputStreamReader
282 return input.readSInt64(); in readSInt64()
1173 plist.addLong(input.readSInt64()); in readSInt64List()
1179 plist.addLong(input.readSInt64()); in readSInt64List()
1199 target.add(input.readSInt64()); in readSInt64List()
1205 target.add(input.readSInt64()); in readSInt64List()
1309 return readSInt64(); in readField()
DReader.java201 long readSInt64() throws IOException; in readSInt64() method
DWireFormat.java255 return input.readSInt64(); in readPrimitiveField()
DBinaryReader.java357 public long readSInt64() throws IOException { in readSInt64() method in BinaryReader.SafeHeapReader
1343 plist.addLong(readSInt64()); in readSInt64List()
1371 target.add(readSInt64()); in readSInt64List()
1481 return readSInt64(); in readField()
DCodedInputStream.java352 public abstract long readSInt64() throws IOException; in readSInt64() method in CodedInputStream
974 public long readSInt64() throws IOException { in readSInt64() method in CodedInputStream.ArrayDecoder
1701 public long readSInt64() throws IOException { in readSInt64() method in CodedInputStream.UnsafeDirectNioDecoder
2450 public long readSInt64() throws IOException { in readSInt64() method in CodedInputStream.StreamDecoder
3561 public long readSInt64() throws IOException { in readSInt64() method in CodedInputStream.IterableDirectByteBufferDecoder
DExtensionSchemaLite.java249 value = reader.readSInt64(); in parseExtension()
DExtensionSchemaFull.java269 value = reader.readSInt64(); in parseExtension()
DMessageSchema.java4008 UnsafeUtil.putLong(message, offset(typeAndOffset), reader.readSInt64()); in mergeFromHelper()
4294 message, offset(typeAndOffset), Long.valueOf(reader.readSInt64())); in mergeFromHelper()
/third_party/protobuf/objectivec/
DGPBCodedInputStream.h165 - (int64_t)readSInt64;
DGPBCodedInputStream.m507 - (int64_t)readSInt64 { method
/third_party/protobuf/objectivec/Tests/
DGPBCodedInputStreamTests.m159 XCTAssertEqual(value, [input readSInt64]);