Home
last modified time | relevance | path

Searched refs:asUint8Array (Results 1 – 9 of 9) sorted by relevance

/third_party/protobuf/js/experimental/runtime/kernel/
Dwriter_test.js261 .toEqual(pair.bufferDecoder.asUint8Array());
295 expect(buffer.subarray(1, 5)).toEqual(pair.bufferDecoder.asUint8Array());
314 expect(buffer.subarray(1, 5)).toEqual(pair.bufferDecoder.asUint8Array());
349 .toEqual(pair.bufferDecoder.asUint8Array());
374 expect(buffer.subarray(1, 5)).toEqual(pair.bufferDecoder.asUint8Array());
393 expect(buffer.subarray(1, 9)).toEqual(pair.bufferDecoder.asUint8Array());
413 .toEqual(pair.bufferDecoder.asUint8Array());
434 .toEqual(pair.bufferDecoder.asUint8Array());
455 .toEqual(pair.bufferDecoder.asUint8Array());
476 .toEqual(pair.bufferDecoder.asUint8Array());
[all …]
Dbuffer_decoder.js49 const uint8Arrays = bufferDecoders.map(b => b.asUint8Array());
327 return byteStringFromUint8ArrayUnsafe(this.asUint8Array());
337 asUint8Array() { method in BufferDecoder
Dwriter.js458 bufferDecoder.subBufferDecoder(start, dataLength).asUint8Array());
/third_party/flatbuffers/grpc/examples/ts/greeter/src/
Dserver.ts15 …callback(null, HelloReply.getRootAsHelloReply(new flatbuffers.ByteBuffer(builder.asUint8Array())));
26 … call.write(HelloReply.getRootAsHelloReply(new flatbuffers.ByteBuffer(builder.asUint8Array())))
Dclient.ts13 …st buffer = HelloRequest.getRootAsHelloRequest(new flatbuffers.ByteBuffer(builder.asUint8Array()));
/third_party/flatbuffers/tests/
DJavaScriptUnionVectorTest.js92 var buf = new flatbuffers.ByteBuffer(fbb.asUint8Array());
105 var unpackBuf = new flatbuffers.ByteBuffer(fbb.asUint8Array());
DJavaScriptTest.js97 fs.writeFileSync('monsterdata_javascript_wire.mon', new Buffer(fbb.asUint8Array()));
253 var bytes = fbb.asUint8Array();
316 var bb = new flatbuffers.ByteBuffer(fbb.asUint8Array())
404 var bytes = new Uint8Array(builder.asUint8Array());
/third_party/flatbuffers/ts/
Dbuilder.ts88 asUint8Array(): Uint8Array { method in Builder
/third_party/flatbuffers/docs/source/
DTutorial.md2078 var buf = builder.asUint8Array(); // Of type `Uint8Array`.
2084 let buf = builder.asUint8Array(); // Of type `Uint8Array`.