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

<<21222324252627282930>>

  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 5 import java.util.HashMap;
151 public static Map byteMap = new HashMap();
152 public static Map charMap = new HashMap();
153 public static Map doubleMap = new HashMap();
154 public static Map floatMap = new HashMap();
155 public static Map intMap = new HashMap();
156 public static Map longMap = new HashMap();
157 public static Map objectMap = new HashMap();
158 public static Map shortMap = new HashMap();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
TaskStack.java 28 import java.util.HashMap;
47 HashMap<Task.TaskKey, Integer> mTaskIndices = new HashMap<Task.TaskKey, Integer>();
186 HashMap<Integer, TaskGrouping> mAffinitiesGroups = new HashMap<Integer, TaskGrouping>();
344 HashMap<Task.TaskKey, Task> taskMap = new HashMap<Task.TaskKey, Task>();
409 HashMap<Task.TaskKey, Task> tasksMap = new HashMap<Task.TaskKey, Task>();
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
RenderTarget.java 30 import java.util.HashMap;
47 private static HashMap<Object, EGLSurface> mSurfaceSources = new HashMap<Object, EGLSurface>();
50 private static HashMap<Object, Integer> mRefCounts = new HashMap<Object, Integer>();
73 private static HashMap<EGLContext, ImageShader> mIdShaders
74 = new HashMap<EGLContext, ImageShader>();
76 private static HashMap<EGLContext, EGLSurface> mDisplaySurfaces
77 = new HashMap<EGLContext, EGLSurface>();
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmGenerator.java 28 import java.util.HashMap;
62 private final HashMap<String, String> mRenameClasses;
68 private HashMap<String, Set<String>> mDeleteReturns;
71 private final HashMap<String, Set<String>> mDelegateMethods;
74 private final HashMap<String, String> mRefactorClasses;
90 mDelegateMethods = new HashMap<String, Set<String>>();
116 mRenameClasses = new HashMap<String, String>();
130 mRefactorClasses = new HashMap<String, String>();
141 mDeleteReturns = new HashMap<String, Set<String>>();
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValue.java 28 import java.util.HashMap;
47 private static final HashMap<String, ObjectIdentifier> RFC1779_NAMES
48 = new HashMap<String, ObjectIdentifier>(10);
51 private static final HashMap<String, ObjectIdentifier> KNOWN_NAMES
52 = new HashMap<String, ObjectIdentifier>(30);
55 private static final HashMap<String, ObjectIdentifier> RFC2253_NAMES
56 = new HashMap<String, ObjectIdentifier>(10);
59 private static final HashMap<String, ObjectIdentifier> RFC2459_NAMES
60 = new HashMap<String, ObjectIdentifier>(10);
  /cts/tests/tests/drm/src/android/drm/cts/
