HomeSort by relevance Sort by last modified time
    Searched refs:Map (Results 51 - 75 of 2018) sorted by null

1 23 4 5 6 7 8 91011>>

  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
AttrResourceValue.java 22 import java.util.Map;
33 private Map<String, Integer> mValueMap;
43 * @return the map of (name, integer) values. Can be null.
45 public Map<String, Integer> getAttributeValues() {
DeclareStyleableResourceValue.java 22 import java.util.Map;
38 private Map<String, AttrResourceValue> mAttrMap;
47 * @return the map of (name, integer) values.
49 public Map<String, Integer> getAttributeValues(String name) {
60 public Map<String, AttrResourceValue> getAllAttributes() {
  /development/apps/launchperf/src/com/android/launchperf/
EmptyActivity.java 22 import java.util.Map;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
CookieHandlerTest.java 24 import java.util.Map;
53 public Map get(URI uri, Map requestHeaders) throws IOException {
57 public void put(URI uri, Map responseHeaders) throws IOException {
  /external/clang/include/clang/Basic/
AddressSpaces.h 44 typedef unsigned Map[Count];
  /external/guava/guava/src/com/google/common/base/
Defaults.java 21 import java.util.Map;
31 private static final Map<Class<?>, Object> DEFAULTS;
34 Map<Class<?>, Object> map = new HashMap<Class<?>, Object>(); typedefs
35 put(map, boolean.class, false);
36 put(map, char.class, '\0');
37 put(map, byte.class, (byte) 0);
38 put(map, short.class, (short) 0);
39 put(map, int.class, 0);
40 put(map, long.class, 0L)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineLoopRanges.h 34 typedef IntervalMap<SlotIndex, unsigned, 4> Map;
35 typedef Map::Allocator Allocator;
41 /// Map intervals to a bit mask.
43 Map Intervals;
68 const Map &getMap() { return Intervals; }
  /external/guava/guava-tests/test/com/google/common/collect/
BiMapMapInterfaceTest.java 24 import java.util.Map;
25 import java.util.Map.Entry;
28 * Map interface tests for bimaps.
50 @Override protected Map<String, Integer> makeEmptyMap() {
54 @Override protected Map<String, Integer> makePopulatedMap() {
55 Map<String, Integer> map = makeEmptyMap(); local
56 map.put("foo", 1);
57 map.put("bar", 2);
58 return map;
    [all...]
MultimapsFilterEntriesAsMapTest.java 23 import java.util.Map;
24 import java.util.Map.Entry;
34 private static final Predicate<Map.Entry<String, Integer>> PREDICATE
35 = new Predicate<Map.Entry<String, Integer>>() {
53 @Override protected Map<String, Collection<Integer>> makeEmptyMap() {
58 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
MapsTransformValuesTest.java 21 import java.util.Map;
57 protected Map<String, String> makeEmptyMap() {
63 protected Map<String, String> makePopulatedMap() {
64 Map<String, Integer> underlying = Maps.newHashMap();
82 private void assertMapsEqual(Map<?, ?> expected, Map<?, ?> map) {
83 assertEquals(expected, map);
84 assertEquals(expected.hashCode(), map.hashCode());
85 assertEquals(expected.entrySet(), map.entrySet())
97 Map<String, String> map = Maps.transformValues( local
99 assertMapsEqual(Maps.newHashMap(), map); local
103 Map<String, String> map = Maps.transformValues( local
112 Map<String, Integer> map = Maps.transformValues( local
118 Map<String, String> map = Maps.transformValues( local
142 Map<String, String> map local
153 Map<String, Boolean> map = Maps.transformValues(underlying, local
176 Map<String, String> map local
201 Map<String, String> map local
251 Map<String, Integer> map = Maps.transformValues( local
272 Map<String, Boolean> map = Maps.transformValues( local
    [all...]
  /sdk/ddms/app/src/com/android/ddms/
DebugPortProvider.java 25 import java.util.Map;
44 private Map<String, Map<String, Integer>> mMap;
67 Map<String, Integer> deviceMap = mMap.get(device.getSerialNumber());
79 * Returns the map of Static debugger ports. The map links device serial numbers to
80 * a map linking application name to debugger ports.
82 public Map<String, Map<String, Integer>> getPortList() {
87 * Create the map member from the values contained in the Preference Store
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/
DebugPortProvider.java 26 import java.util.Map;
45 private Map<String, Map<String, Integer>> mMap;
68 Map<String, Integer> deviceMap = mMap.get(device.getSerialNumber());
80 * Returns the map of Static debugger ports. The map links device serial numbers to
81 * a map linking application name to debugger ports.
83 public Map<String, Map<String, Integer>> getPortList() {
88 * Create the map member from the values contained in the Preference Store
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ClassToInstanceMap.java 21 import java.util.Map;
26 * A map, each entry of which maps a Java
28 * In addition to implementing {@code Map}, the additional type-safe operations
31 * <p>Like any other {@code Map<Class, Object>}, this map may contain entries
33 * may map to different values.
42 public interface ClassToInstanceMap<B> extends Map<Class<? extends B>, B> {
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ConcurrentMap.java 19 import java.util.Map;
22 * Minimal GWT emulation of a map providing atomic operations.
26 public interface ConcurrentMap<K, V> extends Map<K, V> {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapHashCodeTester.java 27 import java.util.Map;
30 * Tests {@link java.util.Map#hashCode}.
40 for (Map.Entry<K, V> entry : getSampleEntries()) {
44 "A Map's hashCode() should be the sum of those of its entries.",
51 Map.Entry<K, V> entryWithNull = entry(null, samples.e3.getValue());
58 Map.Entry<K, V> entryWithNull = entry(samples.e3.getKey(), null);
62 private void runEntryWithNullTest(Map.Entry<K, V> entryWithNull) {
63 Collection<Map.Entry<K, V>> entries = getSampleEntries(getNumEntries() - 1);
68 for (Map.Entry<K, V> entry : entries) {
74 "A Map's hashCode() should be the sum of those of its entries (where
    [all...]
  /external/javassist/src/main/javassist/bytecode/
DeprecatedAttribute.java 20 import java.util.Map;
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
SyntheticAttribute.java 20 import java.util.Map;
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
  /external/javassist/src/main/javassist/scopedpool/
ScopedClassPoolRepository.java 18 import java.util.Map;
83 Map getRegisteredCLs();
  /frameworks/base/test-runner/src/android/test/
SimpleCache.java 20 import java.util.Map;
23 private Map<K, V> map = new HashMap<K, V>(); field in class:SimpleCache
28 if (map.containsKey(key)) {
29 return map.get(key);
32 map.put(key, value);
  /frameworks/support/volley/src/com/android/volley/toolbox/
HttpStack.java 25 import java.util.Map;
42 public HttpResponse performRequest(Request<?> request, Map<String, String> additionalHeaders)
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentMap.java 8 import java.util.Map;
15 * A {@link java.util.Map} providing additional atomic
27 * @param <K> the type of keys maintained by this map
30 public interface ConcurrentMap<K, V> extends Map<K, V> {
36 * if (!map.containsKey(key))
37 * return map.put(key, value);
39 * return map.get(key);}</pre>
47 * (A <tt>null</tt> return can also indicate that the map
51 * is not supported by this map
53 * prevents it from being stored in this map
    [all...]
  /external/clang/include/clang/AST/
DeclLookups.h 72 if (StoredDeclsMap *Map = Primary->buildLookup())
73 return all_lookups_iterator(Map->begin(), Map->end());
81 if (StoredDeclsMap *Map = Primary->buildLookup())
82 return all_lookups_iterator(Map->end(), Map->end());
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestStringMapGenerator.java 20 import java.util.Map;
21 import java.util.Map.Entry;
37 public SampleElements<Map.Entry<String, String>> samples() {
38 return new SampleElements<Map.Entry<String, String>>(
48 public final Map<String, String> create(Object... entries) {
60 protected abstract Map<String, String> create(
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectResources.java 37 import java.util.Map;
38 import java.util.Map.Entry;
57 /** Map of (name, id) for resources of type {@link ResourceType#ID} coming from R.java */
58 private Map<ResourceType, Map<String, Integer>> mResourceValueMap;
59 /** Map of (id, [name, resType]) for all resources coming from R.java */
60 private Map<Integer, Pair<ResourceType, String>> mResIdValueToNameMap;
61 /** Map of (int[], name) for styleable resources coming from R.java */
62 private Map<IntArrayWrapper, String> mStyleableValueToNameMap;
82 * @return a map with guaranteed to contain an entry for each {@link ResourceType
208 Map<String, Integer> map = mResourceValueMap.get(type); local
    [all...]
  /libcore/luni/src/main/java/java/util/
AbstractMap.java 23 * A base class for {@code Map} implementations.
35 public abstract class AbstractMap<K, V> implements Map<K, V> {
49 implements Map.Entry<K, V>, Serializable {
63 public SimpleImmutableEntry(Map.Entry<? extends K, ? extends V> copyFrom) {
88 if (object instanceof Map.Entry) {
89 Map.Entry<?, ?> entry = (Map.Entry<?, ?>) object;
114 implements Map.Entry<K, V>, Serializable {
128 public SimpleEntry(Map.Entry<? extends K, ? extends V> copyFrom) {
151 if (object instanceof Map.Entry)
247 Map<?, ?> map = (Map<?, ?>) object; local
    [all...]

Completed in 594 milliseconds

1 23 4 5 6 7 8 91011>>