HomeSort by relevance Sort by last modified time
    Searched refs:map (Results 876 - 900 of 7461) sorted by null

<<31323334353637383940>>

  /external/chromium_org/chrome/browser/extensions/
extension_action_manager.cc 85 // Returns map[extension_id] if that entry exists. Otherwise, if
86 // action_info!=NULL, creates an ExtensionAction from it, fills in the map, and
89 std::map<std::string, linked_ptr<ExtensionAction> >* map,
94 std::map<std::string, linked_ptr<ExtensionAction> >::const_iterator it =
95 map->find(extension_id);
96 if (it != map->end())
111 (*map)[extension_id] = action;
  /external/chromium_org/chrome/browser/sync/glue/
synced_session_tracker.h 8 #include <map>
187 typedef std::map<SessionID::id_type, SessionTabWrapper> IDToSessionTabMap;
188 typedef std::map<std::string, IDToSessionTabMap> SyncedTabMap;
198 typedef std::map<SessionID::id_type, SessionWindowWrapper>
200 typedef std::map<std::string, IDToSessionWindowMap> SyncedWindowMap;
202 typedef std::map<std::string, SyncedSession*> SyncedSessionMap;
215 // Value: Tab id to SessionTabWrapper map.
220 // Value: Window id to SessionWindowWrapper map.
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_extension_helper.h 8 #include <map>
90 typedef std::map<std::string, ExtensionState> ExtensionStateMap;
91 typedef std::map<std::string, scoped_refptr<extensions::Extension> >
93 typedef std::map<Profile*, ExtensionNameMap> ProfileExtensionNameMap;
94 typedef std::map<std::string, std::string> StringMap;
95 typedef std::map<std::string, extensions::Manifest::Type> TypeMap;
102 // Returns a map from |profile|'s installed extensions to their state.
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
address_field_util.cc 22 #include <map>
34 std::map<char, AddressField> InitFields() {
35 std::map<char, AddressField> fields;
47 const std::map<char, AddressField>& GetFields() {
48 static const std::map<char, AddressField> kFields(InitFields());
57 std::map<char, AddressField>::const_iterator it = GetFields().find(c);
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/sw/
i915_sw_batchbuffer.c 33 memset(batch->base.map, 0, batch->actual_size);
34 batch->base.ptr = batch->base.map;
47 batch->base.map = MALLOC(batch->actual_size);
110 used = batch->base.ptr - batch->base.map;
126 used = batch->base.ptr - batch->base.map;
147 FREE(batch->base.map);
  /external/chromium_org/ui/views/accessibility/
ax_aura_obj_cache.cc 61 std::map<int32, AXAuraObjWrapper*>::iterator it = cache_.find(id);
89 AuraView* aura_view, std::map<AuraView*, int32>& aura_view_to_id_map) {
93 typename std::map<AuraView*, int32>::iterator it =
107 AuraView* aura_view, std::map<AuraView*, int32>& aura_view_to_id_map) {
111 typename std::map<AuraView*, int32>::iterator it =
122 AuraView* aura_view, std::map<AuraView*, int32>& aura_view_to_id_map) {
  /external/chromium_org/ui/views/focus/
view_storage.cc 34 std::map<int, View*>::iterator iter = id_to_view_.find(storage_id);
44 std::map<View*, std::vector<int>*>::iterator id_iter =
56 std::map<int, View*>::iterator iter = id_to_view_.find(storage_id);
68 std::map<View*, std::vector<int>*>::iterator ids_iter =
83 std::map<int, View*>::iterator view_iter = id_to_view_.find(storage_id);
91 std::map<View*, std::vector<int>*>::iterator ids_iter =
  /external/easymock/src/org/easymock/internal/
LegacyMatcherProvider.java 22 import java.util.Map;
36 private transient Map<Method, ArgumentsMatcher> matchers = new HashMap<Method, ArgumentsMatcher>();
75 Map<MethodSerializationWrapper, ArgumentsMatcher> map = (Map<MethodSerializationWrapper, ArgumentsMatcher>) stream local
77 matchers = new HashMap<Method, ArgumentsMatcher>(map.size());
78 for (Map.Entry<MethodSerializationWrapper, ArgumentsMatcher> entry : map
94 Map<MethodSerializationWrapper, ArgumentsMatcher> map = new HashMap<MethodSerializationWrapper, ArgumentsMatcher>( local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableClassToInstanceMap.java 21 import java.util.Map;
24 * A class-to-instance map backed by an {@link ImmutableMap}. See also {@link
52 * and build again. Thus each map generated by this builder will be a superset
53 * of any map generated before it.
62 * Associates {@code key} with {@code value} in the built map. Duplicate
71 * Associates all of {@code map's} keys and values in the built map.
74 * @throws NullPointerException if any key or value in {@code map} is null
79 Map<? extends Class<? extends T>, ? extends T> map) {
    [all...]
Interners.java 45 final ConcurrentMap<E, E> map = new MapMaker().makeMap(); local
48 E canonical = map.putIfAbsent(checkNotNull(sample), sample);
56 private final MapMakerInternalMap<E, Dummy> map;
59 this.map = mm
68 ReferenceEntry<E, Dummy> entry = map.getEntry(sample);
77 Dummy sneaky = map.putIfAbsent(sample, Dummy.VALUE);
  /external/guava/guava-tests/test/com/google/common/collect/
BiMapMapInterfaceTest.java 24 import java.util.Map;
25 import java.util.Map.Entry;
28 * Map interface tests for bimaps.
50 @Override protected Map<String, Integer> makeEmptyMap() {
54 @Override protected Map<String, Integer> makePopulatedMap() {
55 Map<String, Integer> map = makeEmptyMap(); local
56 map.put("foo", 1);
57 map.put("bar", 2);
58 return map;
    [all...]
ImmutableBiMapTest.java 44 import java.util.Map;
45 import java.util.Map.Entry;
149 @Override protected Map<K, V> makeEmptyMap() {
155 @Override protected void assertMoreInvariants(Map<K, V> map) {
157 BiMap<K, V> bimap = (BiMap<K, V>) map;
159 for (Entry<K, V> entry : map.entrySet()) {
165 assertEquals("{" + joiner.join(map.entrySet()) + "}",
166 map.toString());
167 assertEquals("[" + joiner.join(map.entrySet()) + "]"
218 ImmutableBiMap<String, Integer> map local
220 assertEquals(Collections.<String, Integer>emptyMap(), map); local
222 assertSame(ImmutableBiMap.of(), map); local
226 ImmutableBiMap<String, Integer> map = new Builder<String, Integer>() local
234 ImmutableBiMap<String, Integer> map local
249 ImmutableBiMap<String, Integer> map = new Builder<String, Integer>() local
252 assertEquals(Collections.<String, Integer>emptyMap(), map); local
264 ImmutableBiMap<String, Integer> map = new Builder<String, Integer>() local
472 ImmutableMap<String, Integer> map local
    [all...]
  /external/libsepol/src/
ebitmap.c 36 new->map = n1->map | n2->map;
41 new->map = n1->map;
45 new->map = n2->map;
160 (n1->startbit == n2->startbit) && (n1->map == n2->map)) {
186 new->map = n->map
347 uint64_t map; local
    [all...]
  /external/mesa3d/src/gallium/winsys/i915/sw/
i915_sw_batchbuffer.c 33 memset(batch->base.map, 0, batch->actual_size);
34 batch->base.ptr = batch->base.map;
47 batch->base.map = MALLOC(batch->actual_size);
110 used = batch->base.ptr - batch->base.map;
126 used = batch->base.ptr - batch->base.map;
147 FREE(batch->base.map);
  /frameworks/compile/mclinker/lib/Target/
ELFEmulation.cpp 24 static const NameMap map[] = variable
74 // set up section map
77 const unsigned int map_size = (sizeof(map) / sizeof(map[0]) );
80 pScript.sectionMap().insert(map[i].from, map[i].to, map[i].policy);
  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 30 import java.util.Map;
87 Map<String, Integer> map = Maps.newHashMap(); local
88 map.put("One", 1);
89 map.put("Three", 3);
90 map.put("Null", null);
91 Function<String, Integer> function = Functions.forMap(map);
104 .addEqualityGroup(function, Functions.forMap(map))
105 .addEqualityGroup(Functions.forMap(map, 42))
115 Map<String, Integer> map = Maps.newHashMap() local
136 Map<String, Integer> map = Maps.newHashMap(); local
162 ImmutableMap<String, Integer> map = ImmutableMap.of("One", 1); local
177 ImmutableMap<String, Integer> map = ImmutableMap.of("One", 1); local
191 Map<String, Integer> map = Maps.newHashMap(); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_resource_buffer.c 108 sbuf->map.num_ranges = 0;
113 if (!sbuf->map.num_ranges) {
151 * the map of the hwbuf below to block, so preemptively
194 * Map a range of a buffer.
202 uint8_t *map; local
206 map = sbuf->swbuf;
212 map = sws->buffer_map(sws, sbuf->hwbuf, transfer->usage);
215 map = NULL;
218 if (map) {
219 ++sbuf->map.count
    [all...]
  /external/chromium_org/third_party/zlib/
zconf.h 416 #pragma map(deflateInit_,"DEIN")
417 #pragma map(deflateInit2_,"DEIN2")
418 #pragma map(deflateEnd,"DEEND")
419 #pragma map(deflateBound,"DEBND")
420 #pragma map(inflateInit_,"ININ")
421 #pragma map(inflateInit2_,"ININ2")
422 #pragma map(inflateEnd,"INEND")
423 #pragma map(inflateSync,"INSY")
424 #pragma map(inflateSetDictionary,"INSEDI")
425 #pragma map(compressBound,"CMBND"
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_buffer.c 108 sbuf->map.num_ranges = 0;
113 if (!sbuf->map.num_ranges) {
151 * the map of the hwbuf below to block, so preemptively
194 * Map a range of a buffer.
202 uint8_t *map; local
206 map = sbuf->swbuf;
212 map = sws->buffer_map(sws, sbuf->hwbuf, transfer->usage);
215 map = NULL;
218 if (map) {
219 ++sbuf->map.count
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_MapTest.java 25 import java.util.Map;
31 // must be a map containing the string keys "0"-"99" paired with the Integer
33 private final Map<String, Integer> modifiableMap;
34 private final Map<String, Integer> unmodifiableMap;
36 public Support_MapTest(String p1, Map<String, Integer> modifiableMap) {
48 new Support_UnmodifiableCollectionTest("values() from map test", modifiableMap.values())
50 new Support_UnmodifiableCollectionTest("values() from unmodifiable map test",
60 private void testContents(Map<String, Integer> map) {
62 assertTrue("Size should return 100, returned: " + map.size(), map.size() == 100)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
zconf.h 379 # pragma map(deflateInit_,"DEIN")
380 # pragma map(deflateInit2_,"DEIN2")
381 # pragma map(deflateEnd,"DEEND")
382 # pragma map(deflateBound,"DEBND")
383 # pragma map(inflateInit_,"ININ")
384 # pragma map(inflateInit2_,"ININ2")
385 # pragma map(inflateEnd,"INEND")
386 # pragma map(inflateSync,"INSY")
387 # pragma map(inflateSetDictionary,"INSEDI")
388 # pragma map(compressBound,"CMBND"
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
zconf.h 379 # pragma map(deflateInit_,"DEIN")
380 # pragma map(deflateInit2_,"DEIN2")
381 # pragma map(deflateEnd,"DEEND")
382 # pragma map(deflateBound,"DEBND")
383 # pragma map(inflateInit_,"ININ")
384 # pragma map(inflateInit2_,"ININ2")
385 # pragma map(inflateEnd,"INEND")
386 # pragma map(inflateSync,"INSY")
387 # pragma map(inflateSetDictionary,"INSEDI")
388 # pragma map(compressBound,"CMBND"
    [all...]
  /system/extras/libpagemap/
pm_process.c 248 pm_map_t *map, **maps, **new_maps; local
281 maps[maps_count] = map = calloc(1, sizeof(*map));
283 map->proc = proc;
287 &map->start, &map->end, perms, &map->offset, name);
289 map->name = malloc(strlen(name) + 1);
290 if (!map->name) {
297 strcpy(map->name, name)
    [all...]
  /external/libnl/lib/route/link/
vlan.c 114 struct ifla_vlan_qos_mapping *map; local
121 if (nla_len(nla) < sizeof(*map))
124 map = nla_data(nla);
125 if (map->from < 0 || map->from > VLAN_PRIO_MAX) {
129 vi->vi_ingress_qos[map->from] = map->to;
136 struct ifla_vlan_qos_mapping *map; local
141 if (nla_len(nla) < sizeof(*map))
148 vi->vi_egress_qos = calloc(vi->vi_egress_size, sizeof(*map));
280 struct ifla_vlan_qos_mapping map; local
300 struct ifla_vlan_qos_mapping map; local
    [all...]
  /build/tools/atree/
files.h 4 #include <map>
41 const map<string, string>& variables,

Completed in 2928 milliseconds

<<31323334353637383940>>