/dalvik/dexgen/src/com/android/dexgen/rop/annotation/ |
Annotation.java | 35 import java.util.TreeMap; 51 private final TreeMap<CstUtf8, NameValuePair> elements; 70 this.elements = new TreeMap<CstUtf8, NameValuePair>();
|
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/ |
ClassDefsSection.java | 28 import java.util.TreeMap; 38 private final TreeMap<Type, ClassDefItem> classDefs; 51 classDefs = new TreeMap<Type, ClassDefItem>();
|
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>();
|
/dalvik/dx/src/com/android/dx/rop/annotation/ |
Annotation.java | 27 import java.util.TreeMap; 43 private final TreeMap<CstString, NameValuePair> elements; 62 this.elements = new TreeMap<CstString, NameValuePair>();
|
Annotations.java | 25 import java.util.TreeMap; 40 private final TreeMap<CstType, Annotation> annotations; 87 annotations = new TreeMap<CstType, Annotation>();
|
/dalvik/tests/004-annotations/src/android/test/anno/ |
TestAnnotations.java | 7 import java.util.TreeMap; 15 TreeMap<String, Annotation> sorted = 16 new TreeMap<String, Annotation>();
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceNetworkVars.java | 34 import java.util.TreeMap; 60 // Use a TreeMap to keep the keys sorted so they get displayed nicely in listvar 61 private static final Map<String, VarGetter> VAR_MAP = new TreeMap<String, VarGetter>();
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/ |
Krb5LoginModuleTest.java | 23 import java.util.TreeMap; 53 private final TreeMap<String, String> options = new TreeMap<String, String>();
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
SimpleImmutableEntryTest.java | 22 import java.util.TreeMap; 39 Map map = new TreeMap(); 94 Map map = new TreeMap();
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
ClassDefsSection.java | 28 import java.util.TreeMap; 38 private final TreeMap<Type, ClassDefItem> classDefs; 51 classDefs = new TreeMap<Type, ClassDefItem>();
|
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/ |
Annotation.java | 27 import java.util.TreeMap; 43 private final TreeMap<CstString, NameValuePair> elements; 62 this.elements = new TreeMap<CstString, NameValuePair>();
|
Annotations.java | 25 import java.util.TreeMap; 40 private final TreeMap<CstType, Annotation> annotations; 87 annotations = new TreeMap<CstType, Annotation>();
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
TestsForMapsInJavaUtil.java | 36 import java.util.TreeMap; 169 return populate(new TreeMap<String, String>( 173 .named("TreeMap")
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
LocalMergeAlbum.java | 26 import java.util.TreeMap; 47 private TreeMap<Integer, int[]> mIndex = new TreeMap<Integer, int[]>();
|
MediaDetails.java | 27 import java.util.TreeMap; 33 private TreeMap<Integer, Object> mDetails = new TreeMap<Integer, Object>();
|
/sdk/apigenerator/src/com/android/apigenerator/ |
ApiClass.java | 27 import java.util.TreeMap; 126 TreeMap<String, Integer> map2 = new TreeMap<String, Integer>(map);
|
Main.java | 32 import java.util.TreeMap; 153 TreeMap<String, ApiClass> map = new TreeMap<String, ApiClass>(classes);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/ |
LayoutParamsParserTest.java | 31 import java.util.TreeMap; 73 mViewMap = new TreeMap<String, ExtViewClassInfo>(); 74 mGroupMap = new TreeMap<String, ExtViewClassInfo>();
|
/external/guava/guava/src/com/google/common/collect/ |
TreeBasedTable.java | 35 import java.util.TreeMap; 79 implements Supplier<TreeMap<C, V>>, Serializable { 85 public TreeMap<C, V> get() { 86 return new TreeMap<C, V>(comparator); 136 super(new TreeMap<R, Map<C, V>>(rowComparator),
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
LayoutParamsParser.java | 35 import java.util.TreeMap; 90 protected TreeMap<String, ExtViewClassInfo> mViewMap; 92 protected TreeMap<String, ExtViewClassInfo> mGroupMap; 170 mViewMap = new TreeMap<String, ExtViewClassInfo>(); 171 mGroupMap = new TreeMap<String, ExtViewClassInfo>();
|
/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>(
|