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

1 2 3 4 5 67 8 91011>>

  /external/apache-http/src/org/apache/http/impl/auth/
RFC2617Scheme.java 33 import java.util.HashMap;
75 this.params = new HashMap<String, String>(elements.length);
88 this.params = new HashMap<String, String>();
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebServiceWorkerResponse.cpp 16 HashMap<String, String> headers;
79 void WebServiceWorkerResponse::setHeaders(const HashMap<String, String>& headers)
84 const HashMap<String, String>& WebServiceWorkerResponse::headers() const
  /external/guava/guava-gwt/src/com/google/common/collect/
GwtSerializationDependencies.java 22 import java.util.HashMap;
102 HashMap<R, HashMap<C, V>> data;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
HashBiMap.java 21 import java.util.HashMap;
27 * A {@link BiMap} backed by two {@link HashMap} instances. This implementation
69 super(new HashMap<K, V>(), new HashMap<V, K>());
  /external/guava/guava-tests/test/com/google/common/collect/
ConstrainedMapImplementsMapTest.java 22 import java.util.HashMap;
35 return MapConstraints.constrainedMap(new HashMap<String, Integer>(),
41 new HashMap<String, Integer>(), MapConstraintsTest.TEST_CONSTRAINT);
62 // GWT's HashMap.entrySet().removeAll(null) doesn't throws NPE.
70 // GWT's HashMap.entrySet().retainAll(null) doesn't throws NPE.
78 // GWT's HashMap.keySet().removeAll(null) doesn't throws NPE.
86 // GWT's HashMap.keySet().retainAll(null) doesn't throws NPE.
94 // GWT's HashMap.values().removeAll(null) doesn't throws NPE.
102 // GWT's HashMap.values().retainAll(null) doesn't throws NPE.
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMimeTypeMap.java 8 import java.util.HashMap;
19 Map<String, String> extensionToMimeTypeMap = new HashMap<String, String>();
20 Map<String, String> mimeTypeToExtensionMap = new HashMap<String, String>();
ShadowStateListDrawable.java 10 import java.util.HashMap;
21 stateToResource = new HashMap<Integer, Integer>();
22 stateToDrawable = new HashMap<List<Integer>, Drawable>();
  /external/smack/src/org/jivesoftware/smack/sasl/
SASLGSSAPIMechanism.java 27 import java.util.HashMap;
63 Map<String,String> props = new HashMap<String,String>();
82 Map<String,String> props = new HashMap<String, String>();
  /frameworks/base/drm/java/android/drm/
DrmInfo.java 20 import java.util.HashMap;
39 private final HashMap<String, Object> mAttributes = new HashMap<String, Object>();
DrmInfoRequest.java 19 import java.util.HashMap;
59 private final HashMap<String, Object> mRequestInformation = new HashMap<String, Object>();
  /frameworks/base/location/java/android/location/
CountryDetector.java 19 import java.util.HashMap;
85 private final HashMap<CountryListener, ListenerTransport> mListeners;
95 mListeners = new HashMap<CountryListener, ListenerTransport>();
  /frameworks/base/media/java/android/media/
CameraProfile.java 23 import java.util.HashMap;
47 private static final HashMap<Integer, int[]> sCache = new HashMap<Integer, int[]>();
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
OneShotScheduler.java 24 import java.util.HashMap;
34 private HashMap <String, Integer> scheduled;
41 scheduled = new HashMap<String, Integer>();
StopWatchMap.java 21 import java.util.HashMap;
74 private HashMap<String, StopWatch> mStopWatches = null;
77 mStopWatches = new HashMap<String, StopWatch>();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
KeyStoreLruCache.java 21 import java.util.HashMap;
31 HashMap<Integer, Task.TaskKey> mTaskKeys = new HashMap<Integer, Task.TaskKey>();
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Shader.java 21 import java.util.HashMap;
37 protected HashMap<String, ShaderParam> mSourceParams;
47 mSourceParams = new HashMap<String, ShaderParam>();
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapMessagesListing.java 28 import java.util.HashMap;
54 HashMap<String, String> attrs = new HashMap<String, String>();
  /libcore/luni/src/main/java/java/security/
SecureClassLoader.java 21 import java.util.HashMap;
31 private HashMap<CodeSource, ProtectionDomain> pds = new HashMap<CodeSource, ProtectionDomain>();
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
CacheManager.java 27 import java.util.HashMap;
32 private static HashMap<String, BlobCache> sCacheMap =
33 new HashMap<String, BlobCache>();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryListInterfaceState.java 22 import java.util.HashMap;
40 private HashMap<String, State> mWordlistToState = new HashMap<>();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardCodesSet.java 21 import java.util.HashMap;
26 private static final HashMap<String, Integer> sNameToIdMap = new HashMap<>();
  /external/doclava/src/com/google/doclava/
PackageInfo.java 64 mAnnotationsMap = new HashMap<String, ClassInfo>();
65 mInterfacesMap = new HashMap<String, ClassInfo>();
66 mOrdinaryClassesMap = new HashMap<String, ClassInfo>();
67 mEnumsMap = new HashMap<String, ClassInfo>();
68 mExceptionsMap = new HashMap<String, ClassInfo>();
69 mErrorsMap = new HashMap<String, ClassInfo>();
300 private HashMap<String, ClassInfo> mAnnotationsMap;
301 private HashMap<String, ClassInfo> mInterfacesMap;
302 private HashMap<String, ClassInfo> mOrdinaryClassesMap;
303 private HashMap<String, ClassInfo> mEnumsMap
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
InstanceCounter.cpp 29 #include "wtf/HashMap.h"
81 HashMap<String, int> m_counterMap;
104 HashMap<String, int>::AddResult result = m_counterMap.add(instanceName, 1);
112 HashMap<String, int>::iterator it = m_counterMap.find(instanceName);
127 HashMap<String, int>::iterator it = m_counterMap.begin();
128 HashMap<String, int>::iterator itEnd = m_counterMap.end();
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ConcurrentHashMap.java 22 import java.util.HashMap;
30 * single-threaded</a>, it is essentially a {@link java.util.HashMap},
41 this.backingMap = new HashMap<K, V>();
45 this.backingMap = new HashMap<K, V>(initialCapacity);
49 this.backingMap = new HashMap<K, V>(initialCapacity, loadFactor);
53 this.backingMap = new HashMap<K, V>(t);
  /external/smack/src/org/xbill/DNS/
Mnemonic.java 5 import java.util.HashMap;
33 private HashMap strings;
34 private HashMap values;
52 strings = new HashMap();
53 values = new HashMap();

Completed in 1506 milliseconds

1 2 3 4 5 67 8 91011>>