/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/ |
D | reader_test.js | 171 assertThrows(function() {reader.readUint64()}); 324 assertNotUndefined(jspb.BinaryReader.prototype.readUint64); 334 jspb.BinaryReader.prototype.readUint64, 383 assertNotNull(jspb.BinaryReader.prototype.readUint64); 401 jspb.BinaryReader.prototype.readUint64,
|
D | decoder_test.js | 221 assertThrows(function() {decoder.readUint64()}); 256 jspb.BinaryDecoder.prototype.readUint64,
|
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
D | reader_test.js | 171 assertThrows(function() {reader.readUint64()}); 324 assertNotUndefined(jspb.BinaryReader.prototype.readUint64); 334 jspb.BinaryReader.prototype.readUint64, 383 assertNotNull(jspb.BinaryReader.prototype.readUint64); 401 jspb.BinaryReader.prototype.readUint64,
|
D | decoder_test.js | 232 assertThrows(function() {decoder.readUint64()}); 267 jspb.BinaryDecoder.prototype.readUint64,
|
/third_party/protobuf/js/binary/ |
D | reader.js | 487 return this.readUint64(); 695 jspb.BinaryReader.prototype.readUint64 = function() { method in jspb.BinaryReader 784 return this.decoder_.readUint64(); 1185 return this.readPackedField_(this.decoder_.readUint64);
|
D | reader_test.js | 171 assertThrows(function() {reader.readUint64()}); 324 assertNotUndefined(jspb.BinaryReader.prototype.readUint64); 334 jspb.BinaryReader.prototype.readUint64, 383 assertNotNull(jspb.BinaryReader.prototype.readUint64); 401 jspb.BinaryReader.prototype.readUint64,
|
D | decoder_test.js | 382 assertThrows(function() {decoder.readUint64()}); 417 jspb.BinaryDecoder.prototype.readUint64,
|
D | decoder.js | 684 jspb.BinaryDecoder.prototype.readUint64 = function() { method in jspb.BinaryDecoder
|
/third_party/flatbuffers/tests/optional_scalars/ |
D | scalar-stuff.js | 110 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 114 return offset ? this.bb.readUint64(this.bb_pos + offset) : null; 118 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(42, 0);
|
D | scalar-stuff.ts | 137 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 142 return offset ? this.bb!.readUint64(this.bb_pos + offset) : null; 147 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(42, 0);
|
/third_party/flatbuffers/tests/my-game/example/ |
D | referrable.js | 22 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0);
|
D | monster.js | 199 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 247 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 375 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 387 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c… 403 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 415 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c… 423 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 435 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c…
|
D | referrable.ts | 27 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
|
D | monster.ts | 257 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 321 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 487 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 503 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb… 523 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 539 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb… 549 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 565 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb…
|
D | type-aliases.js | 106 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0);
|
D | type-aliases.ts | 139 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
|
/third_party/protobuf/php/tests/ |
D | PhpImplementationTest.php | 96 GPBWire::readUint64($input, $value); 101 GPBWire::readUint64($input, $value); 106 GPBWire::readUint64($input, $value);
|
/third_party/flatbuffers/ts/ |
D | byte-buffer.ts | 82 readUint64(offset: number): Long { method in ByteBuffer
|
/third_party/node/test/parallel/ |
D | test-v8-serdes.js | 87 assert.deepStrictEqual(des.readUint64(), [1, 2]);
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
D | GPBWire.php | 185 public static function readUint64(&$input, &$value) function in Google\\Protobuf\\Internal\\GPBWire
|
D | Message.php | 384 if (!GPBWire::readUint64($input, $value)) {
|
/third_party/node/doc/api/ |
D | v8.md | 490 #### `deserializer.readUint64()`
|