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

<<41424344454647484950>>

  /frameworks/base/core/java/com/android/server/net/
NetlinkTracker.java 29 import java.util.HashMap;
276 private HashMap<InetAddress, DnsServerEntry> mIndex;
281 mIndex = new HashMap<InetAddress, DnsServerEntry>(NUM_SERVERS);
  /frameworks/base/graphics/java/android/graphics/
Color.java 22 import java.util.HashMap;
394 private static final HashMap<String, Integer> sColorNameMap;
397 sColorNameMap = new HashMap<String, Integer>();
  /frameworks/base/media/java/android/media/
ExifInterface.java 23 import java.util.HashMap;
107 private HashMap<String, String> mAttributes;
191 * mAttributes is a HashMap which stores the Exif attributes of the file.
203 mAttributes = new HashMap<String, String>();
MediaHTTPConnection.java 34 import java.util.HashMap;
106 HashMap<String, String> map = new HashMap<String, String>();
Metadata.java 25 import java.util.HashMap;
260 private final HashMap<Integer, Integer> mKeyToPosMap =
261 new HashMap<Integer, Integer>();
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
MtpClient.java 38 import java.util.HashMap;
59 private final HashMap<String, MtpDevice> mDevices = new HashMap<String, MtpDevice>();
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
BassBoostTest.java 38 import java.util.HashMap;
57 private static HashMap<Integer, BassBoost> sInstances = new HashMap<Integer, BassBoost>(10);
VirtualizerTest.java 38 import java.util.HashMap;
57 private static HashMap<Integer, Virtualizer> sInstances = new HashMap<Integer, Virtualizer>(10);
  /frameworks/base/packages/FusedLocation/src/com/android/location/fused/
FusionEngine.java 21 import java.util.HashMap;
63 private final HashMap<String, ProviderStats> mStats = new HashMap<String, ProviderStats>();
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 25 import java.util.HashMap;
47 private static HashMap<BorderKey, Bitmap> sBorderLines =
48 new HashMap<BorderKey, Bitmap>();
  /frameworks/base/services/core/java/com/android/server/
NetworkScoreService.java 42 import java.util.HashMap;
61 mScoreCaches = new HashMap<>();
87 Map<Integer, List<ScoredNetwork>> networksByType = new HashMap<>();
  /frameworks/base/services/core/java/com/android/server/am/
ContentProviderRecord.java 33 import java.util.HashMap;
49 HashMap<IBinder, ExternalProcessHandle> externalProcessTokenToHandle;
96 externalProcessTokenToHandle = new HashMap<IBinder, ExternalProcessHandle>();
  /frameworks/base/services/core/java/com/android/server/wm/
DisplaySettings.java 36 import java.util.HashMap;
46 private final HashMap<String, Entry> mEntries = new HashMap<String, Entry>();
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
HwTests.java 32 import java.util.HashMap;
82 Map<String, Boolean> entries = new HashMap<String, Boolean>();
139 Map<String, Object> temp = new HashMap<String, Object>();
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Renderable.java 21 import java.util.HashMap;
46 HashMap<String, ShaderParam> mSourceParams;
60 mSourceParams = new HashMap<String, ShaderParam>();
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
VectorDrawableTest.java 31 import java.util.HashMap;
81 Map<String, Boolean> entries = new HashMap<String, Boolean>();
138 Map<String, Object> temp = new HashMap<String, Object>();
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
LocationStatsAggregator.java 38 import java.util.HashMap;
120 HashMap<String,String> feature = new HashMap<String,String>();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
IconLoader.java 28 import java.util.HashMap;
48 private HashMap<Integer, Bitmap> mIconsCache = null;
74 mIconsCache = new HashMap<Integer, Bitmap>(50);
  /frameworks/volley/src/com/android/volley/toolbox/
HurlStack.java 38 import java.util.HashMap;
91 HashMap<String, String> map = new HashMap<String, String>();
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 20 import java.util.HashMap;
63 = new HashMap<HprofData.StackTrace, int[]>();
114 private final Map<Thread, Integer> threadIds = new HashMap<Thread, Integer>();
  /libcore/luni/src/main/java/java/nio/charset/
Charset.java 25 import java.util.HashMap;
156 private static final HashMap<String, Charset> CACHED_CHARSETS = new HashMap<String, Charset>();
  /libcore/luni/src/main/java/java/security/
Security.java 24 import java.util.HashMap;
234 HashMap<String, String> hm = new HashMap<String, String>();
  /libcore/luni/src/main/java/java/util/
HashMap.java 29 * HashMap is an implementation of {@link Map}. All optional operations are supported.
33 * <p>Note that the iteration order for HashMap is non-deterministic. If you want
36 * <p>Note: the implementation of {@code HashMap} is not synchronized.
53 public class HashMap<K, V> extends AbstractMap<K, V> implements Cloneable, Serializable {
55 * Min capacity (other than zero) for a HashMap. Must be a power of two
61 * Max capacity for a HashMap. Must be a power of two >= MINIMUM_CAPACITY.
122 * Constructs a new empty {@code HashMap} instance.
125 public HashMap() {
131 * Constructs a new {@code HashMap} instance with the specified capacity.
138 public HashMap(int capacity)
    [all...]
  /libcore/luni/src/main/java/libcore/net/
MimeUtils.java 23 import java.util.HashMap;
32 private static final Map<String, String> mimeTypeToExtensionMap = new HashMap<String, String>();
34 private static final Map<String, String> extensionToMimeTypeMap = new HashMap<String, String>();
  /libcore/luni/src/main/java/libcore/net/url/
JarURLConnectionImpl.java 32 import java.util.HashMap;
50 private static final HashMap<URL, JarFile> jarCache = new HashMap<URL, JarFile>();

Completed in 1513 milliseconds

<<41424344454647484950>>