/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | reader.js | 169 function readDouble(bufferDecoder, start) { function 209 return readPacked(bufferDecoder, start, readDouble); 344 readDouble,
|
H A D | reader_test.js | 73 describe('readDouble does', () => { 76 expect(() => reader.readDouble(bufferDecoder, 0)).toThrow(); 81 const d = reader.readDouble(pair.bufferDecoder, 0);
|
H A D | kernel.js | 586 indexArray, bytes, reader.readDouble, WireType.FIXED64)); 1008 indexArray, bytes, reader.readDouble, reader.readPackedDouble,
|
/third_party/protobuf/js/binary/ |
H A D | reader.js | 481 return this.readDouble(); 883 jspb.BinaryReader.prototype.readDouble = function() { 886 return this.decoder_.readDouble(); 1245 return this.readPackedField_(this.decoder_.readDouble);
|
H A D | writer_test.js | 363 expect(isNaN(reader.readDouble())).toEqual(true); 365 expect(reader.readDouble()).toEqual(f);
|
H A D | decoder.js | 796 jspb.BinaryDecoder.prototype.readDouble = function() {
|
H A D | decoder_test.js | 471 jspb.BinaryDecoder.prototype.readDouble,
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A 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()
|
H A D | Reader.java | 79 double readDouble() throws IOException; in readDouble() method
|
H A D | WireFormat.java | 229 return input.readDouble(); in readPrimitiveField()
|
H A 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()
|
H A 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
|
H A D | ExtensionSchemaFull.java | 230 value = reader.readDouble(); in parseExtension()
|
H A D | ExtensionSchemaLite.java | 210 value = reader.readDouble(); in parseExtension()
|
H A D | MessageSchema.java | 3919 UnsafeUtil.putDouble(message, offset(typeAndOffset), reader.readDouble()); in mergeFromHelper() 4194 message, offset(typeAndOffset), Double.valueOf(reader.readDouble())); in mergeFromHelper()
|
/third_party/protobuf/objectivec/ |
H A D | GPBCodedInputStream.h | 117 - (double)readDouble;
|
/third_party/node/test/parallel/ |
H A D | test-v8-serdes.js | 96 assert.strictEqual(des.readDouble(), -0.25); 274 new v8.Deserializer(new v8.Serializer().releaseBuffer()).readDouble();
|
/third_party/vk-gl-cts/framework/referencerenderer/ |
H A 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/ |
H A D | decoder_test.js | 310 jspb.BinaryDecoder.prototype.readDouble,
|
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
H A D | decoder_test.js | 321 jspb.BinaryDecoder.prototype.readDouble,
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
H A D | GPBWire.php | 248 public static function readDouble(&$input, &$value) function
|
H A D | Message.php | 366 if (!GPBWire::readDouble($input, $value)) {
|
/third_party/protobuf/php/tests/ |
H A D | PhpImplementationTest.php | 197 GPBWire::readDouble($input, $value);
|