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

1 2 3 4 5 6 7 8 91011>>

  /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>();
  /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> {
  /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>();
  /external/cldr/tools/java/org/unicode/cldr/tool/
IdToPath.java 3 import java.util.HashMap;
10 static final HashMap<String, String> map = new HashMap<String, String>();
    [all...]
  /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();
  /art/test/687-deopt/src/
Main.java 17 import java.util.HashMap;
23 // Jit compile HashMap.hash method, so that instrumentation stubs
25 ensureJitCompiled(HashMap.class, "hash");
29 HashMap<Main, Integer> map = new HashMap<>();
40 // HashMap.put
41 // HashMap.hash
44 // The opcode at HashMap.hash is invoke-virtual-quick which the
  /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<>();
  /external/libchrome/mojo/public/cpp/bindings/
map_traits_wtf_hash_map.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) {
38 static Iterator GetBegin(WTF::HashMap<K, V>& input) { return input.begin();
    [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>();
  /external/robolectric-shadows/resources/src/test/java/org/robolectric/manifest/
ActivityDataTest.java 6 import java.util.HashMap;
16 HashMap<String, String> attrs = new HashMap<>();
26 HashMap<String, String> attrs = new HashMap<>();
  /external/antlr/runtime/ObjC/Framework/
HashMap.h 2 // HashMap.h
43 @class HashMap;
46 * HashMap entry.
67 - (void) recordAccess:(HashMap *)m;
68 - (void) recordRemoval:(HashMap *)m;
76 HashMap *hm;
79 + (HashIterator *) newIterator:(HashMap *)aHM;
81 - (id) init:(HashMap *)aHM;
91 + (HMEntryIterator *)newIterator:(HashMap *)aHM;
93 - (id) init:(HashMap *)aHM
    [all...]
  /art/test/004-InterfaceTest/src/
Main.java 18 import java.util.HashMap;
22 public static long test_virtual(HashMap map) {
45 HashMap hashmap = new HashMap(); local
46 long elapsed = test_virtual(hashmap);
48 hashmap.clear();
50 elapsed = test_interface(hashmap);
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/collection/
IsMapContainingKeyTest.java 6 import java.util.HashMap;
21 Map<String,Integer> map = new HashMap<String, Integer>();
28 Map<String,Integer> map = new HashMap<String, Integer>();
40 // Map map = new HashMap();
50 Map<Integer, String> map = new HashMap<Integer, String>();
58 Map<Number, String> map = new HashMap<Number, String>();
73 assertMismatchDescription("map was []", hasKey("Foo"), new HashMap<String,Integer>());
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
EdslTest.java 25 import java.util.HashMap;
68 filter("*.html").through(DummyFilterImpl.class, new HashMap<String, String>());
72 .through(DummyFilterImpl.class, new HashMap<String, String>());
76 .through(Key.get(DummyFilterImpl.class), new HashMap<String, String>());
80 .through(new DummyFilterImpl(), new HashMap<String, String>());
85 serve("/4/*").with(DummyServlet.class, new HashMap<String, String>());
88 serve("*.html").with(Key.get(DummyServlet.class), new HashMap<String, String>());
91 serveRegex("/person/[0-9]*").with(DummyServlet.class, new HashMap<String, String>());
95 .with(Key.get(DummyServlet.class), new HashMap<String, String>());
98 serveRegex("/person/[0-9]/3/*").with(new DummyServlet(), new HashMap<String, String>())
    [all...]
  /cts/tests/leanbackjank/app/src/android/leanbackjank/app/data/
VideoProvider.java 22 import java.util.HashMap;
29 private static HashMap<String, List<Movie>> sMovieList;
30 private static HashMap<String, Movie> sMovieListById;
36 public static HashMap<String, List<Movie>> getMovieList() {
40 public static HashMap<String, List<Movie>> buildMedia(int nCategories) {
44 sMovieList = new HashMap<>();
45 sMovieListById = new HashMap<>();

Completed in 2377 milliseconds

1 2 3 4 5 6 7 8 91011>>