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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
BracketObject.java 18 import java.util.HashMap;
21 public HashMap<String, String> map = new HashMap<>();
  /art/test/ImageLayoutA/
ImageLayoutA.java 17 import java.util.HashMap;
  /art/test/ImageLayoutB/
ImageLayoutB.java 17 import java.util.HashMap;
21 public static HashMap<String, String> map = new HashMap<String, String>();
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSettingsDataHolder.java 18 import java.util.HashMap;
21 public static HashMap<String, String> sCheckedChilds = new HashMap<String, String>();
  /frameworks/base/services/core/java/com/android/server/wm/
WindowHashMap.java 21 import java.util.HashMap;
24 * Subclass of HashMap such that we can instruct the compiler to boost our thread priority when
27 class WindowHashMap extends HashMap<IBinder, WindowState> {
  /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...]
  /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> {
  /libcore/benchmarks/src/benchmarks/
VirtualVersusInterfaceBenchmark.java 19 import java.util.HashMap;
28 Map<String, String> map = new HashMap<String, String>();
34 HashMap<String, String> map = new HashMap<String, String>();
  /development/tools/bugreport/src/com/android/bugreport/bugreport/
ProcessInfo.java 19 import java.util.HashMap;
38 public HashMap<Integer,ThreadInfo> threads = new HashMap<Integer,ThreadInfo>();
  /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>();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/ResultObjects/
ResultObject.java 21 import java.util.HashMap;
27 private HashMap<BaseResultsDialog.ResultType, Boolean> mResults;
34 public ResultObject(HashMap<BaseResultsDialog.ResultType, Boolean> results) {
53 public HashMap<AccuracyResultDialog.ResultType, Boolean> getResults() {
54 return new HashMap<>(mResults);
  /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/annotation-tools/scene-lib/src/annotations/toys/
SimplerAnnotation.java 12 Class<? super HashMap<String, String>> favoriteClass();
  /external/testng/src/test/java/test/thread/
Helper.java 3 import java.util.HashMap;
7 private static Map<String, Map<Long, Long>> m_maps = new HashMap<>();
15 //result = Collections.synchronizedMap(new HashMap<Long, Long>());
16 result = new HashMap<>();
26 m_maps = new HashMap<>();
  /test/suite_harness/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>();
  /external/libmojo/mojo/public/cpp/bindings/
map_traits_wtf_hash_map.h 10 #include "third_party/WebKit/Source/wtf/HashMap.h"
15 struct MapTraits<WTF::HashMap<K, V>> {
18 using Iterator = typename WTF::HashMap<K, V>::iterator;
19 using ConstIterator = typename WTF::HashMap<K, V>::const_iterator;
21 static bool IsNull(const WTF::HashMap<K, V>& input) {
22 // WTF::HashMap<> is always converted to non-null mojom map.
26 static void SetToNull(WTF::HashMap<K, V>* output) {
27 // WTF::HashMap<> doesn't support null state. Set it to empty instead.
31 static size_t GetSize(const WTF::HashMap<K, V>& input) {
35 static ConstIterator GetBegin(const WTF::HashMap<K, V>& input)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue171/
ClassWithGenericMap.java 19 import java.util.HashMap;
23 public final Map<String, Collection<Integer>> services = new HashMap<String, Collection<Integer>>();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/parser/
VersionTagsTupleTest.java 18 import java.util.HashMap;
27 VersionTagsTuple tuple = new VersionTagsTuple(Version.V1_1, new HashMap<String, String>());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
HumanGen2.java 18 import java.util.HashMap;
24 children = new HashMap<HumanGen2, String>();
  /frameworks/base/core/java/com/android/internal/os/
KernelWakelockStats.java 18 import java.util.HashMap;
23 public class KernelWakelockStats extends HashMap<String, KernelWakelockStats.Entry> {

Completed in 692 milliseconds

1 2 3 4 5 6 7 8 91011>>