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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapEmailSettingsDataHolder.java 18 import java.util.HashMap;
21 public static HashMap<String, String> mCheckedChilds = new HashMap<String, String>();
  /cts/tests/tests/drm/src/android/drm/cts/
Config.java 19 import java.util.HashMap;
27 HashMap<String, String> getInfoOfRegistration();
28 HashMap<String, String> getInfoOfUnregistration();
29 HashMap<String, String> getInfoOfRightsAcquisition();
  /cts/tests/tests/drm/src/android/drm/cts/configs/
FwdLockConfig.java 19 import java.util.HashMap;
45 public HashMap<String, String> getInfoOfRegistration() {
48 public HashMap<String, String> getInfoOfUnregistration() {
51 public HashMap<String, String> getInfoOfRightsAcquisition(){
55 private static HashMap<String, String> sInfoOfRegistration = new HashMap<String, String>();
56 private static HashMap<String, String> sInfoOfUnregistration = new HashMap<String, String>();
57 private static HashMap<String, String> sInfoOfRightsAcquisition =
58 new HashMap<String, String>()
    [all...]
PassthruConfig.java 19 import java.util.HashMap;
44 public HashMap<String, String> getInfoOfRegistration() {
47 public HashMap<String, String> getInfoOfUnregistration() {
50 public HashMap<String, String> getInfoOfRightsAcquisition(){
54 private static HashMap<String, String> sInfoOfRegistration = new HashMap<String, String>();
55 private static HashMap<String, String> sInfoOfUnregistration = new HashMap<String, String>();
56 private static HashMap<String, String> sInfoOfRightsAcquisition = new HashMap<String, String>()
    [all...]
  /external/srec/shared/include/
HashMapImpl.h 31 * HashMap implementation.
38 HashMap Interface;
50 ESR_SHARED_API ESR_ReturnCode HashMap_Put(HashMap* self, const LCHAR* key, void* value);
54 ESR_SHARED_API ESR_ReturnCode HashMap_Remove(HashMap* self, const LCHAR* key);
58 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAndFree(HashMap* self, const LCHAR* key);
62 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAtIndex(HashMap* self, const size_t index);
66 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAll(HashMap* self);
70 ESR_SHARED_API ESR_ReturnCode HashMap_RemoveAndFreeAll(HashMap* self);
74 ESR_SHARED_API ESR_ReturnCode HashMap_ContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists);
78 ESR_SHARED_API ESR_ReturnCode HashMap_Get(HashMap* self, const LCHAR* key, void** value)
    [all...]
HashMap.h 2 * HashMap.h *
32 * @addtogroup HashMapModule HashMap API functions
47 * @param self HashMap handle
57 * @param self HashMap handle
66 * @param self HashMap handle
75 * @param self HashMap handle
84 * @param self HashMap handle
92 * @param self HashMap handle
100 * @param self HashMap handle
110 * @param self HashMap handl
    [all...]
  /art/test/031-class-attributes/src/
FancyClass.java 17 import java.util.HashMap;
20 public class FancyClass<K,V> extends HashMap<K,V> implements Map<K,V> {
  /frameworks/base/core/java/com/google/android/collect/
Maps.java 21 import java.util.HashMap;
28 * Creates a {@code HashMap} instance.
30 * @return a newly-created, initially-empty {@code HashMap}
32 public static <K, V> HashMap<K, V> newHashMap() {
33 return new HashMap<K, V>();
  /dalvik/dx/src/com/android/dx/io/instructions/
AddressMap.java 19 import java.util.HashMap;
27 private final HashMap<Integer,Integer> map;
33 map = new HashMap<Integer,Integer>();
  /developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 19 import java.util.HashMap;
25 private static HashMap<String, String> attributes = new HashMap();
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 19 import java.util.HashMap;
25 private static HashMap<String, String> attributes = new HashMap();
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
SampleGattAttributes.java 19 import java.util.HashMap;
25 private static HashMap<String, String> attributes = new HashMap();
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
AddressMap.java 20 import java.util.HashMap;
28 private final HashMap<Integer,Integer> map;
34 map = new HashMap<Integer,Integer>();
  /external/srec/shared/src/
HashMap.c 2 * HashMap.c *
20 #include "HashMap.h"
25 ESR_ReturnCode HashMapPut(HashMap* self, const LCHAR* key, void* value)
32 ESR_ReturnCode HashMapRemove(HashMap* self, const LCHAR* key)
39 ESR_ReturnCode HashMapRemoveAndFree(HashMap* self, const LCHAR* key)
46 ESR_ReturnCode HashMapRemoveAtIndex(HashMap* self, const size_t index)
53 ESR_ReturnCode HashMapRemoveAll(HashMap* self)
60 ESR_ReturnCode HashMapRemoveAndFreeAll(HashMap* self)
67 ESR_ReturnCode HashMapContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists)
74 ESR_ReturnCode HashMapGetSize(HashMap* self, size_t* size
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeysCache.java 21 import java.util.HashMap;
24 private final HashMap<Key, Key> mMap = new HashMap<>();
  /cts/common/util/src/com/android/compatibility/common/util/
KeyValueArgsParser.java 19 import java.util.HashMap;
22 * Parses an array of arguments into a HashMap.
30 public static HashMap<String, String> parse(String[] args) {
31 final HashMap<String, String> map = new HashMap<String, String>();
  /libcore/benchmarks/src/benchmarks/
VirtualVersusInterfaceBenchmark.java 24 import java.util.HashMap;
32 Map<String, String> map = new HashMap<String, String>();
38 HashMap<String, String> map = new HashMap<String, String>();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
WeakNodeMap.h 8 #include "wtf/HashMap.h"
32 typedef HashMap<Node*, int> NodeToValue;
34 typedef HashMap<int, Node*> ValueToNode;
  /external/smack/src/com/kenai/jbosh/
BodyParserResults.java 19 import java.util.HashMap;
34 new HashMap<BodyQName, String>();
  /packages/apps/Camera2/src/com/android/camera/app/
MemoryManager.java 19 import java.util.HashMap;
72 * @return HashMap containing memory metrics keyed by string labels
75 public HashMap queryMemory();
  /packages/apps/OMA-DM/engine/dmlib/tool-src/dmt_validate/com/mot/treetest/
Node.java 8 HashMap parameters = new HashMap();
  /libcore/luni/src/main/java/java/sql/
SQLClientInfoException.java 20 import java.util.HashMap;
51 this.failedProperties = new HashMap<String, ClientInfoStatus>(failedProperties);
70 this.failedProperties = new HashMap<String, ClientInfoStatus>(failedProperties);
87 this.failedProperties = new HashMap<String, ClientInfoStatus>(failedProperties);
108 this.failedProperties = new HashMap<String, ClientInfoStatus>(failedProperties);
131 this.failedProperties = new HashMap<String, ClientInfoStatus>(failedProperties);
158 this.failedProperties = new HashMap<String, ClientInfoStatus>(failedProperties);
177 this.failedProperties = new HashMap<String, ClientInfoStatus>(failedProperties);
200 this.failedProperties = new HashMap<String, ClientInfoStatus>(failedProperties);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
ProviderService_ImplTest.java 25 import java.util.HashMap;
46 HashMap hm = new HashMap();
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
MultiUserAvatarCache.java 21 import java.util.HashMap;
27 private final HashMap<Integer, Drawable> mCache;
30 mCache = new HashMap<Integer, Drawable>();
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
MotionStatsAggregator.java 20 import java.util.HashMap;
32 HashMap<String,String> m = new HashMap<String,String>();

Completed in 1130 milliseconds

1 2 3 4 5 6 7 8 91011>>