| /third_party/protobuf/js/experimental/runtime/kernel/ |
| H A D | reader.js | 46 function readInt32(bufferDecoder, start) { function 245 return readPacked(bufferDecoder, start, readInt32); 347 readInt32,
|
| H A D | reader_test.js | 115 describe('readInt32 does', () => { 118 expect(() => reader.readInt32(bufferDecoder, 0)).toThrow(); 124 expect(() => reader.readInt32(pair.bufferDecoder, 0)).toThrow(); 126 const d = reader.readInt32(pair.bufferDecoder, 0);
|
| H A D | kernel.js | 644 readOptional(indexArray, bytes, reader.readInt32, WireType.VARINT)); 1192 indexArray, bytes, reader.readInt32, reader.readPackedInt32,
|
| /third_party/protobuf/js/binary/ |
| H A D | reader.js | 489 return this.readInt32(); 608 jspb.BinaryReader.prototype.readInt32 = function() { 815 return this.decoder_.readInt32(); 830 return this.decoder_.readInt32().toString(); 1205 return this.readPackedField_(this.decoder_.readInt32);
|
| H A D | decoder.js | 737 jspb.BinaryDecoder.prototype.readInt32 = function() {
|
| H A D | decoder_test.js | 438 jspb.BinaryDecoder.prototype.readInt32,
|
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| H A D | CodedInputStreamReader.java | 133 public int readInt32() throws IOException { in readInt32() method in CodedInputStreamReader 135 return input.readInt32(); in readInt32() 526 plist.addInt(input.readInt32()); in readInt32List() 532 plist.addInt(input.readInt32()); in readInt32List() 552 target.add(input.readInt32()); in readInt32List() 558 target.add(input.readInt32()); in readInt32List() 1297 return readInt32(); in readField()
|
| H A D | Reader.java | 103 int readInt32() throws IOException; in readInt32() method
|
| H A D | WireFormat.java | 237 return input.readInt32(); in readPrimitiveField()
|
| H A D | ExtensionSchemaFull.java | 220 int number = reader.readInt32(); in parseExtension() 242 value = reader.readInt32(); in parseExtension()
|
| H A D | ExtensionSchemaLite.java | 198 int number = reader.readInt32(); in parseExtension() 222 value = reader.readInt32(); in parseExtension()
|
| H A D | BinaryReader.java | 185 public int readInt32() throws IOException { in readInt32() method in BinaryReader.SafeHeapReader 633 plist.addInt(readInt32()); in readInt32List() 662 target.add(readInt32()); in readInt32List() 1469 return readInt32(); in readField()
|
| H A D | CodedInputStream.java | 54 * constructs and field types (e.g. {@link #readTag()} and {@link #readInt32()}) and methods that 267 public abstract int readInt32() throws IOException; in readInt32() method in CodedInputStream 766 public int readInt32() throws IOException { in readInt32() method in CodedInputStream.ArrayDecoder 1480 public int readInt32() throws IOException { in readInt32() method in CodedInputStream.UnsafeDirectNioDecoder 2232 public int readInt32() throws IOException { in readInt32() method in CodedInputStream.StreamDecoder 3328 public int readInt32() throws IOException { in readInt32() method in CodedInputStream.IterableDirectByteBufferDecoder
|
| H A D | MessageSchema.java | 3935 UnsafeUtil.putInt(message, offset(typeAndOffset), reader.readInt32()); in mergeFromHelper() 4214 message, offset(typeAndOffset), Integer.valueOf(reader.readInt32())); in mergeFromHelper()
|
| /third_party/protobuf/objectivec/ |
| H A D | GPBCodedInputStream.h | 137 - (int32_t)readInt32;
|
| /third_party/protobuf/php/src/Google/Protobuf/Internal/ |
| H A D | GPBWire.php | 166 public static function readInt32(&$input, &$value) function 182 return self::readInt32($input, $value);
|
| H A D | Message.php | 390 if (!GPBWire::readInt32($input, $value)) { 449 if (!GPBWire::readInt32($input, $value)) { 513 if (!GPBWire::readInt32($input, $length)) {
|
| /third_party/protobuf/php/tests/ |
| H A D | PhpImplementationTest.php | 36 GPBWire::readInt32($input, $value); 41 GPBWire::readInt32($input, $value); 46 GPBWire::readInt32($input, $value);
|
| /third_party/protobuf/js/compatibility_tests/v3.0.0/binary/ |
| H A D | decoder_test.js | 277 jspb.BinaryDecoder.prototype.readInt32,
|
| /third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
| H A D | decoder_test.js | 288 jspb.BinaryDecoder.prototype.readInt32,
|
| /third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
| H A D | MapTest.java | 1424 int ret = input.readInt32(); in readMapIntegerKey()
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/ |
| H A D | stylo.hpp | [all...] |