Home
last modified time | relevance | path

Searched refs:addLong (Results 1 – 14 of 14) sorted by relevance

/external/protobuf/java/core/src/test/java/com/google/protobuf/
DLongArrayListTest.java68 list.addLong(2); in testMakeImmutable()
69 list.addLong(4); in testMakeImmutable()
70 list.addLong(6); in testMakeImmutable()
71 list.addLong(8); in testMakeImmutable()
148 list.addLong(2); in testSize()
149 list.addLong(4); in testSize()
150 list.addLong(6); in testSize()
151 list.addLong(8); in testSize()
162 list.addLong(2); in testSet()
163 list.addLong(4); in testSet()
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DLongArrayList.java153 addLong(index, element); in add()
160 public void addLong(long element) { in addLong() method in LongArrayList
161 addLong(size, element); in addLong()
167 private void addLong(int index, long element) { in addLong() method in LongArrayList
DInternal.java672 void addLong(long element);
/external/flatbuffers/tests/MyGame/Example/
DMonster.java189 …sthashs64Fnv1(FlatBufferBuilder builder, long testhashs64Fnv1) { builder.addLong(18, testhashs64Fn… in addTesthashs64Fnv1()
190 …sthashu64Fnv1(FlatBufferBuilder builder, long testhashu64Fnv1) { builder.addLong(19, testhashu64Fn… in addTesthashu64Fnv1()
193 …hashs64Fnv1a(FlatBufferBuilder builder, long testhashs64Fnv1a) { builder.addLong(22, testhashs64Fn… in addTesthashs64Fnv1a()
194 …hashu64Fnv1a(FlatBufferBuilder builder, long testhashu64Fnv1a) { builder.addLong(23, testhashu64Fn… in addTesthashu64Fnv1a()
212 …r(8, data.length, 8); for (int i = data.length - 1; i >= 0; i--) builder.addLong(data[i]); return … in createVectorOfLongsVector()
221 …Reference(FlatBufferBuilder builder, long singleWeakReference) { builder.addLong(36, singleWeakRef… in addSingleWeakReference()
223 …r(8, data.length, 8); for (int i = data.length - 1; i >= 0; i--) builder.addLong(data[i]); return … in createVectorOfWeakReferencesVector()
228 …ngReference(FlatBufferBuilder builder, long coOwningReference) { builder.addLong(39, coOwningRefer… in addCoOwningReference()
230 …r(8, data.length, 8); for (int i = data.length - 1; i >= 0; i--) builder.addLong(data[i]); return … in createVectorOfCoOwningReferencesVector()
232 …gReference(FlatBufferBuilder builder, long nonOwningReference) { builder.addLong(41, nonOwningRefe… in addNonOwningReference()
[all …]
DTypeAliases.java84 public static void addI64(FlatBufferBuilder builder, long i64) { builder.addLong(6, i64, 0L); } in addI64()
85 public static void addU64(FlatBufferBuilder builder, long u64) { builder.addLong(7, u64, 0L); } in addU64()
DStat.java38 public static void addVal(FlatBufferBuilder builder, long val) { builder.addLong(1, val, 0L); } in addVal()
DReferrable.java28 public static void addId(FlatBufferBuilder builder, long id) { builder.addLong(0, id, 0L); } in addId()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DSimpleElementValueGen.java62 idx = getConstantPool().addLong(value); in SimpleElementValueGen()
143 idx = cpool.addLong(value.getValueLong()); in SimpleElementValueGen()
DPUSH.java88 instruction = new LDC2_W(cp.addLong(value)); in PUSH()
DConstantPoolGen.java469 public int addLong( final long n ) { in addLong() method in ConstantPoolGen
806 return addLong(((ConstantLong) c).getBytes()); in addConstant()
DFieldGen.java251 return super.getConstantPool().addLong(((Long) value).longValue()); in addConstant()
/external/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java376 public void addLong (long x) { prep(Constants.SIZEOF_LONG, 0); putLong (x); } in addLong() method in FlatBufferBuilder
697 …public void addLong (int o, long x, long d) { if(force_defaults || x != d) { addLong (x)… in addLong() method in FlatBufferBuilder
/external/flatbuffers/php/
DFlatbufferBuilder.php366 public function addLong($x) function in Google\\FlatBuffers\\FlatbufferBuilder
502 $this->addLong($x);
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DAbstractHttp2Headers.java384 public Http2Headers addLong(CharSequence name, long value) { in addLong() method in AbstractHttp2Headers