HomeSort by relevance Sort by last modified time
    Searched full:hashmap (Results 201 - 225 of 1194) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/tests/CoreTests/android/core/
TreeMapTest.java 21 import java.util.HashMap;
45 HashMap<Integer, String> hm = new HashMap<Integer, String>();
  /frameworks/base/tools/preload/
Root.java 29 import java.util.HashMap;
43 final Map<Integer, Proc> processes = new HashMap<Integer, Proc>();
47 = new HashMap<String, LoadedClass>();
  /packages/apps/Camera/src/com/android/camera/
PreferenceInflater.java 25 import java.util.HashMap;
41 private static final HashMap<String, Constructor<?>> sConstructorMap =
42 new HashMap<String, Constructor<?>>();
  /packages/apps/IM/src/com/android/im/imps/
PrimitiveElement.java 22 import java.util.HashMap;
31 private HashMap<String, String> mAttributes;
57 mAttributes = new HashMap<String, String>();
SmsAssembler.java 20 import java.util.HashMap;
36 private HashMap<String, RawPtsData> mPtsCache;
39 mPtsCache = new HashMap<String, RawPtsData>();
  /packages/apps/Launcher2/src/com/android/launcher2/
IconCache.java 27 import java.util.HashMap;
47 private final HashMap<ComponentName, CacheEntry> mCache =
48 new HashMap<ComponentName, CacheEntry>(INITIAL_ICON_CACHE_CAPACITY);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShouldQueryStrategy.java 21 import java.util.HashMap;
44 private final HashMap<Corpus, Integer> mEmptyCorpora
45 = new HashMap<Corpus, Integer>();
  /build/tools/apicheck/src/com/android/apicheck/
ClassInfo.java 31 private HashMap<String, MethodInfo> mMethods;
32 private HashMap<String, FieldInfo> mFields;
33 private HashMap<String, ConstructorInfo> mConstructors;
54 mMethods = new HashMap<String, MethodInfo>();
55 mFields = new HashMap<String, FieldInfo>();
56 mConstructors = new HashMap<String, ConstructorInfo>();
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
Header.java 22 import java.util.HashMap;
34 * we use the non-synchronized ArrayList and HashMap instead of the
39 private HashMap<String, LinkedList<String>> keyTable;
51 this.keyTable = new HashMap<String, LinkedList<String>>(20);
82 clone.keyTable = new HashMap<String, LinkedList<String>>(20);
157 Map<String, List<String>> result = new HashMap<String, List<String>>(
  /external/v8/src/
d8.h 32 #include "hashmap.h"
80 i::HashMap::Entry* answer = hash_map_.Lookup(
88 i::HashMap::Entry* answer = hash_map_.Lookup(
104 i::HashMap* map_;
105 i::HashMap::Entry* entry_;
110 i::HashMap hash_map_;
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.h 35 #include <wtf/HashMap.h>
291 HashMap<uint32_t, RefPtr<HostedNetscapePluginStream> > m_streams;
300 HashMap<uint32_t, Reply*> m_replies;
311 typedef HashMap<uint32_t, JSC::ProtectedPtr<JSC::JSObject> > ObjectMap;
318 typedef HashMap<uint32_t, RetainPtr<id> > URLCheckMap;
329 typedef HashMap<WebFrame*, RefPtr<PluginRequest> > FrameLoadMap;
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageListUnitTests.java 35 import java.util.HashMap;
56 private HashMap<Long, Map<String, Object>> mRowsMap;
84 HashMap<String, Object> emap = new HashMap<String, Object>();
106 mRowsMap = new HashMap<Long, Map<String, Object>>(0);
172 HashMap<Long, Map<String, Object>> rows) {
  /dalvik/libcore/luni/src/main/java/java/util/
LinkedHashSet.java 86 /* overrides method in HashMap */
88 HashMap<E, HashSet<E>> createBackingMap(int capacity, float loadFactor) {
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/parsers/
SAXParserFactoryImpl.java 19 import java.util.HashMap;
41 private Map<String, Boolean> features = new HashMap<String, Boolean>();
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/support/
MockFilter.java 20 import java.util.HashMap;
41 private Map<String, Object> properties = new HashMap<String, Object>();
MockReader.java 20 import java.util.HashMap;
53 private Map<String, Object> properties = new HashMap<String, Object>();
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 20 import java.util.HashMap;
27 private static final Map<String, Class<?>> primitiveTypes = new HashMap<String, Class<?>>(
  /external/emma/core/java12/com/vladium/util/
IProperties.java 15 import java.util.HashMap;
87 final HashMap map = new HashMap ();
176 _clone.m_valueMap = (HashMap) m_valueMap.clone ();
198 _delegateClone.m_valueMap = (HashMap) delegate.m_valueMap.clone ();
299 PropertiesImpl (final HashMap values, final IMapper mapper)
302 m_valueMap = values != null ? values : new HashMap ();
354 private /*final*/ HashMap m_valueMap; // never null
  /external/srec/srec/Nametag/include/
SR_NametagsImpl.h 27 #include "HashMap.h"
44 HashMap* value;
  /external/webkit/JavaScriptCore/bytecode/
EvalCodeCache.h 38 #include <wtf/HashMap.h>
71 typedef HashMap<RefPtr<UString::Rep>, RefPtr<EvalExecutable> > EvalCacheMap;
  /external/webkit/WebCore/bindings/objc/
ObjCEventListener.mm 35 #import <wtf/HashMap.h>
39 typedef HashMap<id, ObjCEventListener*> ListenerMap;
  /external/webkit/WebCore/css/
CSSFontFaceSource.h 32 #include <wtf/HashMap.h>
73 HashMap<unsigned, SimpleFontData*> m_fontDataTable; // The hash key is composed of size synthetic styles.
CSSVariablesDeclaration.h 32 #include <wtf/HashMap.h>
77 HashMap<String, RefPtr<CSSValue> > m_variablesMap;
  /external/webkit/WebCore/inspector/
InjectedScriptHost.h 38 #include <wtf/HashMap.h>
101 typedef HashMap<long, InjectedScript> IdToInjectedScriptMap;
  /external/webkit/WebCore/loader/
CrossOriginPreflightResultCache.h 29 #include <wtf/HashMap.h>
74 typedef HashMap<std::pair<String, KURL>, CrossOriginPreflightResultCacheItem*> CrossOriginPreflightResultHashMap;

Completed in 126 milliseconds

1 2 3 4 5 6 7 891011>>