/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/android/ |
D | AndroidTouchProcessor.java | 199 packet.putDouble(event.getX(pointerIndex)); // physical_x in addPointerForIndex() 200 packet.putDouble(event.getY(pointerIndex)); // physical_y in addPointerForIndex() 212 packet.putDouble(event.getPressure(pointerIndex)); // pressure in addPointerForIndex() 222 packet.putDouble(pressureMin); // pressure_min in addPointerForIndex() 223 packet.putDouble(pressureMax); // pressure_max in addPointerForIndex() 226 packet.putDouble(event.getAxisValue(MotionEvent.AXIS_DISTANCE, pointerIndex)); // distance in addPointerForIndex() 227 packet.putDouble(0.0); // distance_max in addPointerForIndex() 229 packet.putDouble(0.0); // distance in addPointerForIndex() 230 packet.putDouble(0.0); // distance_max in addPointerForIndex() 233 packet.putDouble(event.getSize(pointerIndex)); // size in addPointerForIndex() [all …]
|
/third_party/flatbuffers/tests/MyGame/ |
D | MonsterExtra.java | 20 …public boolean mutateD0(double d0) { int o = __offset(4); if (o != 0) { bb.putDouble(o + bb_pos, d… in mutateD0() 22 …public boolean mutateD1(double d1) { int o = __offset(6); if (o != 0) { bb.putDouble(o + bb_pos, d… in mutateD1() 24 …public boolean mutateD2(double d2) { int o = __offset(8); if (o != 0) { bb.putDouble(o + bb_pos, d… in mutateD2() 26 …public boolean mutateD3(double d3) { int o = __offset(10); if (o != 0) { bb.putDouble(o + bb_pos, … in mutateD3() 41 …public boolean mutateDvec(int j, double dvec) { int o = __offset(20); if (o != 0) { bb.putDouble(_… in mutateDvec()
|
D | MonsterExtra.kt | 28 bb.putDouble(o + bb_pos, d0) in mutateD0() 42 bb.putDouble(o + bb_pos, d1) in mutateD1() 56 bb.putDouble(o + bb_pos, d2) in mutateD2() 70 bb.putDouble(o + bb_pos, d3) in mutateD3() 149 bb.putDouble(__vector(o) + j * 8, dvec) in dvecInByteBuffer()
|
/third_party/flatbuffers/java/com/google/flatbuffers/ |
D | ByteBufferReadWriteBuf.java | 101 public void putDouble(double value) { in putDouble() method in ByteBufferReadWriteBuf 102 buffer.putDouble(value); in putDouble() 152 buffer.putDouble(index, value); in setDouble()
|
D | ReadWriteBuf.java | 65 void putDouble(double value); in putDouble() method
|
D | FlatBufferBuilder.java | 385 public void putDouble (double x) { bb.putDouble(space -= Constants.SIZEOF_DOUBLE, x); } in putDouble() method in FlatBufferBuilder 435 public void addDouble (double x) { prep(Constants.SIZEOF_DOUBLE, 0); putDouble (x); } in addDouble()
|
D | ArrayReadWriteBuf.java | 141 public void putDouble(double value) { in putDouble() method in ArrayReadWriteBuf
|
D | FlexBuffersBuilder.java | 589 bb.putDouble(val); in writeDouble()
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | UnsafeUtil.java | 164 static void putDouble(Object target, long offset, double value) { in putDouble() method in UnsafeUtil 165 MEMORY_ACCESSOR.putDouble(target, offset, value); in putDouble() 227 static void putDouble(double[] target, long index, double value) { in putDouble() method in UnsafeUtil 228 MEMORY_ACCESSOR.putDouble( in putDouble() 579 public abstract void putDouble(Object target, long offset, double value); in putDouble() method in UnsafeUtil.MemoryAccessor 688 public void putDouble(Object target, long offset, double value) { in putDouble() method in UnsafeUtil.JvmMemoryAccessor 689 unsafe.putDouble(target, offset, value); in putDouble() 796 public void putDouble(Object target, long offset, double value) { in putDouble() method in UnsafeUtil.Android64MemoryAccessor 916 public void putDouble(Object target, long offset, double value) { in putDouble() method in UnsafeUtil.Android32MemoryAccessor
|
D | MessageSchema.java | 1202 UnsafeUtil.putDouble(message, offset, UnsafeUtil.getDouble(other, offset)); in mergeSingleField() 3919 UnsafeUtil.putDouble(message, offset(typeAndOffset), reader.readDouble()); in mergeFromHelper() 4923 UnsafeUtil.putDouble(message, fieldOffset, decodeDouble(data, position)); in parseProto2Message() 5236 UnsafeUtil.putDouble(message, fieldOffset, decodeDouble(data, position)); in parseProto3Message()
|
/third_party/flatbuffers/tests/MyGame/Example/ |
D | Vec3.kt | 27 fun mutateTest1(test1: Double) : ByteBuffer = bb.putDouble(bb_pos + 16, test1) in mutateX() 42 builder.putDouble(test1) in mutateX()
|
D | Vec3.java | 22 public void mutateTest1(double test1) { bb.putDouble(bb_pos + 16, test1); } in mutateTest1() 37 builder.putDouble(test1); in createVec3()
|
D | Vec3.php | 89 $builder->putDouble($test1);
|
D | TypeAliases.java | 37 …public boolean mutateF64(double f64) { int o = __offset(22); if (o != 0) { bb.putDouble(o + bb_pos… in mutateF64() 51 …public boolean mutateVf64(int j, double vf64) { int o = __offset(26); if (o != 0) { bb.putDouble(_… in mutateVf64()
|
D | TypeAliases.kt | 154 bb.putDouble(o + bb_pos, f64) in mutateF64() 200 bb.putDouble(__vector(o) + j * 8, vf64) in vf64InByteBuffer()
|
D | TypeAliases.php | 363 $builder->putDouble($data[$i]);
|
D | Monster.php | 1401 $builder->putDouble($data[$i]);
|
D | Monster.kt | 521 bb.putDouble(__vector(o) + j * 8, vectorOfDoubles) in vectorOfDoublesInByteBuffer()
|
D | Monster.java | 140 …t j, double vector_of_doubles) { int o = __offset(70); if (o != 0) { bb.putDouble(__vector(o) + j … in mutateVectorOfDoubles()
|
/third_party/flatbuffers/php/ |
D | FlatbufferBuilder.php | 277 public function putDouble($x) function in Google\\FlatBuffers\\FlatbufferBuilder 279 $this->bb->putDouble($this->space -= 8, $x); 399 $this->putDouble($x);
|
D | ByteBuffer.php | 307 public function putDouble($offset, $value) function in Google\\FlatBuffers\\ByteBuffer
|