HomeSort by relevance Sort by last modified time
    Searched refs:map (Results 426 - 450 of 3027) sorted by null

<<11121314151617181920>>

  /external/guava/guava/src/com/google/common/collect/
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...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/map/map.access/
iterator.pass.cpp 10 // <map>
12 // class map
29 #include <map>
63 std::map<int, double> m(ar, ar+sizeof(ar)/sizeof(ar[0]));
66 std::map<int, double>::iterator i;
68 std::map<int, double>::const_iterator k = i;
107 const std::map<int, double> m(ar, ar+sizeof(ar)/sizeof(ar[0]));
112 std::map<int, double>::const_iterator i;
  /external/linux-tools-perf/util/
symbol.c 43 static struct map *map__new2(u64 start, struct dso *dso, enum map_type type);
44 static int dso__load_kernel_sym(struct dso *dso, struct map *map,
46 static int dso__load_guest_kernel_sym(struct dso *dso, struct map *map,
118 struct map *prev, *curr;
124 curr = rb_entry(prevnd, struct map, rb_node);
128 curr = rb_entry(nd, struct map, rb_node);
134 * last map final address.
515 struct map *map member in struct:process_kallsyms_args
1626 struct map *map = rb_entry(nd, struct map, rb_node); local
1690 struct map *map; local
1773 struct map *map = calloc(1, (sizeof(*map) + local
1788 struct map *map; local
1811 struct map *map; local
2653 struct map *map = machine->vmlinux_maps[type]; local
2672 struct map *map = machine->vmlinux_maps[type]; local
    [all...]
  /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...]
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
objectNameManager.cpp 16 #include <map>
68 // object found - return its global name map
161 typedef std::map<ObjectIDPair, ObjectDataPtr> ObjectDataMap;
181 ObjectDataMap *map = (ObjectDataMap *)m_objectsData; local
182 if (map) delete map;
243 ObjectDataMap *map = (ObjectDataMap *)m_objectsData; local
244 if (map) {
245 map->erase( ObjectIDPair(p_type, p_localName) );
279 ObjectDataMap *map = (ObjectDataMap *)m_objectsData local
300 ObjectDataMap *map = (ObjectDataMap *)m_objectsData; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
httpportallocator.cc 30 #include <map>
57 // 'a=b' and returns them in a map.
58 typedef std::map<std::string, std::string> StringMap;
59 void ParseMap(const std::string& string, StringMap& map) {
84 map[key] = value;
211 StringMap map; local
212 ParseMap(response, map);
214 std::string username = map["username"];
215 std::string password = map["password"];
216 std::string magic_cookie = map["magic_cookie"]
    [all...]
  /external/marisa-trie/lib/marisa/
trie.cc 17 map(temp_mapper);
21 void Trie::map(const void *ptr, std::size_t size) { function in class:marisa::Trie
23 map(mapper);
26 void Trie::map(Mapper &mapper) { function in class:marisa::Trie
28 temp.louds_.map(mapper);
29 temp.labels_.map(mapper);
30 temp.terminal_flags_.map(mapper);
31 temp.link_flags_.map(mapper);
32 temp.links_.map(mapper);
33 temp.tail_.map(mapper)
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie.cc 17 map(temp_mapper);
21 void Trie::map(const void *ptr, std::size_t size) { function in class:marisa_alpha::Trie
23 map(mapper);
26 void Trie::map(Mapper &mapper) { function in class:marisa_alpha::Trie
28 temp.louds_.map(mapper);
29 temp.labels_.map(mapper);
30 temp.terminal_flags_.map(mapper);
31 temp.link_flags_.map(mapper);
32 temp.links_.map(mapper);
33 temp.tail_.map(mapper)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-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.7-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...]
  /system/extras/libpagemap/
pm_process.c 227 pm_map_t *map, **maps, **new_maps; local
260 maps[maps_count] = map = calloc(1, sizeof(*map));
262 map->proc = proc;
265 &map->start, &map->end, perms, &map->offset, name);
267 map->name = malloc(strlen(name) + 1);
268 if (!map->name) {
275 strcpy(map->name, name)
    [all...]
  /build/tools/atree/
files.h 4 #include <map>
41 const map<string, string>& variables,
  /external/bison/examples/calc++/
calc++-driver.hh 5 # include <map>
24 std::map<std::string, int> variables;
  /external/chromium/chrome/browser/
about_flags.h 9 #include <map>
102 std::map<std::string, CommandLine::StringType>* switch_list);
browser_about_handler.h 11 #include <map>
43 // A map of header strings (e.g. "Browser", "Renderer PID 123")
45 typedef std::map<std::string, std::string> AboutTcmallocOutputsType;
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.h 10 #include <map>
38 // Map of URL and corresponding favicons.
39 typedef std::map<std::string, scoped_refptr<RefCountedMemory> > URLFaviconMap;
81 // Map that stores favicon per URL.
  /external/chromium/chrome/browser/chromeos/
plugin_selection_policy.h 8 #include <map>
72 typedef std::map<std::string, Policy> PolicyMap;
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler_registry.h 10 #include <map>
68 typedef std::map<std::string, ProtocolHandler*> ProtocolHandlerMap;
83 // Map from protocols (strings) to protocol handlers.
  /external/chromium/chrome/browser/extensions/
extension_icon_manager.h 9 #include <map>
56 std::map<std::string, SkBitmap> icons_;
extension_info_map.h 9 #include <map>
72 // Map of extension info by extension id.
73 typedef std::map<std::string, scoped_refptr<const Extension> > Map;
75 Map extension_info_;
76 Map disabled_extension_info_;
image_loading_tracker.h 9 #include <map>
74 typedef std::map<int, const Extension*> LoadMap;
104 // deleted while fetching the image the entry is removed from the map.

Completed in 918 milliseconds

<<11121314151617181920>>