/third_party/protobuf/js/experimental/runtime/kernel/ |
D | reader.js | 169 function readDouble(bufferDecoder, start) { function 209 return readPacked(bufferDecoder, start, readDouble); 344 readDouble, property
|
D | reader_test.js | 76 expect(() => reader.readDouble(bufferDecoder, 0)).toThrow(); 81 const d = reader.readDouble(pair.bufferDecoder, 0);
|
/third_party/flatbuffers/java/com/google/flatbuffers/ |
D | FlexBuffers.java | 186 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/ |
D | CodedInputStreamReader.java | 109 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()
|
D | Reader.java | 79 double readDouble() throws IOException; in readDouble() method
|
D | WireFormat.java | 229 return input.readDouble(); in readPrimitiveField()
|
D | BinaryReader.java | 161 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()
|
D | CodedInputStream.java | 255 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
|
D | ExtensionSchemaLite.java | 210 value = reader.readDouble(); in parseExtension()
|
D | ExtensionSchemaFull.java | 230 value = reader.readDouble(); in parseExtension()
|
/third_party/node/test/parallel/ |
D | test-v8-serdes.js | 88 assert.strictEqual(des.readDouble(), -0.25); 243 new v8.Deserializer(new v8.Serializer().releaseBuffer()).readDouble();
|
/third_party/protobuf/objectivec/ |
D | GPBCodedInputStream.h | 117 - (double)readDouble;
|
/third_party/protobuf/js/binary/ |
D | reader.js | 481 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);
|
D | writer_test.js | 363 expect(isNaN(reader.readDouble())).toEqual(true); 365 expect(reader.readDouble()).toEqual(f);
|
D | reader_test.js | 184 assertThrows(function() {reader.readDouble()}); 545 jspb.BinaryReader.prototype.readDouble,
|
D | decoder_test.js | 471 jspb.BinaryDecoder.prototype.readDouble,
|
D | decoder.js | 796 jspb.BinaryDecoder.prototype.readDouble = function() { method in jspb.BinaryDecoder
|
/third_party/vk-gl-cts/framework/referencerenderer/ |
D | rrVertexAttrib.cpp | 137 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/ |
D | decoder_test.js | 310 jspb.BinaryDecoder.prototype.readDouble,
|
D | reader_test.js | 184 assertThrows(function() {reader.readDouble()}); 515 jspb.BinaryReader.prototype.readDouble,
|
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
D | decoder_test.js | 321 jspb.BinaryDecoder.prototype.readDouble,
|
D | reader_test.js | 184 assertThrows(function() {reader.readDouble()}); 515 jspb.BinaryReader.prototype.readDouble,
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
D | GPBWire.php | 248 public static function readDouble(&$input, &$value) function in Google\\Protobuf\\Internal\\GPBWire
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_rpc.js | 234 this.readDouble = function () { method
|
/third_party/protobuf/php/tests/ |
D | PhpImplementationTest.php | 197 GPBWire::readDouble($input, $value);
|