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

1 2 3 4 5 6 7 891011>>

  /external/apache-http/src/org/apache/http/impl/client/
DefaultProxyAuthenticationHandler.java 34 import java.util.Map;
62 public Map<String, Header> getChallenges(
DefaultTargetAuthenticationHandler.java 34 import java.util.Map;
62 public Map<String, Header> getChallenges(
  /external/apache-http/src/org/apache/http/impl/cookie/
AbstractCookieSpec.java 36 import java.util.Map;
55 private final Map<String, CookieAttributeHandler> attribHandlerMap;
DateUtils.java 41 import java.util.Map;
217 private static final ThreadLocal<SoftReference<Map<String, SimpleDateFormat>>>
218 THREADLOCAL_FORMATS = new ThreadLocal<SoftReference<Map<String, SimpleDateFormat>>>() {
221 protected SoftReference<Map<String, SimpleDateFormat>> initialValue() {
222 return new SoftReference<Map<String, SimpleDateFormat>>(
241 SoftReference<Map<String, SimpleDateFormat>> ref = THREADLOCAL_FORMATS.get();
242 Map<String, SimpleDateFormat> formats = ref.get();
246 new SoftReference<Map<String, SimpleDateFormat>>(formats));
  /external/apache-http/src/org/apache/http/protocol/
BasicHttpContext.java 35 import java.util.Map;
49 private Map map = null; field in class:BasicHttpContext
65 if (this.map != null) {
66 obj = this.map.get(id);
78 if (this.map == null) {
79 this.map = new HashMap();
81 this.map.put(id, obj);
88 if (this.map != null) {
89 return this.map.remove(id)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingMap.java 25 import java.util.Map;
31 * A map which forwards all its method calls to another map. Subclasses should
32 * override one or more methods to modify the behavior of the backing map as
45 * the desired behavior for map implementations that use non-standard notions of
60 implements Map<K, V> {
66 @Override protected abstract Map<K, V> delegate();
109 public void putAll(Map<? extends K, ? extends V> map) {
110 delegate().putAll(map);
204 Map<K, V> map() { method in class:ForwardingMap.StandardKeySet
236 Map<K, V> map() { method in class:ForwardingMap.StandardValues
268 Map<K, V> map() { method in class:ForwardingMap.StandardEntrySet
    [all...]
ListMultimap.java 23 import java.util.Map;
33 * so explicitly, the map returned by {@link #asMap} has {@code List} values.
73 * <p>Though the method signature doesn't say so explicitly, the returned map
77 Map<K, Collection<V>> asMap();
SortedSetMultimap.java 23 import java.util.Map;
38 * returns a {@link Set} of map entries. Though the method signature doesn't say
39 * so explicitly, the map returned by {@link #asMap} has {@code SortedSet}
88 * Returns a map view that associates each key with the corresponding values
89 * in the multimap. Changes to the returned map, such as element removal, will
90 * update the underlying multimap. The map does not support {@code setValue()}
93 * <p>When passed a key that is present in the map, {@code
98 * <p>Though the method signature doesn't say so explicitly, the returned map
102 Map<K, Collection<V>> asMap();
  /external/guava/guava-gwt/src/com/google/common/collect/
RegularImmutableBiMap_CustomFieldSerializer.java 25 import java.util.Map;
40 Map<Object, Object> entries = new LinkedHashMap<Object, Object>();
43 * For this custom field serializer to be invoked, the map must have been
RegularImmutableMap_CustomFieldSerializer.java 25 import java.util.Map;
40 Map<Object, Object> entries = new LinkedHashMap<Object, Object>();
43 * For this custom field serializer to be invoked, the map must have been
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
BiMapGenerators.java 28 import java.util.Map;
29 import java.util.Map.Entry;
45 Map<String, Integer> map = Maps.newLinkedHashMap(); local
47 map.put(elements[i], i);
49 return ImmutableBiMap.copyOf(map).keySet();
56 Map<Integer, String> map = Maps.newLinkedHashMap(); local
58 map.put(i, elements[i]);
60 return ImmutableBiMap.copyOf(map).values()
72 Map<String, String> map = Maps.newLinkedHashMap(); local
84 Map<Integer, String> map = Maps.newLinkedHashMap(); local
95 Map<String, Integer> map = Maps.newLinkedHashMap(); local
111 Map<String, String> map = Maps.newLinkedHashMap(); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapsSortedTransformValuesTest.java 19 import java.util.Map;
50 Map<String, String> sortedMap = Maps.newTreeMap();
  /external/javassist/src/main/javassist/bytecode/
ConstantAttribute.java 19 import java.util.Map;
61 * given <code>Map</code> object.
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
LocalVariableTypeAttribute.java 20 import java.util.Map;
55 String renameEntry(String desc, Map classnames) {
SourceFileAttribute.java 20 import java.util.Map;
61 * given <code>Map</code> object.
67 public AttributeInfo copy(ConstPool newCp, Map classnames) {
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleStoreCountryCodeBox.java 4 import java.util.Map;
10 private static Map<String, String> countryCodes = new HashMap<String, String>();
  /external/nist-sip/java/gov/nist/core/
MultiValueMapImpl.java 31 import java.util.Map;
35 private HashMap<String, ArrayList<V>> map = new HashMap<String, ArrayList<V>>(); field in class:MultiValueMapImpl
45 ArrayList<V> keyList = map.get(key);
48 map.put(key, keyList);
56 Set pairs = map.entrySet();
63 Map.Entry keyValuePair = (Map.Entry) (pairsIterator.next());
72 Set pairs = map.entrySet();
75 Map.Entry keyValuePair = (Map.Entry) (pairsIterator.next())
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuthConsumer.java 21 import java.util.Map;
48 private final Map<String, Object> properties = new HashMap<String, Object>();
  /external/webkit/Source/WebCore/dom/
DocumentOrderedMap.h 61 typedef HashMap<AtomicStringImpl*, Element*> Map;
66 mutable Map m_map;
  /frameworks/base/core/java/android/app/
ApplicationLoaders.java 22 import java.util.Map;
68 private final Map<String, ClassLoader> mLoaders = new HashMap<String, ClassLoader>();
  /frameworks/base/core/java/android/webkit/
WebStorage.java 19 import java.util.Map;
140 * a map, of type {@code Map<String, WebStorage.Origin>}, from the string
143 public void getOrigins(ValueCallback<Map> callback) {
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmAnalyzer.java 35 import java.util.Map;
36 import java.util.Map.Entry;
88 Map<String, ClassReader> zipClasses = parseZip(mOsSourceJar);
92 Map<String, ClassReader> found = findIncludes(zipClasses);
93 Map<String, ClassReader> deps = findDeps(zipClasses, found);
102 * Parses a JAR file and returns a list of all classes founds using a map
105 Map<String,ClassReader> parseZip(List<String> jarPathList) throws IOException {
152 * This updates the in_out_found map.
154 Map<String, ClassReader> findIncludes(Map<String, ClassReader> zipClasses
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
MessageDigestTest.java 25 import java.util.Map;
78 private static final Map<String, Map<String, byte[]>> EXPECTATIONS
79 = new HashMap<String, Map<String, byte[]>>();
82 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm);
89 private static Map<String, byte[]> getExpectations(String algorithm) throws Exception {
91 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm);
198 for (Map.Entry<String, byte[]> expectation : getExpectations(algorithm).entrySet()) {
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockResolver.java 21 import java.util.Map;
32 private Map<String, InputSource> entities = new HashMap<String, InputSource>();
  /packages/apps/Email/src/org/apache/james/mime4j/field/
DelegatingFieldParser.java 19 import java.util.Map;
23 private Map<String, FieldParser> parsers = new HashMap<String, FieldParser>();

Completed in 453 milliseconds

1 2 3 4 5 6 7 891011>>