Home
last modified time | relevance | path

Searched refs:addDouble (Results 1 – 19 of 19) sorted by relevance

/external/protobuf/java/core/src/test/java/com/google/protobuf/
DDoubleArrayListTest.java67 list.addDouble(3); in testMakeImmutable()
68 list.addDouble(4); in testMakeImmutable()
69 list.addDouble(5); in testMakeImmutable()
70 list.addDouble(7); in testMakeImmutable()
147 list.addDouble(3); in testSize()
148 list.addDouble(4); in testSize()
149 list.addDouble(6); in testSize()
150 list.addDouble(8); in testSize()
161 list.addDouble(2); in testSet()
162 list.addDouble(4); in testSet()
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DDoubleArrayList.java165 addDouble(index, element); in add()
170 public void addDouble(double element) { in addDouble() method in DoubleArrayList
171 addDouble(size, element); in addDouble()
175 private void addDouble(int index, double element) { in addDouble() method in DoubleArrayList
DArrayDecoders.java358 output.addDouble(decodeDouble(data, position)); in decodeDoubleList()
365 output.addDouble(decodeDouble(data, nextPosition)); in decodeDoubleList()
509 output.addDouble(decodeDouble(data, position)); in decodePackedDoubleList()
DInternal.java657 void addDouble(double element);
DCodedInputStreamReader.java295 plist.addDouble(input.readDouble()); in readDoubleList()
300 plist.addDouble(input.readDouble()); in readDoubleList()
DBinaryReader.java372 plist.addDouble(Double.longBitsToDouble(readLittleEndian64_NoCheck())); in readDoubleList()
377 plist.addDouble(readDouble()); in readDoubleList()
/external/flatbuffers/tests/MyGame/
DMonsterExtra.java76 …public static void addD0(FlatBufferBuilder builder, double d0) { builder.addDouble(0, d0, Double.N… in addD0()
77 …public static void addD1(FlatBufferBuilder builder, double d1) { builder.addDouble(1, d1, Double.N… in addD1()
78 …public static void addD2(FlatBufferBuilder builder, double d2) { builder.addDouble(2, d2, Double.P… in addD2()
79 …public static void addD3(FlatBufferBuilder builder, double d3) { builder.addDouble(3, d3, Double.N… in addD3()
85 …(8, data.length, 8); for (int i = data.length - 1; i >= 0; i--) builder.addDouble(data[i]); return… in createDvecVector()
DMonsterExtra.kt201 fun addD0(builder: FlatBufferBuilder, d0: Double) = builder.addDouble(0, d0, Double.NaN) in startMonsterExtra()
202 fun addD1(builder: FlatBufferBuilder, d1: Double) = builder.addDouble(1, d1, Double.NaN) in startMonsterExtra()
203 …fun addD2(builder: FlatBufferBuilder, d2: Double) = builder.addDouble(2, d2, Double.POSITIVE_INFIN… in startMonsterExtra()
204 …fun addD3(builder: FlatBufferBuilder, d3: Double) = builder.addDouble(3, d3, Double.NEGATIVE_INFIN… in startMonsterExtra()
213 builder.addDouble(data[i]) in startMonsterExtra()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DSimpleElementValueGen.java68 idx = getConstantPool().addDouble(value); in SimpleElementValueGen()
149 idx = cpool.addDouble(value.getValueDouble()); in SimpleElementValueGen()
DPUSH.java103 instruction = new LDC2_W(cp.addDouble(value)); in PUSH()
DConstantPoolGen.java508 public int addDouble( final double n ) { in addDouble() method in ConstantPoolGen
802 return addDouble(((ConstantDouble) c).getBytes()); in addConstant()
DFieldGen.java249 return super.getConstantPool().addDouble(((Double) value).doubleValue()); in addConstant()
/external/flatbuffers/tests/MyGame/Example/
DTypeAliases.kt239 fun addF64(builder: FlatBufferBuilder, f64: Double) = builder.addDouble(9, f64, 0.0) in startTypeAliases()
253 builder.addDouble(data[i]) in startV8Vector()
DTypeAliases.java92 …public static void addF64(FlatBufferBuilder builder, double f64) { builder.addDouble(9, f64, 0.0);… in addF64()
98 …(8, data.length, 8); for (int i = data.length - 1; i >= 0; i--) builder.addDouble(data[i]); return… in createVf64Vector()
DMonster.kt891 builder.addDouble(data[i]) in startVectorOfLongsVector()
DMonster.java254 …(8, data.length, 8); for (int i = data.length - 1; i >= 0; i--) builder.addDouble(data[i]); return… in createVectorOfDoublesVector()
/external/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java402 public void addDouble (double x) { prep(Constants.SIZEOF_DOUBLE, 0); putDouble (x); } in addDouble() method in FlatBufferBuilder
763 …public void addDouble (int o, double x, double d) { if(force_defaults || x != d) { addDouble (x)… in addDouble() method in FlatBufferBuilder
/external/flatbuffers/php/
DFlatbufferBuilder.php396 public function addDouble($x) function in Google\\FlatBuffers\\FlatbufferBuilder
542 $this->addDouble($x);
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DAbstractHttp2Headers.java394 public Http2Headers addDouble(CharSequence name, double value) { in addDouble() method in AbstractHttp2Headers