DrmEventTest.java 19 import java.util.HashMap;
30 HashMap<String, Object> attributes = new HashMap<String, Object>(3);
146 boolean isInfo, int id, String msg, HashMap<String, Object> attributes) {
166 HashMap<String, Object> attributes, String key, boolean isInfo) throws Exception {
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
VideoProvider.java 33 import java.util.HashMap;
37 * This class loads videos from a backend and saves them into a HashMap
52 private static HashMap<String, List<Movie>> mMovieList;
94 public static HashMap<String, List<Movie>> getMovieList() {
98 public static HashMap<String, List<Movie>> buildMedia(Context ctx, String url)
103 mMovieList = new HashMap<String, List<Movie>>();
  /developers/demos/MusicDemo/src/main/java/com/example/android/musicservicedemo/model/
MusicProvider.java 35 import java.util.HashMap;
66 private final HashMap<String, List<MediaMetadata>> mMusicListByGenre;
67 private final HashMap<String, MediaMetadata> mMusicListById;
83 mMusicListByGenre = new HashMap<>();
84 mMusicListById = new HashMap<>();
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedGenerator.java 4 import java.util.HashMap;
67 private static final Map EC_ALGORITHMS = new HashMap();
90 protected Map digests = new HashMap();
101 Map param = new HashMap();
245 return new HashMap(digests);
  /external/chromium_org/components/cronet/android/sample/src/org/chromium/cronet_sample_apk/
CronetSampleActivity.java 32 import java.util.HashMap;
224 HashMap<String, String> headers = new HashMap<String, String>();
237 HashMap<String, String> headers = new HashMap<String, String>();
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashMapTest.cpp 28 #include "wtf/HashMap.h"
37 typedef WTF::HashMap<int, int> IntHashMap;
61 typedef HashMap<double, int64_t, DefaultHash<double>::Hash, TestDoubleHashTraits> DoubleHashMap;
104 typedef WTF::HashMap<int, OwnPtr<DestructCounter> > OwnPtrHashMap;
164 HashMap<RefPtr<DummyRefCounted>, int> map;
195 typedef HashMap<int, OwnPtr<SimpleClass> > IntSimpleMap;
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
GenericLoaderFactory.java 6 import java.util.HashMap;
15 new HashMap<Class, Map<Class, ModelLoaderFactory>>();
17 new HashMap<Class, Map<Class, ModelLoader>>();
70 resourceToFactories = new HashMap<Class, ModelLoaderFactory>();
132 resourceToLoaders = new HashMap<Class, ModelLoader>();
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
TestFragmentManager.java 17 import java.util.HashMap;
25 private Map<Integer, Fragment> fragmentsById = new HashMap<Integer, Fragment>();
26 private Map<String, Fragment> fragmentsByTag = new HashMap<String, Fragment>();
179 public HashMap<Integer, Fragment> getFragmentsById() {
180 return new HashMap<Integer, Fragment>(fragmentsById);
  /frameworks/base/core/java/android/gesture/
GestureStore.java 30 import java.util.HashMap;
82 private final HashMap<String, ArrayList<Gesture>> mNamedGestures =
83 new HashMap<String, ArrayList<Gesture>>();
234 final HashMap<String, ArrayList<Gesture>> maps = mNamedGestures;
308 final HashMap<String, ArrayList<Gesture>> namedGestures = mNamedGestures;
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardware.java 24 import java.util.HashMap;
164 private HashMap<GeofenceHardwareCallback, GeofenceHardwareCallbackWrapper>
165 mCallbacks = new HashMap<GeofenceHardwareCallback, GeofenceHardwareCallbackWrapper>();
166 private HashMap<GeofenceHardwareMonitorCallback, GeofenceHardwareMonitorCallbackWrapper>
167 mMonitorCallbacks = new HashMap<GeofenceHardwareMonitorCallback,
  /frameworks/base/core/java/android/util/
EventLog.java 27 import java.util.HashMap;
52 private static HashMap<String, Integer> sTagCodes = null;
53 private static HashMap<Integer, String> sTagNames = null;
232 sTagCodes = new HashMap<String, Integer>();
233 sTagNames = new HashMap<Integer, String>();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewFilterAlgorithm.java 24 import java.util.HashMap;
48 final HashMap<TaskView, TaskViewTransform> childViewTransforms =
49 new HashMap<TaskView, TaskViewTransform>();
100 HashMap<TaskView, TaskViewTransform> childViewTransformsOut) {
139 HashMap<TaskView, TaskViewTransform> childViewTransformsOut,
  /frameworks/native/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>();
  /frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
TransitionHelperKitkat.java 33 import java.util.HashMap;
84 final HashMap<View, Integer> mViewStartDelays = new HashMap<View, Integer>();
88 final HashMap<String, Integer> mClassStartDelays = new HashMap<String, Integer>();
  /frameworks/support/v4/java/android/support/v4/content/
LocalBroadcastManager.java 20 import java.util.HashMap;
84 private final HashMap<BroadcastReceiver, ArrayList<IntentFilter>> mReceivers
85 = new HashMap<BroadcastReceiver, ArrayList<IntentFilter>>();
86 private final HashMap<String, ArrayList<ReceiverRecord>> mActions
87 = new HashMap<String, ArrayList<ReceiverRecord>>();
  /frameworks/volley/src/com/android/volley/toolbox/
ImageLoader.java 31 import java.util.HashMap;
54 * HashMap of Cache keys -> BatchedImageRequest used to track in-flight requests so
57 private final HashMap<String, BatchedImageRequest> mInFlightRequests =
58 new HashMap<String, BatchedImageRequest>();
60 /** HashMap of the currently pending responses (waiting to be delivered). */
61 private final HashMap<String, BatchedImageRequest> mBatchedResponses =
62 new HashMap<String, BatchedImageRequest>();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
EnumTest.java 19 import java.util.HashMap;
220 HashMap<Color, Integer> enumColorMap = new HashMap<Color, Integer>();
249 HashMap<Color, Integer> enumColorMap = new HashMap<Color, Integer>();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
SAXParserFactoryTest.java 21 import java.util.HashMap;
47 static HashMap<String, String> ns;
51 static HashMap<String, String> attr;
58 ns = new HashMap<String, String>();
59 attr = new HashMap<String, String>();
  /libcore/luni/src/main/java/java/util/jar/
JarFile.java 26 import java.util.HashMap;
203 HashMap<String, byte[]> metaEntries = readMetaEntries(this, verify);
321 static HashMap<String, byte[]> readMetaEntries(ZipFile zipFile,
326 HashMap<String, byte[]> metaEntriesMap = new HashMap<String, byte[]>();
  /libcore/luni/src/test/java/libcore/xml/
SimpleParserTest.java 31 import java.util.HashMap;
64 namespaces1 = new HashMap<String, String>();
65 namespaces2 = new HashMap<String, String>();
68 attributes1 = new HashMap<String, String>();
69 attributes2 = new HashMap<String, String>();

Completed in 1623 milliseconds

<<21222324252627282930>>