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

1 2 3 4 56 7 8 91011>>

  /external/guava/src/com/google/common/base/
Defaults.java 19 import java.util.HashMap;
31 new HashMap<Class<?>, Object>(16);
  /external/srec/srec/Semproc/include/
SR_SemanticResultImpl.h 26 #include "HashMap.h"
42 HashMap* results;
  /external/webkit/WebCore/css/
CSSSegmentedFontFace.h 29 #include <wtf/HashMap.h>
64 HashMap<unsigned, SegmentedFontData*> m_fontDataTable;
  /external/webkit/WebCore/loader/
ProgressTracker.h 29 #include <wtf/HashMap.h>
75 HashMap<unsigned long, ProgressItem*> m_progressItems;
  /external/webkit/WebCore/page/
PluginHalter.h 31 #include <wtf/HashMap.h>
55 HashMap<HaltablePlugin*, double> m_plugins;
  /external/webkit/WebCore/platform/network/curl/
CookieJarCurl.cpp 26 #include <wtf/HashMap.h>
30 static HashMap<String, String> cookieJar;
  /external/webkit/WebCore/plugins/
PluginMainThreadScheduler.h 30 #include <wtf/HashMap.h>
57 typedef HashMap<NPP, Deque<Call> > CallQueueMap;
  /external/webkit/WebCore/rendering/style/
CounterDirectives.h 29 #include <wtf/HashMap.h>
50 typedef HashMap<RefPtr<AtomicStringImpl>, CounterDirectives> CounterDirectiveMap;
  /external/webkit/WebCore/storage/
SQLTransactionCoordinator.h 39 #include <wtf/HashMap.h>
60 typedef HashMap<String, CoordinationInfo> CoordinationInfoMap;
  /external/webkit/WebCore/wml/
WMLPageState.h 28 #include <wtf/HashMap.h>
36 typedef HashMap<String, String> WMLVariableMap;
  /external/webkit/WebKit/android/WebCoreSupport/
V8Counters.h 35 #include <wtf/HashMap.h>
70 static HashMap<String, Counter*> m_counters;
  /external/webkit/WebKit/win/
COMPropertyBag.h 33 #include <wtf/HashMap.h>
40 typedef HashMap<KeyType, ValueType, HashType> HashMapType;
67 COMPropertyBag(const HashMapType& hashMap)
69 , m_hashMap(hashMap)
81 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::createInstance(const HashMapType& hashMap)
83 COMPropertyBag* instance = new COMPropertyBag(hashMap);
89 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::adopt(HashMapType& hashMap)
92 instance->m_hashMap.swap(hashMap);
  /external/webkit/WebKitTools/DumpRenderTree/
AccessibilityController.h 32 #include <wtf/HashMap.h>
67 HashMap<PlatformUIElement, JSObjectRef> m_notificationListeners;
  /packages/apps/Gallery/src/com/android/camera/gallery/
