/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 | 791 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1218 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1310 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1577 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1601 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb… 1635 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1659 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb… 1675 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0); 1699 …return offset ? this.bb!.readUint64(this.bb!.__vector(this.bb_pos + offset) + index * 8) : this.bb… 2806 return offset ? this.bb!.readUint64(this.bb_pos + offset) : this.bb!.createLong(0, 0);
|
D | monster_test_generated.js | 934 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1368 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1460 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1725 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1749 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c… 1783 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1807 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c… 1823 return offset ? this.bb.readUint64(this.bb_pos + offset) : this.bb.createLong(0, 0); 1847 …return offset ? this.bb.readUint64(this.bb.__vector(this.bb_pos + offset) + index * 8) : this.bb.c… 3012 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 | 965 flatbuffers.ByteBuffer.prototype.readUint64 = function(offset) { method in flatbuffers.ByteBuffer
|