Home
last modified time | relevance | path

Searched refs:addBoolean (Results 1 – 6 of 6) sorted by relevance

/external/protobuf/java/core/src/test/java/com/google/protobuf/
DBooleanArrayListTest.java68 list.addBoolean(true); in testMakeImmutable()
69 list.addBoolean(false); in testMakeImmutable()
70 list.addBoolean(true); in testMakeImmutable()
71 list.addBoolean(true); in testMakeImmutable()
148 list.addBoolean(true); in testSize()
149 list.addBoolean(false); in testSize()
150 list.addBoolean(false); in testSize()
151 list.addBoolean(false); in testSize()
162 list.addBoolean(false); in testSet()
163 list.addBoolean(false); in testSet()
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DBooleanArrayList.java154 addBoolean(index, element); in add()
161 public void addBoolean(boolean element) { in addBoolean() method in BooleanArrayList
162 addBoolean(size, element); in addBoolean()
168 private void addBoolean(int index, boolean element) { in addBoolean() method in BooleanArrayList
DInternal.java644 void addBoolean(boolean element);
/external/flatbuffers/java/com/google/flatbuffers/
DFlatBufferBuilder.java247 public void addBoolean(boolean x) { prep(Constants.SIZEOF_BYTE, 0); putBoolean(x); } in addBoolean() method in FlatBufferBuilder
567 …public void addBoolean(int o, boolean x, boolean d) { if(force_defaults || x != d) { addBoolean(x)… in addBoolean() method in FlatBufferBuilder
/external/noto-fonts/emoji-compat/src/java/android/support/text/emoji/flatbuffer/
DMetadataItem.java122 builder.addBoolean(1, emojiStyle, false); in addEmojiStyle()
/external/flatbuffers/tests/MyGame/Example/
DMonster.java115 …public static void addTestbool(FlatBufferBuilder builder, boolean testbool) { builder.addBoolean(1… in addTestbool()
125 …1, data.length, 1); for (int i = data.length - 1; i >= 0; i--) builder.addBoolean(data[i]); return… in createTestarrayofboolsVector()