Searched refs:addBoolean (Results 1 – 7 of 7) sorted by relevance
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | BooleanArrayListTest.java | 68 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/ |
D | BooleanArrayList.java | 154 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
|
D | Internal.java | 644 void addBoolean(boolean element);
|
/external/flatbuffers/java/com/google/flatbuffers/ |
D | FlatBufferBuilder.java | 348 public void addBoolean(boolean x) { prep(Constants.SIZEOF_BYTE, 0); putBoolean(x); } in addBoolean() method in FlatBufferBuilder 653 …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/androidx/text/emoji/flatbuffer/ |
D | MetadataItem.java | 122 builder.addBoolean(1, emojiStyle, false); in addEmojiStyle()
|
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
D | AbstractHttp2Headers.java | 359 public Http2Headers addBoolean(CharSequence name, boolean value) { in addBoolean() method in AbstractHttp2Headers
|
/external/flatbuffers/tests/MyGame/Example/ |
D | Monster.java | 186 …public static void addTestbool(FlatBufferBuilder builder, boolean testbool) { builder.addBoolean(1… in addTestbool() 196 …1, data.length, 1); for (int i = data.length - 1; i >= 0; i--) builder.addBoolean(data[i]); return… in createTestarrayofboolsVector()
|