Home
last modified time | relevance | path

Searched refs:readFixed32 (Results 1 – 24 of 24) sorted by relevance

/third_party/protobuf/js/experimental/runtime/kernel/
Dreader.js72 function readFixed32(bufferDecoder, start) { function
221 return readPacked(bufferDecoder, start, readFixed32);
345 readFixed32, property
Dreader_test.js90 expect(() => reader.readFixed32(bufferDecoder, 0)).toThrow();
95 const d = reader.readFixed32(pair.bufferDecoder, 0);
Dkernel.js601 indexArray, bytes, reader.readFixed32, WireType.FIXED32));
1059 indexArray, bytes, reader.readFixed32, reader.readPackedFixed32,
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStreamReader.java145 public int readFixed32() throws IOException { in readFixed32() method in CodedInputStreamReader
147 return input.readFixed32(); in readFixed32()
643 plist.addInt(input.readFixed32()); in readFixed32List()
648 plist.addInt(input.readFixed32()); in readFixed32List()
669 target.add(input.readFixed32()); in readFixed32List()
674 target.add(input.readFixed32()); in readFixed32List()
1291 return readFixed32(); in readField()
DUnknownFieldSchema.java89 addFixed32(unknownFields, fieldNumber, reader.readFixed32()); in mergeOneFieldFrom()
DReader.java115 int readFixed32() throws IOException; in readFixed32() method
DWireFormat.java241 return input.readFixed32(); in readPrimitiveField()
DBinaryReader.java197 public int readFixed32() throws IOException { in readFixed32() method in BinaryReader.SafeHeapReader
761 plist.addInt(readFixed32()); in readFixed32List()
790 target.add(readFixed32()); in readFixed32List()
1463 return readFixed32(); in readField()
DCodedInputStream.java273 public abstract int readFixed32() throws IOException; in readFixed32() method in CodedInputStream
776 public int readFixed32() throws IOException { in readFixed32() method in CodedInputStream.ArrayDecoder
1490 public int readFixed32() throws IOException { in readFixed32() method in CodedInputStream.UnsafeDirectNioDecoder
2242 public int readFixed32() throws IOException { in readFixed32() method in CodedInputStream.StreamDecoder
3338 public int readFixed32() throws IOException { in readFixed32() method in CodedInputStream.IterableDirectByteBufferDecoder
DUnknownFieldSetLite.java425 storeField(tag, input.readFixed32()); in mergeFieldFrom()
DExtensionSchemaLite.java228 value = reader.readFixed32(); in parseExtension()
DExtensionSchemaFull.java248 value = reader.readFixed32(); in parseExtension()
DUnknownFieldSet.java524 getFieldBuilder(number).addFixed32(input.readFixed32()); in mergeFieldFrom()
DMessageSchema.java3943 UnsafeUtil.putInt(message, offset(typeAndOffset), reader.readFixed32()); in mergeFromHelper()
4224 message, offset(typeAndOffset), Integer.valueOf(reader.readFixed32())); in mergeFromHelper()
/third_party/protobuf/objectivec/
DGPBCodedInputStream.h145 - (uint32_t)readFixed32;
DGPBCodedInputStream.m423 - (uint32_t)readFixed32 { method
/third_party/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php208 public static function readFixed32(&$input, &$value) function in Google\\Protobuf\\Internal\\GPBWire
220 if (!self::readFixed32($input, $value)) {
DMessage.php402 if (!GPBWire::readFixed32($input, $value)) {
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Dreader_test.js154 assertThrows(function() {reader.readFixed32()});
179 assertThrows(function() {reader.readFixed32()});
481 jspb.BinaryReader.prototype.readFixed32,
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Dreader_test.js154 assertThrows(function() {reader.readFixed32()});
179 assertThrows(function() {reader.readFixed32()});
481 jspb.BinaryReader.prototype.readFixed32,
/third_party/protobuf/js/binary/
Dreader_test.js154 assertThrows(function() {reader.readFixed32()});
179 assertThrows(function() {reader.readFixed32()});
511 jspb.BinaryReader.prototype.readFixed32,
Dreader.js493 return this.readFixed32();
767 jspb.BinaryReader.prototype.readFixed32 = function() { method in jspb.BinaryReader
/third_party/protobuf/php/tests/
DPhpImplementationTest.php148 GPBWire::readFixed32($input, $value);
/third_party/protobuf/objectivec/Tests/
DGPBCodedInputStreamTests.m125 XCTAssertEqual((uint32_t)value, [input readFixed32]);