Searched refs:Map (Results 1 - 25 of 454) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/core/
H A DMultiMap.java19 import java.util.Map;
22 * This is simply a Map with slightly different semantics.
33 public interface MultiMap extends Map {
H A DMultiValueMap.java5 import java.util.Map;
7 public interface MultiValueMap<K,V> extends Map<K,List<V>>, Serializable {
/external/proguard/src/proguard/obfuscate/
H A DMapCleaner.java27 import java.util.Map;
38 private final Map map;
45 public MapCleaner(Map map)
/external/guava/src/com/google/common/collect/
H A DMapDifference.java21 import java.util.Map;
43 Map<K, V> entriesOnlyOnLeft();
49 Map<K, V> entriesOnlyOnRight();
55 Map<K, V> entriesInCommon();
61 Map<K, ValueDifference<V>> entriesDiffering();
H A DBiMap.java21 import java.util.Map;
36 public interface BiMap<K, V> extends Map<K, V> {
79 void putAll(Map<? extends K, ? extends V> map);
87 * instead of the {@link java.util.Collection} specified in the {@link Map}
H A DClassToInstanceMap.java21 import java.util.Map;
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
42 public interface ClassToInstanceMap<B> extends Map<Class<? extends B>, B> {
H A DForwardingMapEntry.java21 import java.util.Map;
37 extends ForwardingObject implements Map.Entry<K, V> {
39 @Override protected abstract Map.Entry<K, V> delegate();
H A DSetMultimap.java22 import java.util.Map;
77 Set<Map.Entry<K, V>> entries();
85 Map<K, Collection<V>> asMap();
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAddressParameters.java3 import java.util.Map;
4 import java.util.Map.Entry;
27 public abstract Map<String,Entry<String,String>> getParameters();
/external/llvm/include/llvm/ADT/
H A DUniqueVector.h26 // Map - Used to handle the correspondence of entry to ID.
27 std::map<T, unsigned> Map; member in class:llvm::UniqueVector
38 unsigned &Val = Map[Entry];
55 typename std::map<T, unsigned>::const_iterator MI = Map.find(Entry);
58 if (MI != Map.end()) return MI->second;
82 Map.clear();
H A DValueMap.h83 MapT Map; member in class:llvm::ValueMap
93 : Map(NumInitBuckets), Data() {}
95 : Map(NumInitBuckets), Data(Data) {}
101 inline iterator begin() { return iterator(Map.begin()); }
102 inline iterator end() { return iterator(Map.end()); }
103 inline const_iterator begin() const { return const_iterator(Map.begin()); }
104 inline const_iterator end() const { return const_iterator(Map.end()); }
106 bool empty() const { return Map.empty(); }
107 unsigned size() const { return Map.size(); }
110 void resize(size_t Size) { Map
200 ValueMapT *Map; member in class:llvm::ValueMapCallbackVH
202 ValueMapCallbackVH(KeyT Key, ValueMapT *Map) argument
[all...]
/external/llvm/lib/Analysis/
H A DLibCallSemantics.cpp45 StringMap<const LibCallFunctionInfo*> *Map = getMap(Impl);
49 if (Map == 0) {
50 Impl = Map = new StringMap<const LibCallFunctionInfo*>();
57 (*Map)[Array[i].Name] = Array+i;
61 return Map->lookup(F->getName());
/external/antlr/src/org/antlr/runtime/misc/
H A DDoubleKeyMap.java10 Map<Key1, Map<Key2, Value>> data = new LinkedHashMap<Key1, Map<Key2, Value>>();
13 Map<Key2, Value> data2 = data.get(k1);
27 Map<Key2, Value> data2 = data.get(k1);
32 public Map<Key2, Value> get(Key1 k1) { return data.get(k1); }
36 Map<Key2, Value> data2 = data.get(k1);
48 Map<Key2, Value> data2 = data.get(k1);
55 for (Map<Key2, Value> k2 : data.values()) {
/external/llvm/lib/CodeGen/
H A DMachineModuleInfoImpls.cpp38 MachineModuleInfoImpl::StubValueTy>&Map) {
39 MachineModuleInfoImpl::SymbolListTy List(Map.begin(), Map.end());
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DCookieHandlerTest.java24 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/
H A DAddressSpaces.h38 typedef unsigned Map[Count]; typedef in namespace:clang::LangAS
/external/javassist/src/main/javassist/bytecode/
H A DDeprecatedAttribute.java20 import java.util.Map;
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
H A DSyntheticAttribute.java20 import java.util.Map;
52 public AttributeInfo copy(ConstPool newCp, Map classnames) {
/external/javassist/src/main/javassist/scopedpool/
H A DScopedClassPoolRepository.java18 import java.util.Map;
83 Map getRegisteredCLs();
/external/clang/lib/Index/
H A DDeclReferenceMap.cpp1 //===--- DeclReferenceMap.cpp - Map Decls to their references -------------===//
24 DeclReferenceMap::MapTy &Map; member in class:__anon2895::RefMapper
27 RefMapper(DeclReferenceMap::MapTy &map) : Map(map) { }
45 Map.insert(std::make_pair(PrimD, ASTLocation(CurrentDecl, Node)));
50 Map.insert(std::make_pair(PrimD, ASTLocation(CurrentDecl, Node)));
54 Map.insert(std::make_pair(Node->getDecl(), ASTLocation(CurrentDecl, Node)));
59 Map.insert(std::make_pair(ND, ASTLocation(CurrentDecl, ND, TL.getNameLoc())));
64 Map.insert(std::make_pair(ND, ASTLocation(CurrentDecl, ND, TL.getNameLoc())));
72 RefMapper(Map).Visit(Ctx.getTranslationUnitDecl());
78 return astlocation_iterator(Map
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_MapTest2.java20 import java.util.Map;
25 Map<String, String> map;
27 public Support_MapTest2(Map<String, String> m) {
31 fail("Map must be empty");
/external/apache-http/src/org/apache/http/client/
H A DAuthenticationHandler.java34 import java.util.Map;
52 Map<String, Header> getChallenges(
57 Map<String, Header> challenges,
56 selectScheme( Map<String, Header> challenges, HttpResponse response, HttpContext context) argument
/external/chromium/chrome/browser/extensions/
H A Dextension_info_map.h72 // Map of extension info by extension id.
73 typedef std::map<std::string, scoped_refptr<const Extension> > Map; typedef in class:ExtensionInfoMap
75 Map extension_info_;
76 Map disabled_extension_info_;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Depsnormalize.h54 Map(ifst, &gfst, ToGallicMapper<Arc, STRING_RIGHT_RESTRICT>());
56 Map(InvertFst<Arc>(ifst), &gfst,
63 Map(fwfst, ofst, FromGallicMapper<Arc, STRING_RIGHT_RESTRICT>());
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandlerRegistry.java34 import java.util.Map;
67 public void setHandlers(final Map map) {

Completed in 462 milliseconds

1234567891011>>