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

12345

/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.h44 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/smack/src/com/kenai/jbosh/
H A DStaticBody.java23 import java.util.Map;
53 * Map of all attributes to their values.
55 private final Map<BodyQName, String> attrs;
69 final Map<BodyQName, String> attrMap,
122 public Map<BodyQName, String> getAttributes() {
68 StaticBody( final Map<BodyQName, String> attrMap, final String rawXML) argument
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DDefaultMapEntry.java20 import java.util.Map;
23 * A restricted implementation of {@link java.util.Map.Entry} that prevents
61 public DefaultMapEntry(final Map.Entry<K, V> entry) { argument
/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.cpp63 const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) {
64 if (Map.begin() == Map.end())
69 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
62 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/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/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::__anon3493
77 u.Map = map;
100 const HeaderMap *getHeaderMap() const { return isHeaderMap() ? u.Map : 0; }
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DFunctionSummary.h51 MapTy Map; member in class:clang::ento::FunctionSummariesTy
57 MapTy::iterator I = Map.find(D);
58 if (I != Map.end())
61 I = Map.insert(std::pair<const Decl*, FunctionSummary*>(D, DS)).first;
62 assert(I != Map.end());
72 MapTy::const_iterator I = Map.find(D);
73 if (I != Map.end())
90 MapTy::const_iterator I = Map.find(D);
91 if (I != Map.end())
97 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/libvpx/libvpx/third_party/googletest/src/samples/
H A Dsample3-inl.h154 Queue* Map(F function) const { function in class:Queue
/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

Completed in 629 milliseconds

12345