/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/ |
D | SevenZFile.java | 413 final long propertySize = readUint64(input); in readArchiveProperties() 478 archive.packPos = readUint64(header); in readPackInfo() 479 final long numPackStreams = readUint64(header); in readPackInfo() 484 archive.packSizes[i] = readUint64(header); in readPackInfo() 511 final long numFolders = readUint64(header); in readUnpackInfo() 529 folder.unpackSizes[i] = readUint64(header); in readUnpackInfo() 563 final long numStreams = readUint64(header); in readSubStreamsInfo() 583 final long size = readUint64(header); in readSubStreamsInfo() 639 final long numCoders = readUint64(header); in readFolder() 657 coders[i].numInStreams = readUint64(header); in readFolder() [all …]
|
/external/protobuf/js/binary/ |
D | reader.js | 486 return this.readUint64(); 694 jspb.BinaryReader.prototype.readUint64 = function() { method in jspb.BinaryReader 783 return this.decoder_.readUint64(); 1117 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 | 262 assertThrows(function() {decoder.readUint64()}); 297 jspb.BinaryDecoder.prototype.readUint64,
|
D | decoder.js | 802 jspb.BinaryDecoder.prototype.readUint64 = function() { method in jspb.BinaryDecoder
|
/external/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 | 221 assertThrows(function() {decoder.readUint64()}); 256 jspb.BinaryDecoder.prototype.readUint64,
|
/external/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,
|
/external/protobuf/php/tests/ |
D | php_implementation_test.php | 96 GPBWire::readUint64($input, $value); 101 GPBWire::readUint64($input, $value); 106 GPBWire::readUint64($input, $value);
|
/external/flatbuffers/tests/ |
D | monster_test_generated.ts | 719 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1151 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1243 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1510 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1534 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb… 1568 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1592 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb… 1608 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1632 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb… 2719 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
|
D | monster_test_generated.js | 842 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1281 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1373 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1638 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1662 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c… 1696 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1720 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c… 1736 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1760 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c… 2904 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0);
|
/external/libchrome/mojo/public/js/lib/ |
D | codec.js | 99 Decoder.prototype.readUint64 = function() { method in Decoder 121 var offset = this.readUint64(); 701 this.requestID = this.decoder.readUint64(); 816 return decoder.readUint64();
|
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/ |
D | union_definition.tmpl | 169 decoder.readUint64();
|
/external/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 | 338 if (!GPBWire::readUint64($input, $value)) {
|
/external/flatbuffers/js/ |
D | flatbuffers.js | 944 flatbuffers.ByteBuffer.prototype.readUint64 = function(offset) { method in flatbuffers.ByteBuffer
|