Searched refs:map (Results 251 - 275 of 5687) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzconf.h320 # pragma map(deflateInit_,"DEIN")
321 # pragma map(deflateInit2_,"DEIN2")
322 # pragma map(deflateEnd,"DEEND")
323 # pragma map(deflateBound,"DEBND")
324 # pragma map(inflateInit_,"ININ")
325 # pragma map(inflateInit2_,"ININ2")
326 # pragma map(inflateEnd,"INEND")
327 # pragma map(inflateSync,"INSY")
328 # pragma map(inflateSetDictionary,"INSEDI")
329 # pragma map(compressBoun
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeSTLUtil.hpp73 // Utilities for map-like container types
77 const typename M::mapped_type* tryLookup (const M& map, argument
80 typename M::const_iterator it = map.find(key);
81 if (it == map.end())
88 const typename M::mapped_type& lookupDefault (const M& map, argument
92 const typename M::mapped_type* ptr = tryLookup(map, key);
99 const typename M::mapped_type& lookup (const M& map, const typename M::key_type& key) argument
101 const typename M::mapped_type* ptr = tryLookup(map, key);
103 throw std::out_of_range("key not found in map");
107 //! Map `key` to `value`. This differs from `map[ke
110 insert(M& map, const typename M::key_type& key, const typename M::mapped_type& value) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Devaluator.h35 #include <map>
193 virtual map<string, int> CallStatistics() const {
194 return map<string, int>();
197 virtual map<string, double> TimeStatistics() const {
198 return map<string, double>();
/external/chromium_org/chrome/browser/extensions/api/content_settings/
H A Dcontent_settings_apitest.cc68 HostContentSettingsMap* map = local
81 map->GetContentSetting(example_url,
86 map->GetContentSetting(example_url,
91 map->GetContentSetting(example_url,
96 map->GetContentSetting(example_url,
104 map->GetContentSetting(example_url,
110 map->GetContentSetting(example_url,
119 map->GetContentSetting(
122 map->GetContentSetting(
125 map
142 HostContentSettingsMap* map = local
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
H A DClassMap.java68 Object map = ClassLoaderLocalMap.get(classLoader, this);
69 if (map == null) {
70 map = new HashMap<Class<?>, V>();
71 ClassLoaderLocalMap.put(classLoader, this, map);
73 return (Map<Class<?>, V>) map;
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DRegexCache.java51 private LinkedHashMap<K, V> map; field in class:RegexCache.LRUCache
57 map = new LinkedHashMap<K, V>(size * 4 / 3 + 1, 0.75f, true) {
66 return map.get(key);
70 map.put(key, value);
74 return map.containsKey(key);
/external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/
H A Dmain.cpp6 #include <map>
8 #define intint_map std::map<int, int>
9 #define strint_map std::map<std::string, int>
10 #define intstr_map std::map<int, std::string>
11 #define strstr_map std::map<std::string, std::string>
/external/srec/tools/grxmlcompile/
H A Dhashmap.h25 #include <map>
47 typename std::map<T1,T2>::iterator begin();
48 typename std::map<T1,T2>::iterator end();
54 std::map<T1, T2> m_Map;
55 typename std::map<T1,T2>::iterator m_pPos;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_resource_buffer_upload.c80 assert(!sbuf->map.count);
184 uint32 numBoxes = sbuf->map.num_ranges;
260 assert(sbuf->map.num_ranges);
271 for (i = 0; i < sbuf->map.num_ranges; ++i) {
273 sbuf->map.ranges[i].start, sbuf->map.ranges[i].end);
275 boxes[i].x = sbuf->map.ranges[i].start;
278 boxes[i].w = sbuf->map.ranges[i].end - sbuf->map.ranges[i].start;
281 boxes[i].srcx = sbuf->map
419 void *map; local
485 uint8_t *map; local
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_resource_buffer_upload.c80 assert(!sbuf->map.count);
184 uint32 numBoxes = sbuf->map.num_ranges;
260 assert(sbuf->map.num_ranges);
271 for (i = 0; i < sbuf->map.num_ranges; ++i) {
273 sbuf->map.ranges[i].start, sbuf->map.ranges[i].end);
275 boxes[i].x = sbuf->map.ranges[i].start;
278 boxes[i].w = sbuf->map.ranges[i].end - sbuf->map.ranges[i].start;
281 boxes[i].srcx = sbuf->map
419 void *map; local
485 uint8_t *map; local
[all...]
/external/oprofile/daemon/liblegacy/
H A Dopd_proc.c110 * @param map map to print
113 verb_show_sample(unsigned long offset, struct opd_map * map) argument
116 "map start 0x%.8lx, end 0x%.8lx, offset 0x%.8lx, name \"%s\"\n",
117 offset, map->start, map->end, map->offset,
118 map->image->name);
173 struct opd_map * map = list_entry(pos, struct opd_map, next); local
174 if (opd_is_in_map(map, sampl
268 struct opd_map * map = list_entry(pos, struct opd_map, next); local
419 struct opd_map * map = list_entry(pos, struct opd_map, next); local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/svga/
H A DSDL_svgaevents.c65 int map, i; local
68 for ( map=0; map<NUM_VGAKEYMAPS; ++map ) {
69 SDL_memset(vga_keymap[map], 0, NR_KEYS*sizeof(Uint16));
71 entry.kb_table = map;
91 vga_keymap[map][i]=entry.kb_value;
92 vga_keymap[map][i]+= '0';
95 vga_keymap[map][i]=K(KT_ASCII,'+');
98 vga_keymap[map][
346 int map; local
389 int map; local
[all...]
/external/chromium_org/v8/test/mjsunit/es6/
H A Dcollections.js100 function TestMapping(map, key, value) {
101 assertSame(map, map.set(key, value));
102 assertSame(value, map.get(key));
203 function TestProperty(map, property, value) {
204 map[property] = value;
205 assertEquals(value, map[property]);
696 Map.prototype.map.forEach.call({});
699 var map = new Map();
701 map
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A Dformatutils9.cpp46 D3D9FastCopyMap map; local
48 map.insert(std::make_pair(D3DFMT_A8R8G8B8, D3D9FastCopyFormat(GL_RGBA, GL_UNSIGNED_BYTE, CopyBGRA8ToRGBA8)));
50 return map;
53 // A map to determine the pixel size and mip generation function of a given D3D format
54 typedef std::map<D3DFORMAT, D3DFormat> D3D9FormatInfoMap;
73 static inline void InsertD3DFormatInfo(D3D9FormatInfoMap *map, D3DFORMAT format, GLuint bits, GLuint blockWidth, argument
92 map->insert(std::make_pair(format, info));
97 D3D9FormatInfoMap map; local
100 InsertD3DFormatInfo(&map, D3DFMT_NULL, 0, 0, 0, GL_NONE, NULL, NULL );
101 InsertD3DFormatInfo(&map, D3DFMT_UNKNOW
154 InternalFormatInitialzerMap map; local
202 InsertD3D9FormatInfo(D3D9FormatMap *map, GLenum internalFormat, D3DFORMAT texFormat, D3DFORMAT renderFormat, LoadImageFunction loadFunction) argument
220 D3D9FormatMap map; local
[all...]
/external/oprofile/module/ia64/
H A Dop_syscalls.c112 struct vm_area_struct * map; local
128 for (map = mm->mmap; map; map = map->vm_next) {
129 if (!(map->vm_flags & VM_EXEC) || !map->vm_file)
131 if (!(map->vm_flags & VM_EXECUTABLE))
134 oprof_output_map(map->vm_start, map
[all...]
/external/oprofile/module/x86/
H A Dop_syscalls.c73 struct vm_area_struct * map; local
89 for (map = mm->mmap; map; map = map->vm_next) {
90 if (!(map->vm_flags & VM_EXEC) || !map->vm_file)
92 if (!(map->vm_flags & VM_EXECUTABLE))
95 oprof_output_map(map->vm_start, map
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Daddressmap_unittest.cc95 AddressMap<ValueT> map(malloc, free);
102 CHECK(!map.Find(p));
104 CHECK(!map.FindInside(&SizeFunc, kMaxSize, p + offs, &res_p));
105 map.Insert(p, make_pair(i, ptrs_and_sizes[i].size));
106 CHECK(result = map.Find(p));
108 CHECK(result = map.FindInside(&SizeFunc, kMaxRealSize, p + offs, &res_p));
111 map.Insert(p, make_pair(i + N, ptrs_and_sizes[i].size));
112 CHECK(result = map.Find(p));
120 CHECK(map.FindAndRemove(p, &removed));
127 CHECK(result = map
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Daddressmap_unittest.cc95 AddressMap<ValueT> map(malloc, free);
102 CHECK(!map.Find(p));
104 CHECK(!map.FindInside(&SizeFunc, kMaxSize, p + offs, &res_p));
105 map.Insert(p, make_pair(i, ptrs_and_sizes[i].size));
106 CHECK(result = map.Find(p));
108 CHECK(result = map.FindInside(&SizeFunc, kMaxRealSize, p + offs, &res_p));
111 map.Insert(p, make_pair(i + N, ptrs_and_sizes[i].size));
112 CHECK(result = map.Find(p));
120 CHECK(map.FindAndRemove(p, &removed));
127 CHECK(result = map
[all...]
/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp200 BuiltInTypes map; local
220 yin >> map; local
223 EXPECT_TRUE(map.str.equals("hello there"));
224 EXPECT_TRUE(map.stdstr == "hello where?");
225 EXPECT_EQ(map.u64, 5000000000ULL);
226 EXPECT_EQ(map.u32, 4000000000U);
227 EXPECT_EQ(map.u16, 65000);
228 EXPECT_EQ(map.u8, 255);
229 EXPECT_EQ(map.b, false);
230 EXPECT_EQ(map
249 BuiltInTypes map; local
270 yout << map; local
275 BuiltInTypes map; local
276 yin >> map; local
359 StringTypes map; local
385 yout << map; local
409 StringTypes map; local
410 yin >> map; local
478 ColorMap map; local
485 yin >> map; local
550 FlagsMap map; local
556 yin >> map; local
572 FlagsMap map; local
580 yout << map; local
662 MyCustomTypeMap map; local
671 yout << map; local
746 NameAndNumbers map; local
757 yout << map; local
1221 ColorMap map; local
1229 yin >> map; local
1238 FlagsMap map; local
1246 yin >> map; local
[all...]
/external/chromium_org/base/
H A Denvironment.h8 #include <map>
53 typedef std::map<NativeEnvironmentString, NativeEnvironmentString>
72 typedef std::map<NativeEnvironmentString, NativeEnvironmentString>
/external/chromium_org/chrome/browser/content_settings/
H A Dcontent_settings_usages_state.h8 #include <map>
29 typedef std::map<GURL, ContentSetting> StateMap;
56 typedef std::map<ContentSetting, std::set<std::string> >
/external/chromium_org/chrome/browser/devtools/device/
H A Dport_forwarding_controller.h8 #include <map>
33 typedef std::map<std::string, Connection*> Registry;
44 typedef std::map<int, std::string> ForwardingMap;
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Ddatabase_string_table.h8 #include <map>
64 std::map<int64, std::string> id_to_value_;
65 std::map<std::string, int64> value_to_id_;
/external/chromium_org/chrome/browser/ui/app_list/test/
H A Dfake_profile_store.h8 #include <map>
33 typedef std::map<base::FilePath, base::Callback<void(Profile*)> >
37 typedef std::map<base::FilePath, Profile*> ProfilesByPath;
/external/chromium_org/chromeos/audio/
H A Daudio_devices_pref_handler_stub.h10 #include <map>
20 typedef std::map<uint64, bool> AudioDeviceMute;
21 typedef std::map<uint64, int> AudioDeviceVolumeGain;

Completed in 5270 milliseconds

<<11121314151617181920>>