Searched defs:Map (Results 1 - 25 of 91) sorted by relevance

1234

/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/chromium/chrome/browser/prefs/
H A Dpref_value_map.h66 typedef std::map<std::string, Value*> Map; typedef in class:PrefValueMap
68 Map prefs_;
/external/openfst/src/script/
H A Dmap.cc24 FstClass *Map(const FstClass& ifst, MapType map_type, function in namespace:fst::script
29 Apply<Operation<MapArgs> >("Map", ifst.ArcType(), &args_with_retval);
34 REGISTER_FST_OPERATION(Map, StdArc, MapArgs);
35 REGISTER_FST_OPERATION(Map, LogArc, MapArgs);
36 REGISTER_FST_OPERATION(Map, Log64Arc, MapArgs);
/external/webkit/Source/WebCore/dom/
H A DDocumentOrderedMap.h61 typedef HashMap<AtomicStringImpl*, Element*> Map; typedef in class:WebCore::DocumentOrderedMap
66 mutable Map m_map;
/external/apache-http/src/org/apache/http/auth/
H A DAuthSchemeRegistry.java37 import java.util.Map;
53 private final Map<String,AuthSchemeFactory> registeredSchemes;
141 public synchronized void setItems(final Map<String, AuthSchemeFactory> map) { argument
/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/apache-http/src/org/apache/http/impl/client/
H A DAbstractAuthenticationHandler.java38 import java.util.Map;
72 protected Map<String, Header> parseChallenges(
75 Map<String, Header> map = new HashMap<String, Header>(headers.length);
110 final Map<String, Header> challenges,
109 selectScheme( final Map<String, Header> challenges, final HttpResponse response, final HttpContext context) argument
/external/clang/include/clang/Basic/
H A DAddressSpaces.h38 typedef unsigned Map[Count]; typedef in namespace:clang::LangAS
/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();
/external/apache-http/src/org/apache/http/conn/params/
H A DConnPerRouteBean.java34 import java.util.Map;
55 private final Map<HttpRoute, Integer> maxPerHostMap;
106 public void setMaxForRoutes(final Map<HttpRoute, Integer> map) { argument
/external/apache-http/src/org/apache/http/conn/scheme/
H A DSchemeRegistry.java36 import java.util.Map;
55 private final Map<String,Scheme> registeredSchemes;
178 public synchronized void setItems(final Map<String, Scheme> map) { argument
/external/apache-http/src/org/apache/http/cookie/
H A DCookieSpecRegistry.java38 import java.util.Map;
54 private final Map<String,CookieSpecFactory> registeredSpecs;
152 public synchronized void setItems(final Map<String, CookieSpecFactory> map) { argument
/external/clang/lib/Serialization/
H A DModule.cpp59 const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) {
60 if (Map.begin() == Map.end())
65 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
58 dumpLocalRemap(StringRef Name, const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestMapEntrySetGenerator.java20 import java.util.Map;
31 implements TestSetGenerator<Map.Entry<K, V>> {
42 public SampleElements<Map.Entry<K, V>> samples() {
47 public Set<Map.Entry<K, V>> create(Object... elements) {
48 Map.Entry<K, V>[] entries = createArray(elements.length);
53 public abstract Set<Map.Entry<K, V>> createFromEntries( argument
54 Map.Entry<K, V>[] entries);
58 public Map.Entry<K, V>[] createArray(int length) {
59 return new Map.Entry[length];
64 public List<Map
[all...]
/external/llvm/include/llvm/CodeGen/
H A DMachineLoopRanges.h34 typedef IntervalMap<SlotIndex, unsigned, 4> Map; typedef in class:llvm::MachineLoopRange
35 typedef Map::Allocator Allocator;
41 /// Map intervals to a bit mask.
43 Map Intervals;
68 const Map &getMap() { return Intervals; }
/external/v8/src/
H A Dcollection.js31 var $Map = global.Map;
90 return new $Map();
98 ['Map.prototype.get', this]);
110 ['Map.prototype.set', this]);
122 ['Map.prototype.has', this]);
134 ['Map.prototype.delete', this]);
214 // Set up the Set and Map constructor function.
216 %SetCode($Map, MapConstructor);
218 // Set up the constructor property on the Set and Map prototyp
[all...]
/external/valgrind/tsan/
H A Dthread_sanitizer_test.cc211 typedef DenseMultimap<int, 3> Map; typedef
213 Map m1(1, 2);
218 Map m2(3, 2);
223 Map m3(m1, 0);
229 Map m4(m3, 1);
236 Map m5(m4, 5);
237 Map m6(m5, -2);
238 Map m7(m6, 2);
250 Map m8(m7, Map
[all...]
/external/chromium/testing/gtest/samples/
H A Dsample3-inl.h154 Queue* Map(F function) const { function in class:Queue
/external/clang/include/clang/Lex/
H A DDirectoryLookup.h44 /// Map - This is the HeaderMap if this is a headermap lookup.
46 const HeaderMap *Map; member in union:clang::DirectoryLookup::__anon2938
81 u.Map = map;
104 const HeaderMap *getHeaderMap() const { return isHeaderMap() ? u.Map : 0; }
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DFunctionSummary.h46 MapTy Map; member in class:clang::ento::FunctionSummariesTy
52 MapTy::iterator I = Map.find(D);
53 if (I != Map.end())
56 I = Map.insert(std::pair<const Decl*, FunctionSummary*>(D, DS)).first;
57 assert(I != Map.end());
67 MapTy::const_iterator I = Map.find(D);
68 if (I != Map.end())
85 MapTy::const_iterator I = Map.find(D);
86 if (I != Map.end())
93 MapTy::const_iterator I = Map
[all...]
/external/gtest/samples/
H A Dsample3-inl.h154 Queue* Map(F function) const { function in class:Queue
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/meshes/
H A DMeshContext.java8 import java.util.Map;
21 private Map<Integer, List<Integer>> vertexReferenceMap;
23 private Map<Geometry, VertexBuffer> uvCoordinates = new HashMap<Geometry, VertexBuffer>();
68 public Map<Integer, List<Integer>> getVertexReferenceMap() {
79 Map<Integer, List<Integer>> vertexReferenceMap) {
78 setVertexReferenceMap( Map<Integer, List<Integer>> vertexReferenceMap) argument
/external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
H A DPrecompiledTemplateLoader.java30 import java.util.Map;
43 private final Map<Object, BaseCompiledTemplate> templateMap;
47 Map<Object, String> templateToClassNameMap, FunctionExecutor globalFunctionExecutor,
54 private Map<Object, BaseCompiledTemplate> makeTemplateMap( argument
55 Map<Object, String> templateToClassNameMap, FunctionExecutor globalFunctionExecutor) {
56 Map<Object, BaseCompiledTemplate> templateMap = new HashMap<Object, BaseCompiledTemplate>();
58 for (Map.Entry<Object, String> entry : templateToClassNameMap.entrySet()) {
/external/openfst/src/include/fst/
H A Dmap.h19 // Compatability file for old-style Map() functions and MapFst class
32 void Map(MutableFst<A> *fst, C* mapper) { function in namespace:fst
37 void Map(MutableFst<A> *fst, C mapper) { function in namespace:fst
42 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) { function in namespace:fst
47 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) { function in namespace:fst
/external/openfst/src/include/fst/script/
H A Dmap.h56 void Map(MapArgs *args) { function in namespace:fst::script
106 %newobject Map; member in namespace:fst::script
108 FstClass *Map(const FstClass& f, MapType map_type,

Completed in 508 milliseconds

1234