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

1 2 3 4 5 67 8 91011>>

  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageListUber.java 26 import java.util.HashMap;
71 public HashMap<String, String> getBucketIds() {
72 HashMap<String, String> hashMap = new HashMap<String, String>();
74 hashMap.putAll(list.getBucketIds());
76 return hashMap;
  /packages/apps/IM/src/com/android/im/service/
StatusBarNotifier.java 20 import java.util.HashMap;
49 private HashMap<Long, Imps.ProviderSettings.QueryMap> mSettings;
51 private HashMap<Long, NotificationInfo> mNotificationInfos;
58 mSettings = new HashMap<Long, Imps.ProviderSettings.QueryMap>();
60 mNotificationInfos = new HashMap<Long, NotificationInfo>();
211 private HashMap<String, Item> mItems;
219 mItems = new HashMap<String, Item>();
AndroidSmsService.java 21 import java.util.HashMap;
53 /*package*/HashMap<Integer, ListenerList> mListeners;
54 /*package*/HashMap<Long, SmsSendFailureCallback> mFailureCallbacks;
62 mListeners = new HashMap<Integer, ListenerList>();
63 mFailureCallbacks = new HashMap<Long, SmsSendFailureCallback>();
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
Addr2Line.java 26 import java.util.HashMap;
48 private static final HashMap<String, Addr2Line> sProcessCache =
49 new HashMap<String, Addr2Line>();
85 // synchronize around the hashmap object
218 // because of concurrent access (and our use of HashMap.values()), we
222 // just a basic loop on all the values in the hashmap and call to
241 // even though we don't access the hashmap object, we need to
  /external/webkit/WebCore/inspector/
InspectorController.h 44 #include <wtf/HashMap.h>
100 typedef HashMap<unsigned long, RefPtr<InspectorResource> > ResourcesMap;
101 typedef HashMap<RefPtr<Frame>, ResourcesMap*> FrameResourcesMap;
102 typedef HashMap<int, RefPtr<InspectorDatabaseResource> > DatabaseResourcesMap;
103 typedef HashMap<int, RefPtr<InspectorDOMStorageResource> > DOMStorageResourcesMap;
274 typedef HashMap<unsigned int, RefPtr<ScriptProfile> > ProfilesMap;
326 HashMap<String, double> m_times;
327 HashMap<String, unsigned> m_counts;
347 typedef HashMap<String, String> Settings;
  /external/webkit/WebCore/platform/graphics/openvg/
EGLDisplayOpenVG.cpp 33 typedef HashMap<EGLDisplay, EGLDisplayOpenVG*> EGLDisplayManagerMap;
122 HashMap<EGLSurface, EGLint>::const_iterator end = m_surfaceConfigIds.end();
123 for (HashMap<EGLSurface, EGLint>::const_iterator it = m_surfaceConfigIds.begin(); it != end; ++it)
313 HashMap<EGLSurface, EGLint>::iterator end = m_surfaceConfigIds.end();
316 for (HashMap<EGLSurface, EGLint>::iterator it = m_surfaceConfigIds.begin(); it != end; ++it) {
331 HashMap<EGLNativeWindowType, EGLSurface>::iterator end = m_windowSurfaces.end();
332 for (HashMap<EGLNativeWindowType, EGLSurface>::iterator it = m_windowSurfaces.begin(); it != end; ++it) {
385 HashMap<EGLint, EGLContext>::iterator end = m_contexts.end();
387 for (HashMap<EGLint, EGLContext>::iterator it = m_contexts.begin(); it != end; ++it) {
  /external/webkit/WebCore/storage/
StorageAreaSync.cpp 134 HashMap<String, String>::iterator it = m_changedItems.begin();
135 HashMap<String, String>::iterator end = m_changedItems.end();
199 HashMap<String, String> itemMap;
213 HashMap<String, String>::iterator it = itemMap.begin();
214 HashMap<String, String>::iterator end = itemMap.end();
250 void StorageAreaSync::sync(bool clearItems, const HashMap<String, String>& items)
284 HashMap<String, String>::const_iterator end = items.end();
286 for (HashMap<String, String>::const_iterator it = items.begin(); it != end; ++it) {
311 HashMap<String, String> items;
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
CallbackProxy.java 25 import java.util.HashMap;
93 HashMap map = (HashMap) msg.obj;
218 HashMap<String, String> loadMap =
219 (HashMap<String, String>) msg.obj;
291 HashMap map = new HashMap();
420 HashMap <String, String>map = new HashMap<String, String>();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 34 import java.util.HashMap;
61 private HashMap<IProject, HashMap<String, ElementDescriptor>> mCustomDescriptorMap =
62 new HashMap<IProject, HashMap<String, ElementDescriptor>>();
118 HashMap<String, ElementDescriptor> map = mCustomDescriptorMap.get(project);
166 map = new HashMap<String, ElementDescriptor>();
253 HashMap<String, ElementDescriptor> map = mCustomDescriptorMap.get(project);
256 map = new HashMap<String, ElementDescriptor>();
  /cts/tools/host/src/com/android/cts/
CommandParser.java 21 import java.util.HashMap;
44 private HashMap<String, String> mValues = new HashMap<String, String>();
58 private static HashMap<String, String> sOptionMap = new HashMap<String, String>();
CtsTestResult.java 23 import java.util.HashMap;
49 private static HashMap<Integer, String> sCodeToResultMap;
50 private static HashMap<String, Integer> sResultToCodeMap;
52 sCodeToResultMap = new HashMap<Integer, String>();
58 sResultToCodeMap = new HashMap<String, Integer>();
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/fortress/
Services.java 30 import java.util.HashMap;
47 // The HashMap that contains information about preferred implementations for
52 private static final Map<String, Provider.Service> services = new HashMap<String, Provider.Service>(600);
67 private static final Map<String, Provider> providersNames = new HashMap<String, Provider>(20);
164 * Adds information about provider services into HashMap.
  /external/srec/srec/Semproc/include/
SR_ExpressionParser.h 132 HashMap *pfunctions;
188 * @param hashmap pointer to a hashmap used to store the results of processing
192 HashMap** hashmap);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Schema.java 18 import java.util.HashMap;
37 private HashMap theEntities =
38 new HashMap(); // String -> Character
39 private HashMap theElementTypes =
40 new HashMap(); // String -> ElementType
  /external/v8/test/cctest/
test-hashmap.cc 31 #include "hashmap.h"
50 HashMap::Entry* p = map_.Lookup(reinterpret_cast<void*>(x), hash_(x), true);
62 HashMap::Entry* p =
76 for (HashMap::Entry* p = map_.Start(); p != NULL; p = map_.Next(p)) {
85 HashMap map_;
  /external/webkit/WebCore/loader/icon/
IconDatabase.h 32 #include <wtf/HashMap.h>
154 HashMap<String, IconRecord*> m_iconURLToRecordMap;
155 HashMap<String, PageURLRecord*> m_pageURLToRecordMap;
160 HashMap<String, PageURLSnapshot> m_pageURLsPendingSync;
161 HashMap<String, IconSnapshot> m_iconsPendingSync;
  /external/webkit/WebCore/page/
WindowFeatures.cpp 29 #include <wtf/HashMap.h>
160 bool WindowFeatures::boolFeature(const HashMap<String, String>& features, const char* key, bool defaultValue)
162 HashMap<String, String>::const_iterator it = features.find(key);
169 float WindowFeatures::floatFeature(const HashMap<String, String>& features, const char* key, float min, float max, float defaultValue)
171 HashMap<String, String>::const_iterator it = features.find(key);
  /frameworks/base/core/java/com/google/android/mms/pdu/
CharacterSets.java 21 import java.util.HashMap;
119 private static final HashMap<Integer, String> MIBENUM_TO_NAME_MAP;
120 private static final HashMap<String, Integer> NAME_TO_MIBENUM_MAP;
124 MIBENUM_TO_NAME_MAP = new HashMap<Integer, String>();
125 NAME_TO_MIBENUM_MAP = new HashMap<String, Integer>();
PduBody.java 20 import java.util.HashMap;
38 mPartMapByContentId = new HashMap<String, PduPart>();
39 mPartMapByContentLocation = new HashMap<String, PduPart>();
40 mPartMapByName = new HashMap<String, PduPart>();
41 mPartMapByFileName = new HashMap<String, PduPart>();
  /frameworks/base/graphics/java/android/renderscript/
ScriptC.java 25 import java.util.HashMap;
43 HashMap<String,Integer> mIntDefines = new HashMap();
44 HashMap<String,Float> mFloatDefines = new HashMap();
  /frameworks/base/media/java/android/media/
MediaFile.java 27 import java.util.HashMap;
96 private static HashMap<String, MediaFileType> sFileTypeMap
97 = new HashMap<String, MediaFileType>();
98 private static HashMap<String, Integer> sMimeTypeMap
99 = new HashMap<String, Integer>();
  /frameworks/base/opengl/tools/glgen/src/
JType.java 17 import java.util.HashMap;
26 static HashMap<CType,JType> typeMapping = new HashMap<CType,JType>();
27 static HashMap<CType,JType> arrayTypeMapping = new HashMap<CType,JType>();
  /packages/apps/IM/samples/PluginDemo/src/com/android/im/plugin/demo/
DemoImPlugin.java 29 import java.util.HashMap;
44 HashMap<String, String> config = new HashMap<String, String>();
58 HashMap<Integer, Integer> resMapping = new HashMap<Integer, Integer>();
  /packages/apps/Launcher2/src/com/android/launcher2/
LiveFolderAdapter.java 36 import java.util.HashMap;
45 private final HashMap<String, Drawable> mIcons = new HashMap<String, Drawable>();
46 private final HashMap<Long, SoftReference<Drawable>> mCustomIcons =
47 new HashMap<Long, SoftReference<Drawable>>();
  /packages/apps/Mms/src/com/android/mms/util/
SmileyParser.java 26 import java.util.HashMap;
45 private final HashMap<String, Integer> mSmileyToRes;
127 private HashMap<String, Integer> buildSmileyToRes() {
134 HashMap<String, Integer> smileyToRes =
135 new HashMap<String, Integer>(mSmileyTexts.length);

Completed in 267 milliseconds

1 2 3 4 5 67 8 91011>>