Home
last modified time | relevance | path

Searched refs:readDouble (Results 1 – 25 of 33) sorted by relevance

12

/third_party/protobuf/js/experimental/runtime/kernel/
Dreader.js169 function readDouble(bufferDecoder, start) { function
209 return readPacked(bufferDecoder, start, readDouble);
344 readDouble, property
Dreader_test.js76 expect(() => reader.readDouble(bufferDecoder, 0)).toThrow();
81 const d = reader.readDouble(pair.bufferDecoder, 0);
/third_party/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java186 private static double readDouble(ReadBuf buff, int end, int byteWidth) { in readDouble() method in FlexBuffers
374 case FBT_FLOAT: return (int) readDouble(bb, end, parentWidth); in asInt()
375 … case FBT_INDIRECT_FLOAT: return (int) readDouble(bb, indirect(bb, end, parentWidth), byteWidth); in asInt()
403 case FBT_FLOAT: return (long) readDouble(bb, end, parentWidth); in asUInt()
404 …case FBT_INDIRECT_FLOAT: return (long) readDouble(bb, indirect(bb, end, parentWidth), parentWidth… in asUInt()
432 case FBT_FLOAT: return (long) readDouble(bb, end, parentWidth); in asLong()
433 … case FBT_INDIRECT_FLOAT: return (long) readDouble(bb, indirect(bb, end, parentWidth), byteWidth); in asLong()
459 return readDouble(bb, end, parentWidth); in asFloat()
462 … case FBT_INDIRECT_FLOAT: return readDouble(bb, indirect(bb, end, parentWidth), byteWidth); in asFloat()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStreamReader.java109 public double readDouble() throws IOException { in readDouble() method in CodedInputStreamReader
111 return input.readDouble(); in readDouble()
295 plist.addDouble(input.readDouble()); in readDoubleList()
300 plist.addDouble(input.readDouble()); in readDoubleList()
321 target.add(input.readDouble()); in readDoubleList()
326 target.add(input.readDouble()); in readDoubleList()
1287 return readDouble(); in readField()
DReader.java79 double readDouble() throws IOException; in readDouble() method
DWireFormat.java229 return input.readDouble(); in readPrimitiveField()
DBinaryReader.java161 public double readDouble() throws IOException { in readDouble() method in BinaryReader.SafeHeapReader
377 plist.addDouble(readDouble()); in readDoubleList()
406 target.add(readDouble()); in readDoubleList()
1459 return readDouble(); in readField()
DCodedInputStream.java255 public abstract double readDouble() throws IOException; in readDouble() method in CodedInputStream
746 public double readDouble() throws IOException { in readDouble() method in CodedInputStream.ArrayDecoder
1460 public double readDouble() throws IOException { in readDouble() method in CodedInputStream.UnsafeDirectNioDecoder
2212 public double readDouble() throws IOException { in readDouble() method in CodedInputStream.StreamDecoder
3308 public double readDouble() throws IOException { in readDouble() method in CodedInputStream.IterableDirectByteBufferDecoder
DExtensionSchemaLite.java210 value = reader.readDouble(); in parseExtension()
DExtensionSchemaFull.java230 value = reader.readDouble(); in parseExtension()
/third_party/node/test/parallel/
Dtest-v8-serdes.js88 assert.strictEqual(des.readDouble(), -0.25);
243 new v8.Deserializer(new v8.Serializer().releaseBuffer()).readDouble();
/third_party/protobuf/objectivec/
DGPBCodedInputStream.h117 - (double)readDouble;
/third_party/protobuf/js/binary/
Dreader.js481 return this.readDouble();
883 jspb.BinaryReader.prototype.readDouble = function() { method in jspb.BinaryReader
886 return this.decoder_.readDouble();
1245 return this.readPackedField_(this.decoder_.readDouble);
Dwriter_test.js363 expect(isNaN(reader.readDouble())).toEqual(true);
365 expect(reader.readDouble()).toEqual(f);
Dreader_test.js184 assertThrows(function() {reader.readDouble()});
545 jspb.BinaryReader.prototype.readDouble,
Ddecoder_test.js471 jspb.BinaryDecoder.prototype.readDouble,
Ddecoder.js796 jspb.BinaryDecoder.prototype.readDouble = function() { method in jspb.BinaryDecoder
/third_party/vk-gl-cts/framework/referencerenderer/
DrrVertexAttrib.cpp137 inline void readDouble (tcu::Vec4& dst, const int size, const void* ptr) in readDouble() function
284 case VERTEXATTRIBTYPE_DOUBLE: readDouble (dst, size, ptr); break; in readFloat()
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
Ddecoder_test.js310 jspb.BinaryDecoder.prototype.readDouble,
Dreader_test.js184 assertThrows(function() {reader.readDouble()});
515 jspb.BinaryReader.prototype.readDouble,
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
Ddecoder_test.js321 jspb.BinaryDecoder.prototype.readDouble,
Dreader_test.js184 assertThrows(function() {reader.readDouble()});
515 jspb.BinaryReader.prototype.readDouble,
/third_party/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php248 public static function readDouble(&$input, &$value) function in Google\\Protobuf\\Internal\\GPBWire
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_rpc.js234 this.readDouble = function () { method
/third_party/protobuf/php/tests/
DPhpImplementationTest.php197 GPBWire::readDouble($input, $value);

12