Searched refs:SmallSortedMap (Results 1 – 6 of 6) sorted by relevance
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | SmallSortedMapTest.java | 105 SmallSortedMap<Integer, Integer> map1 = in runPutAndGetTest() 106 SmallSortedMap.newInstanceForTest(3); in runPutAndGetTest() 107 SmallSortedMap<Integer, Integer> map2 = in runPutAndGetTest() 108 SmallSortedMap.newInstanceForTest(4); in runPutAndGetTest() 109 SmallSortedMap<Integer, Integer> map3 = in runPutAndGetTest() 110 SmallSortedMap.newInstanceForTest(3); in runPutAndGetTest() 111 SmallSortedMap<Integer, Integer> map4 = in runPutAndGetTest() 112 SmallSortedMap.newInstanceForTest(4); in runPutAndGetTest() 130 List<SmallSortedMap<Integer, Integer>> allMaps = in runPutAndGetTest() 131 new ArrayList<SmallSortedMap<Integer, Integer>>(); in runPutAndGetTest() [all …]
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | SmallSortedMap.java | 87 class SmallSortedMap<K extends Comparable<K>, V> extends AbstractMap<K, V> { class 99 SmallSortedMap<FieldDescriptorType, Object> newFieldMap(int arraySize) { in newFieldMap() 100 return new SmallSortedMap<FieldDescriptorType, Object>(arraySize) { in newFieldMap() 132 static <K extends Comparable<K>, V> SmallSortedMap<K, V> newInstanceForTest( 134 return new SmallSortedMap<K, V>(arraySize); 153 private SmallSortedMap(int arraySize) { 479 return SmallSortedMap.this.size(); in size() 516 SmallSortedMap.this.remove(entry.getKey()); in remove() 524 SmallSortedMap.this.clear(); in clear() 627 if (!(o instanceof SmallSortedMap)) { in equals() [all …]
|
D | FieldSet.java | 71 private final SmallSortedMap<FieldDescriptorType, Object> fields; 77 this.fields = SmallSortedMap.newFieldMap(16); in FieldSet() 85 this.fields = SmallSortedMap.newFieldMap(0); in FieldSet() 182 SmallSortedMap<FieldDescriptorType, Object> result = in getAllFields() 183 SmallSortedMap.newFieldMap(16); in getAllFields()
|
/external/protobuf/ |
D | build.gradle | 69 include 'com/google/protobuf/SmallSortedMap.java'
|
D | Android.bp | 555 "java/core/src/main/java/com/google/protobuf/SmallSortedMap.java",
|
D | Makefile.am | 250 java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \
|