HomeSort by relevance Sort by last modified time
    Searched refs:HashMap (Results 576 - 600 of 2131) sorted by null

<<21222324252627282930>>

  /packages/apps/Email/src/com/android/email/mail/
Store.java 38 import java.util.HashMap;
51 static final HashMap<HostAuth, Store> sStores = new HashMap<HostAuth, Store>();
58 static final HashMap<String, Class<? extends Store>> sStoreClasses =
59 new HashMap<String, Class<? extends Store>>();
  /packages/apps/Nfc/src/com/android/nfc/
NfceeAccessControl.java 26 import java.util.HashMap;
52 final HashMap<Signature, String[]> mNfceeAccess; // contents final after onCreate()
60 final HashMap<Integer, Boolean> mUidCache; // contents guarded by this
67 mNfceeAccess = new HashMap<Signature, String[]>();
68 mUidCache = new HashMap<Integer, Boolean>();
  /packages/apps/Settings/src/com/android/settings/search/
Ranking.java 50 import java.util.HashMap;
85 private static HashMap<String, Integer> sRankMap = new HashMap<String, Integer>();
86 private static HashMap<String, Integer> sBaseRankMap = new HashMap<String, Integer>();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyStylesSet.java 30 import java.util.HashMap;
36 private final HashMap<String, KeyStyle> mStyles = new HashMap<>();
75 private final HashMap<String, KeyStyle> mStyles;
80 final HashMap<String, KeyStyle> styles) {
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpService.java 39 import java.util.HashMap;
118 private final HashMap<String, StorageVolume> mVolumeMap = new HashMap<String, StorageVolume>();
119 private final HashMap<String, MtpStorage> mStorageMap = new HashMap<String, MtpStorage>();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
WidgetClassLoader.java 29 import java.util.HashMap;
147 new HashMap<String, ClassDescriptor>();
312 public HashMap<String, ArrayList<IClassDescriptor>> findClassesDerivingFrom(String rootPackage,
315 HashMap<String, ArrayList<IClassDescriptor>> map =
316 new HashMap<String, ArrayList<IClassDescriptor>>();
  /cts/suite/cts/hostTests/jank/src/com/android/cts/jank/
CtsHostJankTest.java 31 import java.util.HashMap;
117 HashMap<String, Double> results = new HashMap<String, Double>(4);
  /cts/tests/tests/drm/src/android/drm/cts/
DrmInfoTest.java 19 import java.util.HashMap;
74 HashMap<String, Object> attributes = new HashMap<String, Object>(3);
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
AllocationCache.java 26 import java.util.HashMap;
46 private final HashMap<AllocationKey, List<Allocation>> mAllocationMap =
47 new HashMap<AllocationKey, List<Allocation>>();
Script.java 26 import java.util.HashMap;
54 private final HashMap<Script.ScriptParameter<ScriptT, ?>, Object> mParameterMap =
55 new HashMap<Script.ScriptParameter<ScriptT, ?>, Object>();
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 21 import java.util.HashMap;
28 private static final HashMap<Type, CstType> interns =
29 new HashMap<Type, CstType>(100);
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 21 import java.util.HashMap;
28 private static final HashMap<Type, CstType> interns =
29 new HashMap<Type, CstType>(100);
  /dalvik/hit/src/com/android/hit/
State.java 20 import java.util.HashMap;
30 HashMap<Integer, Heap> mHeaps;
34 mHeaps = new HashMap<Integer, Heap>();
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
CustomArrayAdapter.java 37 import java.util.HashMap;
48 HashMap<ListItemObject, Integer> mIdMap = new HashMap<ListItemObject, Integer>();
  /development/samples/devbytes/ui/ListViewDeletion/src/com/example/android/listviewdeletion/
ListViewDeletion.java 20 import java.util.HashMap;
152 HashMap<String, Integer> mIdMap = new HashMap<String, Integer>();
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
TabHelperEclair.java 28 import java.util.HashMap;
44 private final HashMap<String, CompatTab> mTabs = new HashMap<String, CompatTab>();
  /development/tools/apkcheck/src/com/android/apkcheck/
TypeUtils.java 19 import java.util.HashMap;
28 private static final HashMap<String,String> sQuickConvert;
30 sQuickConvert = new HashMap<String,String>();
44 sQuickConvert.put("java.util.HashMap", "Ljava/util/HashMap;");
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DOTTreeGenerator.java 32 import java.util.HashMap;
74 HashMap nodeToNumberMap = new HashMap();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
TestOptions.java 28 import java.util.HashMap;
107 private HashMap internalProperties = new HashMap();
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 35 import java.util.HashMap;
74 this.attribs = new HashMap<String, String>();
318 clone.attribs = new HashMap<String, String>(this.attribs);
DateUtils.java 39 import java.util.HashMap;
223 new HashMap<String, SimpleDateFormat>());
244 formats = new HashMap<String, SimpleDateFormat>();
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DefaultCMSSignatureAlgorithmNameGenerator.java 3 import java.util.HashMap;
22 private final Map encryptionAlgs = new HashMap();
23 private final Map digestAlgs = new HashMap();
  /external/ceres-solver/internal/ceres/
collections_port.h 31 // Portable HashMap and HashSet, and a specialized overload for hashing pairs.
83 struct HashMap : map<K, V> {};
99 struct HashMap : std::tr1::unordered_map<K, V> {};
106 struct HashMap : std::unordered_map<K, V> {};
  /external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
InMemorySharedPreferences.java 10 import java.util.HashMap;
25 mData = new HashMap<String, Object>();
130 private final Map<String, Object> mChanges = new HashMap<String, Object>();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMWrapperWorld.cpp 70 typedef HashMap<int, DOMWrapperWorld*> WorldMap;
142 typedef HashMap<int, RefPtr<SecurityOrigin> > IsolatedWorldSecurityOriginMap;
167 typedef HashMap<int, bool> IsolatedWorldContentSecurityPolicyMap;

Completed in 1829 milliseconds

<<21222324252627282930>>