HomeSort by relevance Sort by last modified time
    Searched refs:TreeMap (Results 26 - 50 of 239) sorted by null

12 3 4 5 6 7 8 910

  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsEmptyValues.java 28 import java.util.TreeMap;
111 return new TreeMap<Object, Object>();
112 } else if (type == TreeMap.class) {
113 return new TreeMap<Object, Object>();
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Choice.java 29 import java.util.TreeMap;
236 TreeMap<BigInteger, BigInteger> map = new TreeMap<BigInteger, BigInteger>();
281 private void addIdentifier(TreeMap<BigInteger, BigInteger> map, int identifier, int index){
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DictDecoder.java 31 import java.util.TreeMap;
89 public void readUnigramsAndBigramsBinary(final TreeMap<Integer, String> words,
90 final TreeMap<Integer, Integer> frequencies,
91 final TreeMap<Integer, ArrayList<PendingAttribute>> bigrams)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TreeMapTest.java 40 import java.util.TreeMap;
88 TreeMap tm;
93 * java.util.TreeMap#TreeMap()
96 // Test for method java.util.TreeMap()
97 new Support_MapTest2(new TreeMap()).runTest();
99 assertTrue("New treeMap non-empty", new TreeMap().isEmpty());
103 * java.util.TreeMap#TreeMap(java.util.Comparator
343 TreeMap<String, String> treemap = new TreeMap<String, String>(c); local
    [all...]
  /external/guava/guava-gwt/src/com/google/common/collect/
ImmutableSortedMap_CustomFieldSerializerBase.java 26 import java.util.TreeMap;
44 SortedMap<Object, Object> entries = new TreeMap<Object, Object>(comparator);
  /external/guava/guava-gwt/src-super/java/nio/charset/
Charset.java 21 import java.util.TreeMap;
32 new TreeMap<String, Charset>();
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
VariableReplacer.java 12 import java.util.TreeMap;
16 private Map m = new TreeMap(Collections.reverseOrder());
  /frameworks/base/core/java/android/app/backup/
BackupHelperDispatcher.java 25 import java.util.TreeMap;
36 TreeMap<String,BackupHelper> mHelpers = new TreeMap<String,BackupHelper>();
51 TreeMap<String,BackupHelper> helpers = (TreeMap<String,BackupHelper>)mHelpers.clone();
136 // Write out the state files -- mHelpers is a TreeMap, so the order is well defined.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 14 import java.util.TreeMap;
27 Collections.unmodifiableSortedMap(new TreeMap<Character, Extension>());
40 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
45 NUMBER_THAI._map = new TreeMap<Character, Extension>();
68 _map = new TreeMap<Character, Extension>();
89 TreeMap<String, String> ukmap = null;
99 ukmap = new TreeMap<String, String>();
UnicodeLocaleExtension.java 14 import java.util.TreeMap;
21 private static final SortedMap<String, String> EMPTY_SORTED_MAP = new TreeMap<String, String>();
31 CA_JAPANESE._keywords = new TreeMap<String, String>();
36 NU_THAI._keywords = new TreeMap<String, String>();
  /libcore/luni/src/main/java/java/util/
TreeSet.java 52 backingMap = new TreeMap<E, Object>();
79 backingMap = new TreeMap<E, Object>(comparator);
158 if (backingMap instanceof TreeMap) {
159 clone.backingMap = (NavigableMap<E, Object>) ((TreeMap<E, Object>) backingMap)
162 clone.backingMap = new TreeMap<E, Object>(backingMap);
489 TreeMap<E, Object> map = new TreeMap<E, Object>(
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
StringIdsSection.java 27 import java.util.TreeMap;
38 private final TreeMap<CstUtf8, StringIdItem> strings;
48 strings = new TreeMap<CstUtf8, StringIdItem>();
TypeIdsSection.java 26 import java.util.TreeMap;
35 private final TreeMap<Type, TypeIdItem> typeIds;
45 typeIds = new TreeMap<Type, TypeIdItem>();
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
Annotations.java 25 import java.util.TreeMap;
40 private final TreeMap<CstType, Annotation> annotations;
87 annotations = new TreeMap<CstType, Annotation>();
  /dalvik/dx/src/com/android/dx/dex/file/
StringIdsSection.java 25 import java.util.TreeMap;
36 private final TreeMap<CstString, StringIdItem> strings;
46 strings = new TreeMap<CstString, StringIdItem>();
TypeIdsSection.java 30 import java.util.TreeMap;
39 private final TreeMap<Type, TypeIdItem> typeIds;
49 typeIds = new TreeMap<Type, TypeIdItem>();
MemberIdsSection.java 26 import java.util.TreeMap;
61 Map<String, AtomicInteger> membersByPackage = new TreeMap<String, AtomicInteger>();
  /dalvik/dx/src/com/android/dx/rop/annotation/
Annotations.java 24 import java.util.TreeMap;
39 private final TreeMap<CstType, Annotation> annotations;
86 annotations = new TreeMap<CstType, Annotation>();
  /development/tools/mkstubs/src/com/android/mkstubs/
StubGenerator.java 31 import java.util.TreeMap;
58 TreeMap<String, byte[]> all = new TreeMap<String, byte[]>();
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
StringIdsSection.java 26 import java.util.TreeMap;
37 private final TreeMap<CstString, StringIdItem> strings;
47 strings = new TreeMap<CstString, StringIdItem>();
TypeIdsSection.java 26 import java.util.TreeMap;
35 private final TreeMap<Type, TypeIdItem> typeIds;
45 typeIds = new TreeMap<Type, TypeIdItem>();
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
Annotations.java 25 import java.util.TreeMap;
40 private final TreeMap<CstType, Annotation> annotations;
87 annotations = new TreeMap<CstType, Annotation>();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
Amf0Track.java 31 import java.util.TreeMap;
34 SortedMap<Long, byte[]> rawSamples = new TreeMap<Long, byte[]>() {
45 this.rawSamples = new TreeMap<Long, byte[]>(rawSamples);
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidTreeMapTest.java 23 import java.util.TreeMap;
42 TreeMap<Integer, String> tm = new TreeMap<Integer, String>();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
MetadataParser.java 27 import java.util.TreeMap;
55 final TreeMap<String, String> arguments = new TreeMap<>();

Completed in 1944 milliseconds

12 3 4 5 6 7 8 910