/third_party/node/test/parallel/ |
D | test-buffer-readint.js | 51 assert.strictEqual(data.readInt8(0), 0x23); 54 assert.strictEqual(data.readInt8(0), -1); 57 assert.strictEqual(data.readInt8(0), -121); 58 assert.strictEqual(data.readInt8(1), -85); 59 assert.strictEqual(data.readInt8(2), 124); 60 assert.strictEqual(data.readInt8(3), -17);
|
D | test-buffer-read.js | 86 () => buf.readInt8(0), OOB_ERROR);
|
/third_party/node/lib/internal/ |
D | buffer.js | 350 return this.readInt8(offset); 419 function readInt8(offset = 0) { function 442 return this.readInt8(offset); 993 proto.readInt8 = readInt8;
|
/third_party/node/deps/npm/node_modules/string_decoder/node_modules/safe-buffer/ |
D | index.d.ts | 24 readInt8(offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/safe-buffer/ |
D | index.d.ts | 24 readInt8(offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/ |
D | index.d.ts | 24 readInt8(offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/tar/node_modules/safe-buffer/ |
D | index.d.ts | 24 readInt8(offset: number, noAssert?: boolean): number;
|
/third_party/node/deps/npm/node_modules/smart-buffer/typings/ |
D | smartbuffer.d.ts | 56 readInt8(offset?: number): number;
|
/third_party/node/deps/npm/node_modules/smart-buffer/docs/ |
D | CHANGELOG.md | 12 * Ability to read data from a specific offset. ex: readInt8(5)
|
D | README_v3.md | 168 * readInt8 189 let num = reader.readInt8();
|
/third_party/node/deps/npm/node_modules/smart-buffer/build/ |
D | smartbuffer.js | 108 readInt8(offset) { method in SmartBuffer 109 return this._readNumberValue(Buffer.prototype.readInt8, 1, offset);
|
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
D | decoder_test.js | 278 jspb.BinaryDecoder.prototype.readInt8,
|
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/ |
D | decoder_test.js | 267 jspb.BinaryDecoder.prototype.readInt8,
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_buffer.js | 218 this.readInt8 = function (...args) { method in mockBuffer.BufferClass
|
/third_party/protobuf/js/binary/ |
D | decoder.js | 710 jspb.BinaryDecoder.prototype.readInt8 = function() { method in jspb.BinaryDecoder
|
D | decoder_test.js | 428 jspb.BinaryDecoder.prototype.readInt8,
|
/third_party/node/deps/npm/node_modules/smart-buffer/ |
D | README.md | 266 ### readInt8([offset])
|
/third_party/typescript/src/compiler/ |
D | sys.ts | 1034 readInt8(offset: number): number; method
|
/third_party/node/doc/api/ |
D | buffer.md | 1675 ### `buf.readInt8([offset])` 1696 console.log(buf.readInt8(0)); 1698 console.log(buf.readInt8(1)); 1700 console.log(buf.readInt8(2));
|