Home
last modified time | relevance | path

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

/external/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
972 public long readSInt64() throws IOException { in readSInt64() method in CodedInputStream.ArrayDecoder
1699 public long readSInt64() throws IOException { in readSInt64() method in CodedInputStream.UnsafeDirectNioDecoder
2448 public long readSInt64() throws IOException { in readSInt64() method in CodedInputStream.StreamDecoder
3559 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.java4000 UnsafeUtil.putLong(message, offset(typeAndOffset), reader.readSInt64()); in mergeFromHelper()
4286 message, offset(typeAndOffset), Long.valueOf(reader.readSInt64())); in mergeFromHelper()
/external/protobuf/objectivec/
DGPBCodedInputStream.h165 - (int64_t)readSInt64;
DGPBCodedInputStream.m499 - (int64_t)readSInt64 { method
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
DCodedInputByteBufferNano.java276 public long readSInt64() throws IOException { in readSInt64() method in CodedInputByteBufferNano
678 return readSInt64(); in readPrimitiveField()
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
DCodedInputStreamMicro.java283 public long readSInt64() throws IOException { in readSInt64() method in CodedInputStreamMicro
/external/protobuf/objectivec/Tests/
DGPBCodedInputStreamTests.m159 XCTAssertEqual(value, [input readSInt64]);