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

<<11121314151617181920>>

  /packages/apps/Contacts/tests/src/com/android/contacts/util/
NameConverterTests.java 25 import java.util.Map;
34 Map<String, String> structuredName = new HashMap<String, String>();
72 Map<String, String> structuredName = NameConverter.displayNameToStructuredName(mContext,
83 * Checks that the given field and value are present in the structured name map (or not present
85 * the map - once all components of the name are checked, the map should be empty.
88 * @param structuredName The map of structured field names to values.
91 Map<String, String> structuredName) {
  /packages/apps/Music/tests/src/com/android/music/
MusicPlayerLaunchPerformance.java 23 import java.util.Map;
  /packages/apps/Settings/tests/src/com/android/settings/tests/
SettingsLaunchPerformance.java 23 import java.util.Map;
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ExecutableMemberProjection.java 29 import java.util.Map;
35 private final Map<ITypeVariableDefinition, ITypeReference> mappings;
38 Map<ITypeVariableDefinition, ITypeReference> mappings) {
ParameterizedTypeProjection.java 26 import java.util.Map;
32 private final Map<ITypeVariableDefinition, ITypeReference> mappings;
35 Map<ITypeVariableDefinition, ITypeReference> mappings) {
  /cts/tools/signature-tools/src/signature/io/html/
ApiOverviewPage.java 28 import java.util.Map;
37 private Map<String, String> commonInfos;
40 Map<String, String> commonInfos) {
PackageOverviewPage.java 24 import java.util.Map;
39 private final Map<String, String> commonInfos;
43 Map<String, String> commonInfos) {
  /dalvik/dx/src/com/android/dx/dex/file/
MemberIdsSection.java 21 import java.util.Map;
59 Map<String, AtomicInteger> membersByPackage = new TreeMap<String, AtomicInteger>();
74 for (Map.Entry<String, AtomicInteger> entry : membersByPackage.entrySet()) {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 29 import java.util.Map;
73 /** An array[size num rules] of Map<Integer,Integer> that tracks
80 public Map[] ruleMemo;
134 this.ruleMemo = new Map[state.ruleMemo.length];
  /external/apache-harmony/auth/src/test/java/common/tests/api/javax/security/auth/x500/
X500PrincipalTest.java 21 import java.util.Map;
39 * @tests javax.security.auth.x500.X500Principal#X500Principal(java.lang.String, java.util.Map)
42 Map<String, String> keyword = new HashMap<String, String>();
65 * @tests javax.security.auth.x500.X500Principal#getName(java.lang.String, java.util.Map)
68 Map<String, String> keyword = new HashMap<String, String>();
  /external/apache-http/src/org/apache/http/auth/
AuthSchemeRegistry.java 37 import java.util.Map;
53 private final Map<String,AuthSchemeFactory> registeredSchemes;
137 * with the content of the map passed as a parameter.
139 * @param map authentication schemes
141 public synchronized void setItems(final Map<String, AuthSchemeFactory> map) {
142 if (map == null) {
146 registeredSchemes.putAll(map);
  /external/apache-http/src/org/apache/http/conn/params/
ConnPerRouteBean.java 34 import java.util.Map;
39 * This class maintains a map of HTTP routes to maximum number of connections allowed
55 private final Map<HttpRoute, Integer> maxPerHostMap;
106 public void setMaxForRoutes(final Map<HttpRoute, Integer> map) {
107 if (map == null) {
111 this.maxPerHostMap.putAll(map);
  /external/apache-http/src/org/apache/http/conn/scheme/
SchemeRegistry.java 36 import java.util.Map;
55 private final Map<String,Scheme> registeredSchemes;
174 * with the content of the map passed as a parameter.
176 * @param map protocol schemes
178 public synchronized void setItems(final Map<String, Scheme> map) {
179 if (map == null) {
183 registeredSchemes.putAll(map);
  /external/apache-http/src/org/apache/http/cookie/
CookieSpecRegistry.java 38 import java.util.Map;
54 private final Map<String,CookieSpecFactory> registeredSpecs;
148 * specs} with the content of the map passed as a parameter.
150 * @param map cookie specs
152 public synchronized void setItems(final Map<String, CookieSpecFactory> map) {
153 if (map == null) {
157 registeredSpecs.putAll(map);
  /external/apache-http/src/org/apache/http/impl/auth/
RFC2617Scheme.java 35 import java.util.Map;
54 * Authentication parameter map.
56 private Map<String, String> params;
82 * Returns authentication parameters map. Keys in the map are lower-cased.
84 * @return the map of authentication parameters
86 protected Map<String, String> getParameters() {
  /external/clang/include/clang/Lex/
DirectoryLookup.h 44 /// Map - This is the HeaderMap if this is a headermap lookup.
46 const HeaderMap *Map;
61 /// \brief Whether this is a header map used when building a framework.
76 /// 'map'.
77 DirectoryLookup(const HeaderMap *map, SrcMgr::CharacteristicKind DT,
81 u.Map = map;
104 const HeaderMap *getHeaderMap() const { return isHeaderMap() ? u.Map : 0; }
106 /// isNormalDir - Return true if this is a normal directory, not a header map.
113 /// isHeaderMap - Return true if this is a header map, not a normal directory
    [all...]
  /external/guava/guava/src/com/google/common/collect/
AbstractListMultimap.java 23 import java.util.Map;
40 * Creates a new multimap that uses the provided map.
42 * @param map place to store the mapping from each key to its corresponding
45 protected AbstractListMultimap(Map<K, Collection<V>> map) {
46 super(map);
101 * <p>Though the method signature doesn't say so explicitly, the returned map
104 @Override public Map<K, Collection<V>> asMap() {
AbstractSortedSetMultimap.java 22 import java.util.Map;
39 * Creates a new multimap that uses the provided map.
41 * @param map place to store the mapping from each key to its corresponding
44 protected AbstractSortedSetMultimap(Map<K, Collection<V>> map) {
45 super(map);
96 * Returns a map view that associates each key with the corresponding values
97 * in the multimap. Changes to the returned map, such as element removal, will
98 * update the underlying multimap. The map does not support {@code setValue}
101 * <p>When passed a key that is present in the map, {@cod
    [all...]
Multimap.java 22 import java.util.Map;
28 * A collection similar to a {@code Map}, but which may associate multiple
219 * @return collection of map entries consisting of key-value pairs
221 Collection<Map.Entry<K, V>> entries();
224 * Returns a map view that associates each key with the corresponding values
225 * in the multimap. Changes to the returned map, such as element removal, will
226 * update the underlying multimap. The map does not support {@code setValue()}
229 * <p>When passed a key that is present in the map, {@code
234 * @return a map view from a key to its collection of values
236 Map<K, Collection<V>> asMap()
    [all...]
MutableClassToInstanceMap.java 23 import java.util.Map;
26 * A mutable class-to-instance map backed by an arbitrary user-provided map.
47 * empty {@code backingMap}. The caller surrenders control of the backing map,
51 Map<Class<? extends B>, B> backingMap) {
55 private MutableClassToInstanceMap(Map<Class<? extends B>, B> delegate) {
RegularImmutableMultiset.java 22 import java.util.Map;
36 private final transient ImmutableMap<E, Integer> map; field in class:RegularImmutableMultiset
39 RegularImmutableMultiset(ImmutableMap<E, Integer> map, int size) {
40 this.map = map;
46 return map.isPartialView();
51 Integer value = map.get(element);
62 return map.containsKey(element);
67 return map.keySet();
72 final Iterator<Map.Entry<E, Integer>> mapIterator
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForMapsInJavaUtil.java 34 import java.util.Map;
35 import java.util.Map.Entry;
40 * Generates a test suite covering the {@link Map} implementations in the
88 @Override protected Map<String, String> create(
104 @Override protected Map<String, String> create(
122 @Override protected Map<String, String> create(
148 @Override protected Map<String, String> create(
167 @Override protected Map<String, String> create(
187 @Override protected Map<AnEnum, String> create(
207 @Override protected Map<String, String> create
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
NewCustomTableTest.java 24 import java.util.Map;
44 Map<String, Map<Integer, Character>> backingMap
SubMapMultimapAsMapImplementsMapTest.java 24 import java.util.Map;
49 @Override protected Map<String, Collection<Integer>> makeEmptyMap() {
53 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
  /external/oauth/core/src/main/java/net/oauth/
OAuthAccessor.java 24 import java.util.Map;
50 private final Map<String, Object> properties = new HashMap<String, Object>();
72 Collection<? extends Map.Entry> parameters)

Completed in 478 milliseconds

<<11121314151617181920>>