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

<<21222324252627282930>>

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictUtils.java 23 import java.util.HashMap;
40 final DictionaryOptions options = new DictionaryOptions(new HashMap<String, String>());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportFieldsPart.java 26 import java.util.HashMap;
73 HashMap<String, Control> map = getNameToField();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidJarLoader.java 29 import java.util.HashMap;
111 private final HashMap<String, byte[]> mEntryCache = new HashMap<String, byte[]>();
113 private final HashMap<String, Class<?> > mClassCache = new HashMap<String, Class<?> >();
211 public HashMap<String, ArrayList<IClassDescriptor>> findClassesDerivingFrom(
218 HashMap<String, ArrayList<IClassDescriptor>> mClassesFound =
219 new HashMap<String, ArrayList<IClassDescriptor>>();
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
NdkEnvSupplier.java 26 import java.util.HashMap;
37 mEnvVars = new HashMap<String, IBuildEnvironmentVariable>();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleScannerPowerLevelActivity.java 25 import java.util.HashMap;
79 mRssiText = new HashMap<Integer, TextView>();
80 mCountText = new HashMap<Integer, TextView>();
82 mMacText = new HashMap<Integer, TextView>();
83 mSetPowerText = new HashMap<Integer, TextView>();
166 mCount = new HashMap<Integer, Integer>();
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObjectCache.h 33 #include "wtf/HashMap.h"
74 HashMap<AXID, CachedAXObjectAttributes> m_idMapping;
214 HashMap<AXID, RefPtr<AXObject> > m_objects;
215 HashMap<RenderObject*, AXID> m_renderObjectMapping;
216 HashMap<Widget*, AXID> m_widgetObjectMapping;
217 HashMap<Node*, AXID> m_nodeObjectMapping;
218 HashMap<AbstractInlineTextBox*, AXID> m_inlineTextBoxObjectMapping;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.h 36 #include "wtf/HashMap.h"
159 typedef HashMap<String, RefPtr<InspectorStyleSheet> > IdToInspectorStyleSheet;
160 typedef HashMap<String, RefPtr<InspectorStyleSheetForInlineStyle> > IdToInspectorStyleSheetForInlineStyle;
161 typedef HashMap<Node*, RefPtr<InspectorStyleSheetForInlineStyle> > NodeToInspectorStyleSheet; // bogus "stylesheets" with elements' inline styles
162 typedef HashMap<int, unsigned> NodeIdToForcedPseudoState;
205 HashMap<CSSStyleSheet*, RefPtr<InspectorStyleSheet> > m_cssStyleSheetToInspectorStyleSheet;
206 typedef HashMap<Document*, OwnPtr<HashSet<CSSStyleSheet*> > > DocumentStyleSheets;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
RobolectricPackageManager.java 5 import java.util.HashMap;
23 private Map<Intent, List<ResolveInfo>> resolveList = new HashMap<Intent, List<ResolveInfo>>();
24 private Map<ComponentName, ComponentState> componentList = new HashMap<ComponentName,ComponentState>();
25 private Map<ComponentName, Drawable> drawableList = new HashMap<ComponentName, Drawable>();
26 private Map<String, Boolean> systemFeatureList = new HashMap<String, Boolean>();
208 packageList = new HashMap<String, PackageInfo>();
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAccountManager.java 38 private HashMap<Account, HashMap<String, String>> cachedAuthTokenValues =
39 new HashMap<Account, HashMap<String, String>>();
192 HashMap<String, String> tokens = cachedAuthTokenValues.get(account);
198 cachedAuthTokenValues.put(account, new HashMap<String, String>());
  /frameworks/volley/tests/src/com/android/volley/toolbox/
DiskBasedCacheTest.java 26 import java.util.HashMap;
39 e.responseHeaders = new HashMap<String, String>();
103 Map<String, String> empty = new HashMap<String, String>();
106 Map<String, String> twoThings = new HashMap<String, String>();
110 Map<String, String> emptyKey = new HashMap<String, String>();
113 Map<String, String> emptyValue = new HashMap<String, String>();
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeeksAdapter.java 37 import java.util.HashMap;
100 public SimpleWeeksAdapter(Context context, HashMap<String, Integer> params) {
132 public void updateParams(HashMap<String, Integer> params) {
208 HashMap<String, Integer> drawingParams = null;
212 drawingParams = (HashMap<String, Integer>) v.getTag();
223 drawingParams = new HashMap<String, Integer>();
  /packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
GalleryWidgetMigrator.java 37 import java.util.HashMap;
89 HashMap<Integer, Entry> localEntries = new HashMap<Integer, Entry>(entries.size());
107 HashMap<Integer, Entry> entries, WidgetDatabaseHelper dbHelper) {
123 private static void migrateLocalEntries(HashMap<Integer, Entry> entries,
131 private static void updatePath(File root, HashMap<Integer, Entry> entries,
  /packages/apps/Launcher2/src/com/android/launcher2/
IconCache.java 34 import java.util.HashMap;
75 private final HashMap<CacheKey, CacheEntry> mCache =
76 new HashMap<CacheKey, CacheEntry>(INITIAL_ICON_CACHE_CAPACITY);
182 HashMap<Object, CharSequence> labelCache) {
211 HashMap<Object, CharSequence> labelCache) {
227 HashMap<Object, CharSequence> labelCache, UserHandle user) {
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
AidRoutingManager.java 25 import java.util.HashMap;
69 HashMap<String, Integer> mRouteForAid = new HashMap<String, Integer>();
95 public boolean configureRouting(HashMap<String, Boolean> aidMap) {
97 HashMap<String, Integer> routeForAid = new HashMap<String, Integer>(aidMap.size());
  /packages/services/Telephony/src/com/android/phone/
CallerInfoCache.java 34 import java.util.HashMap;
147 private volatile HashMap<String, CacheEntry> mNumberToEntry;
164 mNumberToEntry = new HashMap<String, CacheEntry>();
194 final HashMap<String, CacheEntry> newNumberToEntry =
195 new HashMap<String, CacheEntry>(cursor.getCount());
259 private void putNewEntryWhenAppropriate(HashMap<String, CacheEntry> newNumberToEntry,
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
BaseLayoutRuleTest.java 29 import java.util.HashMap;
59 Map<String, Pair<String, String>> idMap = new HashMap<String, Pair<String, String>>();
74 Map<String, Pair<String, String>> idMap = new HashMap<String, Pair<String, String>>();
107 Map<String, Pair<String, String>> idMap = new HashMap<String, Pair<String, String>>();
126 Map<String, Pair<String, String>> idMap = new HashMap<String, Pair<String, String>>();
238 Map<String, Pair<String, String>> idMap = new HashMap<String, Pair<String, String>>();
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
GlyphPageTreeNode.cpp 45 HashMap<int, GlyphPageTreeNode*>* GlyphPageTreeNode::roots = 0;
53 roots = new HashMap<int, GlyphPageTreeNode*>;
75 HashMap<int, GlyphPageTreeNode*>::iterator end = roots->end();
76 for (HashMap<int, GlyphPageTreeNode*>::iterator it = roots->begin(); it != end; ++it)
100 HashMap<int, GlyphPageTreeNode*>::iterator end = roots->end();
101 for (HashMap<int, GlyphPageTreeNode*>::iterator it = roots->begin(); it != end; ++it)
112 HashMap<int, GlyphPageTreeNode*>::iterator end = roots->end();
113 for (HashMap<int, GlyphPageTreeNode*>::iterator it = roots->begin(); it != end; ++it)
412 HashMap<int, WebCore::GlyphPageTreeNode*>::iterator end = WebCore::GlyphPageTreeNode::roots->end();
413 for (HashMap<int, WebCore::GlyphPageTreeNode*>::iterator it = WebCore::GlyphPageTreeNode::roots->begin(); it != (…)
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeUtil.java 34 import java.util.HashMap;
58 final HashMap<String, HashSet<String>> imeToSubtypesMap) {
102 private static HashMap<String, HashSet<String>> getEnabledInputMethodsAndSubtypeList(
112 static HashMap<String, HashSet<String>> parseInputMethodsAndSubtypesString(
114 final HashMap<String, HashSet<String>> subtypesMap = new HashMap<>();
137 final HashMap<String, HashSet<String>> enabledImeAndSubtypeIdsMap =
166 final HashMap<String, HashSet<String>> enabledIMEsAndSubtypesMap =
290 final HashMap<String, HashSet<String>> enabledSubtypes =
332 final HashMap<String, HashSet<String>> enabledSubtypes)
    [all...]
  /frameworks/base/core/java/android/content/
ContentValues.java 24 import java.util.HashMap;
36 private HashMap<String, Object> mValues;
44 mValues = new HashMap<String, Object>(8);
53 mValues = new HashMap<String, Object>(size, 1.0f);
62 mValues = new HashMap<String, Object>(from.mValues);
66 * Creates a set of values copied from the given HashMap. This is used
72 private ContentValues(HashMap<String, Object> values) {
465 HashMap<String, Object> values = in.readHashMap(null);
  /frameworks/base/services/core/java/com/android/server/pm/
SELinuxMMAC.java 38 import java.util.HashMap;
55 private static HashMap<Signature, Policy> sSigSeinfo = new HashMap<Signature, Policy>();
101 private final HashMap<String, String> pkgMap;
105 pkgMap = new HashMap<String, String>();
142 HashMap<Signature, Policy> sigSeinfo = new HashMap<Signature, Policy>();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
CookieManagerTest.java 27 import java.util.HashMap;
71 checkValidParams4Get(null, new HashMap<String, List<String>>());
77 checkValidParams4Put(null, new HashMap<String, List<String>>());
146 HashMap<String, List<String>> dummyMap = new HashMap<String, List<String>>();
277 new HashMap<String, List<String>>());
289 map = manager.get(uri, new HashMap<String, List<String>>());
  /packages/apps/Browser/src/com/android/browser/homepages/
Template.java 23 import java.util.HashMap;
37 private static HashMap<Integer, Template> sCachedTemplates = new HashMap<Integer, Template>();
147 HashMap<String, Object> mData;
149 public HashMapEntityData(HashMap<String, Object> map) {
166 private HashMap<String, Object> mData = new HashMap<String, Object>();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResourceUtils.java 31 import java.util.HashMap;
44 private static final HashMap<String, String> sDeviceOverrideValueMap = new HashMap<>();
52 private static final HashMap<String, String> sBuildKeyValues;
56 sBuildKeyValues = new HashMap<>();
124 static String findConstantForKeyValuePairs(final HashMap<String, String> keyValuePairs,
156 private static boolean fulfillsCondition(final HashMap<String,String> keyValuePairs,
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 25 import java.util.HashMap;
223 private HashMap<Animator, PropertyBundle> mAnimatorMap =
224 new HashMap<Animator, PropertyBundle>();
225 private HashMap<Animator, Runnable> mAnimatorSetupMap;
226 private HashMap<Animator, Runnable> mAnimatorCleanupMap;
227 private HashMap<Animator, Runnable> mAnimatorOnStartMap;
228 private HashMap<Animator, Runnable> mAnimatorOnEndMap;
425 HashMap<Animator, PropertyBundle> mAnimatorMapCopy =
426 (HashMap<Animator, PropertyBundle>)mAnimatorMap.clone();
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
SelectFunctionalityTest.java 32 import java.util.HashMap;
241 HashMap<Integer, String> value = new HashMap<Integer, String>();
277 HashMap<Integer, Integer> value = new HashMap<Integer, Integer>();
309 HashMap<Integer, String> value = new HashMap<Integer, String>();
336 HashMap<Integer, Integer> value = new HashMap<Integer, Integer>();
369 HashMap<Integer, Integer> value = new HashMap<Integer, Integer>()
    [all...]

Completed in 2674 milliseconds

<<21222324252627282930>>