Searched refs:map (Results 126 - 150 of 5687) sorted by relevance

1234567891011>>

/external/chromium_org/sync/internal_api/public/base/
H A Dprogress_marker_map.h10 #include <map>
28 typedef std::map<ModelType, std::string> ProgressMarkerMap;
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DExtensionBehavior.h10 #include <map>
35 typedef std::map<std::string, TBehavior> TExtensionBehavior;
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dpcy_map.c72 POLICY_MAPPING *map; local
84 map = sk_POLICY_MAPPING_value(maps, i);
85 /* Reject if map to or from anyPolicy */
86 if ((OBJ_obj2nid(map->subjectDomainPolicy) == NID_any_policy)
87 || (OBJ_obj2nid(map->issuerDomainPolicy) == NID_any_policy))
94 data = policy_cache_find_data(cache, map->issuerDomainPolicy);
95 /* If we don't have anyPolicy can't map */
102 data = policy_data_new(NULL, map->issuerDomainPolicy,
108 /*map->issuerDomainPolicy = NULL;*/
120 map
[all...]
/external/chromium_org/third_party/boringssl/src/tool/
H A Dinternal.h20 #include <map>
29 bool ParseKeyValueArguments(std::map<std::string, std::string> *out_args, const
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
H A Dmultisect3.asm0 [map all]
H A Dnomultisect1.asm0 [map all]
/external/chromium_org/ui/gfx/x/
H A Dx11_atom_cache.h8 #include <map>
39 mutable std::map<std::string, XAtom> cached_atoms_;
/external/chromium_org/ui/views/win/
H A Dscoped_fullscreen_visibility.h10 #include <map>
30 typedef std::map<HWND, int> FullscreenHWNDs;
/external/compiler-rt/lib/asan/tests/
H A Dasan_test_config.h22 #include <map>
26 using std::map;
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicLongMap.java17 * A map containing {@code long} values that can be atomically updated. While writes to a
18 * traditional {@code Map} rely on {@code put(K, V)}, the typical mechanism for writing to this map
34 * removed from the map. Instead they must be removed manually with {@link #removeAllZeros}.
41 private final ConcurrentHashMap<K, AtomicLong> map; field in class:AtomicLongMap
43 private AtomicLongMap(ConcurrentHashMap<K, AtomicLong> map) { argument
44 this.map = checkNotNull(map);
68 AtomicLong atomic = map.get(key);
92 AtomicLong atomic = map.get(key);
94 atomic = map
[all...]
/external/llvm/lib/Target/R600/
H A DAMDGPUMachineFunction.h17 #include <map>
26 /// A map to keep track of local memory objects and their offsets within
28 std::map<const GlobalValue *, unsigned> LocalMemoryObjects;
/external/openssl/crypto/x509v3/
H A Dpcy_map.c71 POLICY_MAPPING *map; local
83 map = sk_POLICY_MAPPING_value(maps, i);
84 /* Reject if map to or from anyPolicy */
85 if ((OBJ_obj2nid(map->subjectDomainPolicy) == NID_any_policy)
86 || (OBJ_obj2nid(map->issuerDomainPolicy) == NID_any_policy))
93 data = policy_cache_find_data(cache, map->issuerDomainPolicy);
94 /* If we don't have anyPolicy can't map */
101 data = policy_data_new(NULL, map->issuerDomainPolicy,
107 /*map->issuerDomainPolicy = NULL;*/
119 map
[all...]
/external/smack/src/org/jivesoftware/smack/packet/
H A DDefaultPacketExtension.java51 private Map<String,String> map; field in class:DefaultPacketExtension
102 if (map == null) {
105 return Collections.unmodifiableSet(new HashMap<String,String>(map).keySet());
115 if (map == null) {
118 return map.get(name);
128 if (map == null) {
129 map = new HashMap<String,String>();
131 map.put(name, value);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDefaultPrivateData.java54 private Map<String, String> map; field in class:DefaultPrivateData
106 if (map == null) {
109 return Collections.unmodifiableSet(map.keySet()).iterator();
119 if (map == null) {
122 return (String)map.get(name);
132 if (map == null) {
133 map = new HashMap<String,String>();
135 map.put(name, value);
/external/stressapptest/src/
H A Dos_factory.cc23 #include <map>
30 OsLayer *OsLayerFactory(const std::map<std::string, std::string> &options) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DLinkedListMultimapTest.java124 LinkedListMultimap<String, Integer> map = create();
125 map.put("bar", 1);
126 Collection<Integer> foos = map.get("foo");
129 map.put("bar", 4);
130 map.put("foo", 5);
131 assertEquals("{bar=[1, 4], foo=[2, 3, 5]}", map.toString());
133 map.entries().toString());
137 ListMultimap<String, Integer> map = create();
138 map.put("bar", 1);
139 List<Integer> foos = map
[all...]
H A DWellBehavedMapTest.java34 WellBehavedMap<Foo, Integer> map = WellBehavedMap.wrap(
36 map.putAll(ImmutableMap.of(Foo.X, 1, Foo.Y, 2, Foo.Z, 3));
39 assertTrue(map.entrySet().contains(Maps.immutableEntry(Foo.X, 1)));
40 assertTrue(map.entrySet().contains(Maps.immutableEntry(Foo.Y, new Integer(2))));
43 assertFalse(map.entrySet().contains(Maps.immutableEntry(Foo.X, 5)));
46 assertFalse(map.entrySet().contains(Maps.immutableEntry(Foo.T, 0)));
50 WellBehavedMap<Foo, Integer> map = WellBehavedMap.wrap(
52 map.putAll(ImmutableMap.of(Foo.X, 1, Foo.Y, 2, Foo.Z, 3));
54 for (Map.Entry<Foo, Integer> entry : map.entrySet()) {
58 assertEquals(ImmutableMap.of(Foo.X, 6, Foo.Y, 7, Foo.Z, 8), map);
[all...]
/external/ceres-solver/internal/ceres/
H A Dexecution_summary.h34 #include <map>
59 const map<string, double>& times() const { return times_; }
60 const map<string, int>& calls() const { return calls_; }
64 map<string, double> times_;
67 map<string, int> calls_;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
H A Dpopup.js25 var map = document.getElementById("map");
27 map.src = src;
28 map.addEventListener('click', function () {
39 function map() { function
45 window.onload = map;
/external/chromium_org/content/browser/
H A Dnotification_service_impl.h8 #include <map>
37 typedef std::map<uintptr_t, NotificationObserverList*> NotificationSourceMap;
38 typedef std::map<int, NotificationSourceMap> NotificationObserverMap;
39 typedef std::map<int, int> NotificationObserverCount;
42 // NotificationObserverList in the given map;
43 static bool HasKey(const NotificationSourceMap& map,
/external/libcxx/test/containers/associative/map/map.cons/
H A Ddefault_noexcept.pass.cpp10 // <map>
12 // map()
20 #include <map>
37 typedef std::map<MoveOnly, MoveOnly> C;
41 typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C;
45 typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C;
49 typedef std::map<MoveOnly, MoveOnly, some_comp<MoveOnly>> C;
H A Ddtor_noexcept.pass.cpp10 // <map>
12 // ~map() // implied noexcept;
14 #include <map>
35 typedef std::map<MoveOnly, MoveOnly> C;
39 typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C;
43 typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C;
47 typedef std::map<MoveOnly, MoveOnly, some_comp<MoveOnly>> C;
H A Dmove_assign_noexcept.pass.cpp10 // <map>
12 // map& operator=(map&& c)
20 #include <map>
37 typedef std::map<MoveOnly, MoveOnly> C;
41 typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C;
45 typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C;
49 typedef std::map<MoveOnly, MoveOnly, some_comp<MoveOnly>> C;
H A Dmove_noexcept.pass.cpp10 // <map>
12 // map(map&&)
18 #include <map>
35 typedef std::map<MoveOnly, MoveOnly> C;
39 typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C;
43 typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C;
47 typedef std::map<MoveOnly, MoveOnly, some_comp<MoveOnly>> C;
/external/libcxx/test/containers/associative/map/map.special/
H A Dswap_noexcept.pass.cpp10 // <map>
12 // void swap(map& c)
18 #include <map>
40 typedef std::map<MoveOnly, MoveOnly> C;
45 typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, test_allocator<MoveOnly>> C;
50 typedef std::map<MoveOnly, MoveOnly, std::less<MoveOnly>, other_allocator<MoveOnly>> C;
55 typedef std::map<MoveOnly, MoveOnly, some_comp<MoveOnly>> C;

Completed in 524 milliseconds

1234567891011>>