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

1 2 3 4 5 6 7 891011>>

  /external/chromium/net/tools/fetch/
http_server_response_info.h 9 #include <map>
37 std::map<std::string, std::string> headers;
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
salsa_ui.h 8 #include <map>
43 std::map<int, const base::Value*> orig_values_;
  /external/chromium_org/content/common/dom_storage/
dom_storage_types.h 8 #include <map>
18 typedef std::map<base::string16, base::NullableString16> DOMStorageValuesMap;
  /external/chromium_org/content/public/common/
gpu_memory_stats.h 11 #include <map>
35 typedef std::map<base::ProcessId, ProcessStats> ProcessMap;
37 // A map of processes to their GPU resource consumption
  /external/chromium_org/net/spdy/
spdy_header_block.h 8 #include <map>
18 typedef std::map<std::string, std::string> SpdyHeaderBlock;
  /external/chromium_org/net/tools/fetch/
http_server_response_info.h 8 #include <map>
36 std::map<std::string, std::string> headers;
  /external/chromium_org/sync/engine/
sync_directory_commit_contributor.h 8 #include <map>
40 typedef std::map<ModelType, SyncDirectoryCommitContributor*>
  /external/chromium_org/third_party/angle/src/compiler/
ExtensionBehavior.h 10 #include <map>
35 typedef std::map<std::string, TBehavior> TExtensionBehavior;
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
pcy_map.c 71 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->subjectDomainPolicy)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect3.asm 0 [map all]
nomultisect1.asm 0 [map all]
  /external/chromium_org/tools/gn/
import_manager.h 8 #include <map>
35 typedef std::map<SourceFile, const Scope*> ImportMap;
  /external/chromium_org/ui/views/win/
scoped_fullscreen_visibility.h 10 #include <map>
30 typedef std::map<HWND, int> FullscreenHWNDs;
  /external/compiler-rt/lib/asan/tests/
asan_test_config.h 22 #include <map>
32 using std::map;
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicLongMap.java 12 import java.util.Map;
17 * 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) {
44 this.map = checkNotNull(map);
55 * Creates an {@code AtomicLongMap} with the same mappings as the specified {@code Map}
    [all...]
  /external/openssl/crypto/x509v3/
pcy_map.c 71 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->subjectDomainPolicy)
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
DefaultPacketExtension.java 31 * is a key in a Map with its CDATA being the value. For example, given the following
51 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)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
DefaultPrivateData.java 26 import java.util.Map;
34 * is a key in a Map with its CDATA being the value. For example, given the following
54 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>()
    [all...]
  /external/stressapptest/src/
os_factory.cc 23 #include <map>
30 OsLayer *OsLayerFactory(const std::map<std::string, std::string> &options) {
  /external/guava/guava-tests/test/com/google/common/collect/
LinkedListMultimapTest.java 39 import java.util.Map;
40 import java.util.Map.Entry;
124 LinkedListMultimap<String, Integer> map = create(); local
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() local
150 Multimap<String, Integer> map = create(); local
159 Multimap<String, Integer> map = create(); local
179 Multimap<String, Integer> map = create(); local
191 ListMultimap<String, Integer> map = create(); local
207 Multimap<String, Integer> map = create(); local
218 Multimap<String, Integer> map = create(); local
231 Multimap<String, Integer> map = create(); local
242 Multimap<String, Integer> map = create(); local
263 Multimap<String, Integer> map = create(); local
    [all...]
WellBehavedMapTest.java 24 import java.util.Map;
34 WellBehavedMap<Foo, Integer> map = WellBehavedMap.wrap( local
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( local
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); local
62 WellBehavedMap<Foo, Integer> map = WellBehavedMap.wrap( local
89 WellBehavedMap<Foo, Integer> map = WellBehavedMap.wrap( local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
AbstractMapTest.java 31 import java.util.Map;
49 mySet.add(new Map.Entry() {
83 Map map3 = Collections.EMPTY_MAP;
142 AbstractMap map = new HashMap(); local
143 map.put(1, 1);
144 map.clear();
145 assertTrue(map.isEmpty());
175 AbstractMap map = new AMT(); local
177 assertFalse(map.containsKey("k"));
178 assertFalse(map.containsKey(null))
194 AbstractMap map = new AMT(); local
212 AbstractMap map = new AMT(); local
256 private Map map = new HashMap(); field in class:AbstractMapTest.MyMap
279 MyMap map = new MyMap(); local
    [all...]
  /external/ceres-solver/internal/ceres/
execution_summary.h 34 #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/chrome/browser/geolocation/
geolocation_exceptions_table_model_unittest.cc 41 scoped_refptr<GeolocationContentSettingsMap> map(
43 map->SetContentSetting(kUrl0, kUrl0, CONTENT_SETTING_ALLOW);
44 map->SetContentSetting(kUrl0, kUrl1, CONTENT_SETTING_ALLOW);
45 map->SetContentSetting(kUrl0, kUrl2, CONTENT_SETTING_ALLOW);
58 scoped_refptr<GeolocationContentSettingsMap> map(
62 map->SetContentSetting(kUrl0, kUrl0, CONTENT_SETTING_ALLOW);
71 map->SetContentSetting(kUrl0, kUrl0, CONTENT_SETTING_DEFAULT);
72 map->SetContentSetting(kUrl0, kUrl1, CONTENT_SETTING_ALLOW);
73 map->SetContentSetting(kUrl0, kUrl2, CONTENT_SETTING_BLOCK);
87 scoped_refptr<GeolocationContentSettingsMap> map(
    [all...]
  /external/chromium_org/content/browser/
notification_service_impl.h 8 #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,

Completed in 750 milliseconds

1 2 3 4 5 6 7 891011>>