IImageList.java 21 import java.util.HashMap;
47 public HashMap<String, String> getBucketIds();
SingleImageList.java 22 import java.util.HashMap;
41 public HashMap<String, String> getBucketIds() {
  /packages/apps/Settings/src/com/android/settings/vpn/
VpnTypeSelection.java 29 import java.util.HashMap;
36 private Map<String, VpnType> mTypeMap = new HashMap<String, VpnType>();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AutoDictionary.java 19 import java.util.HashMap;
56 private HashMap<String,Integer> mPendingWrites = new HashMap<String,Integer>();
76 private static HashMap<String, String> sDictProjectionMap;
79 sDictProjectionMap = new HashMap<String, String>();
174 mPendingWrites = new HashMap<String, Integer>();
223 private final HashMap<String, Integer> mMap;
228 HashMap<String, Integer> pendingWrites, String locale) {
  /external/webkit/JavaScriptCore/runtime/
WeakGCMap.h 30 #include <wtf/HashMap.h>
36 // A HashMap whose get() function returns emptyValue() for cells awaiting destruction.
48 typedef typename HashMap<KeyType, MappedType>::iterator iterator;
49 typedef typename HashMap<KeyType, MappedType>::const_iterator const_iterator;
71 HashMap<KeyType, MappedType> m_map;
97 pair<typename HashMap<KeyType, MappedType>::iterator, bool> WeakGCMap<KeyType, MappedType>::set(const KeyType& key, const MappedType& value)
  /external/webkit/WebCore/dom/
XMLTokenizer.h 35 #include <wtf/HashMap.h>
123 typedef HashMap<String, String> PrefixForNamespaceMap;
130 HashMap<String, String> parseAttributes(const String&, bool& attrsOK);
143 #include <wtf/HashMap.h>
309 typedef HashMap<String, String> PrefixForNamespaceMap;
319 HashMap<String, String> parseAttributes(const String&, bool& attrsOK);
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDiff.java 28 import java.util.HashMap;
93 final HashMap<String, NamedContentValues> beforeChildren = buildChildrenMap(before);
94 final HashMap<String, NamedContentValues> afterChildren = buildChildrenMap(after);
138 private static HashMap<String, NamedContentValues> buildChildrenMap(Entity entity) {
140 final HashMap<String, NamedContentValues> childrenMap = new HashMap<String, NamedContentValues>(
  /frameworks/base/services/java/com/android/server/
IntentResolver.java 23 import java.util.HashMap;
417 HashMap<String, ArrayList<F>> dest, String prefix) {
439 HashMap<String, ArrayList<F>> dest, String prefix) {
542 private final HashMap<String, ArrayList<F>> mTypeToFilter
543 = new HashMap<String, ArrayList<F>>();
550 private final HashMap<String, ArrayList<F>> mBaseTypeToFilter
551 = new HashMap<String, ArrayList<F>>();
560 private final HashMap<String, ArrayList<F>> mWildTypeToFilter
561 = new HashMap<String, ArrayList<F>>();
566 private final HashMap<String, ArrayList<F>> mSchemeToFilte
    [all...]
  /development/tools/apkcheck/src/com/android/apkcheck/
ClassInfo.java 20 import java.util.HashMap;
31 private HashMap<String,MethodInfo> mMethodList;
33 private HashMap<String,FieldInfo> mFieldList;
62 mMethodList = new HashMap<String,MethodInfo>();
63 mFieldList = new HashMap<String,FieldInfo>();
295 * new hashmap and replace the old.)
300 HashMap<String,FieldInfo> tmpFieldList = new HashMap<String,FieldInfo>();
310 HashMap<String,MethodInfo> tmpMethodList = new HashMap<String,MethodInfo>()
    [all...]
  /frameworks/base/core/java/android/webkit/
WebStorage.java 25 import java.util.HashMap;
173 Map origins = new HashMap(mOrigins);
174 Map values = new HashMap<String, Object>();
186 Map retValues = new HashMap<String, Object>();
201 Map retValues = new HashMap<String, Object>();
273 HashMap values = new HashMap<String, Object>();
296 HashMap values = new HashMap<String, Object>();
398 mOrigins = new HashMap<String, Origin>()
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplayGraph.java 38 import java.util.HashMap;
124 // get the hashmap for this descriptor
125 HashMap<Integer, TimeSeries> map = mValueDescriptorSeriesMap.get(descriptor);
129 map = new HashMap<Integer, TimeSeries>();
201 // get the hashmap for this descriptor
202 HashMap<Integer, TimeSeries> map = mOcurrenceDescriptorSeriesMap.get(descriptor);
206 map = new HashMap<Integer, TimeSeries>();
247 Collection<HashMap<Integer, TimeSeries>> pidMapValues =
250 for (HashMap<Integer, TimeSeries> pidMapValue : pidMapValues) {
259 for (HashMap<Integer, TimeSeries> pidMapValue : pidMapValues)
    [all...]
  /sdk/traceview/src/com/android/traceview/
MethodData.java 26 import java.util.HashMap;
47 private HashMap<Integer, ProfileData> mParents;
48 private HashMap<Integer, ProfileData> mChildren;
51 private HashMap<Integer, ProfileData> mRecursiveParents;
54 private HashMap<Integer, ProfileData> mRecursiveChildren;
154 private HashMap<Integer, ProfileData> updateInclusive(long time,
156 boolean elementIsParent, HashMap<Integer, ProfileData> map) {
158 map = new HashMap<Integer, ProfileData>(4);
217 // of the given HashMap values.
218 private ProfileData[] sortProfileData(HashMap<Integer, ProfileData> map)
    [all...]

Completed in 456 milliseconds

1 2 3 4 56 7 8 91011>>