Home
last modified time | relevance | path

Searched defs:addInt (Results 1 – 7 of 7) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DIntArrayList.java194 public void addInt(int element) { in addInt() method in IntArrayList
209 private void addInt(int index, int element) { in addInt() method in IntArrayList
/third_party/flutter/skia/src/core/
DSkSafeMath.h39 int addInt(int a, int b) { in addInt() function
DSkPictureRecord.h119 void addInt(int value) { in addInt() function
/third_party/skia/src/core/
DSkSafeMath.h39 int addInt(int a, int b) { in addInt() function
DSkPictureRecord.h121 void addInt(int value) { in addInt() function
/third_party/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java414 public void addInt (int x) { prep(Constants.SIZEOF_INT, 0); putInt (x); } in addInt() method in FlatBufferBuilder
794 …public void addInt (int o, int x, int d) { if(force_defaults || x != d) { addInt (x)… in addInt() method in FlatBufferBuilder
/third_party/flatbuffers/php/
DFlatbufferBuilder.php346 public function addInt($x) function in Google\\FlatBuffers\\FlatbufferBuilder