Searched defs:map (Results 101 - 125 of 540) sorted by relevance

1234567891011>>

/external/llvm/utils/emacs/
H A Dtablegen-mode.el87 (defvar tablegen-mode-map nil) ; Create a mode-specific keymap.
89 (if (not tablegen-mode-map)
91 (setq tablegen-mode-map (make-sparse-keymap))
92 (define-key tablegen-mode-map "\t" 'tab-to-tab-stop)
93 (define-key tablegen-mode-map "\es" 'center-line)
94 (define-key tablegen-mode-map "\eS" 'center-paragraph))
98 \\{tablegen-mode-map}
102 (use-local-map tablegen-mode-map) ; Provides the local keymap.
/external/nist-sip/java/gov/nist/core/
H A DMultiValueMapImpl.java35 private HashMap<String, ArrayList<V>> map = new HashMap<String, ArrayList<V>>(); field in class:MultiValueMapImpl
45 ArrayList<V> keyList = map.get(key);
48 map.put(key, keyList);
56 Set pairs = map.entrySet();
72 Set pairs = map.entrySet();
79 map.clear();
83 ArrayList returnList = new ArrayList(map.size());
85 Set pairs = map.entrySet();
101 obj.map = (HashMap<Object, ArrayList<V>>) this.map
[all...]
/external/oprofile/daemon/liblegacy/
H A Dopd_mapping.c27 /* hash map device mmap */
48 perror("oprofiled: couldn't mmap hash map");
60 struct opd_map * map = list_entry(pos, struct opd_map, next); local
62 opd_delete_image(map->image);
63 free(map);
71 struct opd_map * map; local
76 map = malloc(sizeof(struct opd_map));
78 /* first map is the primary image */
87 map->image = image;
88 map
[all...]
H A Dopd_parse_proc.c29 * opd_add_ascii_map - parse an ASCII map string for a process
30 * @param proc process to add map to
34 * Attempt to parse the string @line for map information
128 /* dae assume than the first map added is the primary image name, this
133 struct opd_map * map = list_entry(pos, struct opd_map, next); local
134 if (!strcmp(map->image->name, image_name)) {
136 fprintf(stderr, "swap map for image %s from %s to %s\n", image_name, proc->name, map->image->name);
138 proc->name = xstrdup(map->image->name);
146 * a map o
[all...]
/external/qemu/android/utils/
H A Dintmap.c18 /* We implement the map as two parallel arrays.
25 * number of items in the map.
42 AIntMap* map; local
44 ANEW0(map);
45 map->size = 0;
46 map->capacity = 4;
47 map->keys = map->keys0;
48 map->values = map
75 aintMap_get( AIntMap* map, int key ) argument
81 aintMap_getWithDefault( AIntMap* map, int key, void* def ) argument
125 aintMap_set( AIntMap* map, int key, void* value ) argument
158 aintMap_del( AIntMap* map, int key ) argument
202 AIntMap* map; local
[all...]
/external/qemu/distrib/sdl-1.2.12/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/qemu/distrib/sdl-1.2.12/src/video/vgl/
H A DSDL_vglevents.c66 SDL_SetError("Unable to get keyboard map");
278 int map; local
282 map = 0;
284 map += 1;
287 map += 2;
290 map += 4;
292 if ( !(vga_keymap->key[scancode].spcl & (0x80 >> map)) ) {
293 keysym->unicode = vga_keymap->key[scancode].map[map];
/external/skia/src/animator/
H A DSkDump.cpp90 const SkDisplayEnumMap& map = SkAnimatorScript::GetEnumValues(type); local
91 const char* str = map.fValues;
/external/webkit/Source/WebCore/platform/network/
H A DCredentialStorage.cpp43 DEFINE_STATIC_LOCAL(ProtectionSpaceToCredentialMap, map, ());
44 return map;
56 DEFINE_STATIC_LOCAL(PathToDefaultProtectionSpaceMap, map, ());
57 return map;
97 // The map can contain both a path and its subpath - while redundant, this makes lookups faster.
118 PathToDefaultProtectionSpaceMap& map = pathToDefaultProtectionSpaceMap(); local
122 return map.end();
127 PathToDefaultProtectionSpaceMap::iterator iter = map.find(directoryURL);
128 if (iter != map.end())
132 return map
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebsecurityorigin.cpp262 const URLSchemesMap& map = SchemeRegistry::localSchemes(); local
263 URLSchemesMap::const_iterator end = map.end();
264 for (URLSchemesMap::const_iterator i = map.begin(); i != end; ++i) {
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
H A DSasl2Test.java513 public String[] getMechanismNames(Map<String, ?> map) { argument
529 public String[] getMechanismNames(Map<String, ?> map) { argument
547 public String[] getMechanismNames(Map<String, ?> map) { argument
562 public String[] getMechanismNames(Map<String, ?> map) { argument
/external/bluetooth/glib/tests/
H A Dmapping-test.c83 GMappedFile *map; local
86 map = g_mapped_file_new (filename, writable, &error);
87 if (!map)
90 g_print ("failed to map '%s' non-writable, shared: %s\n",
95 return map;
101 GMappedFile *map; local
104 map = map_or_die (filename, FALSE);
115 g_mapped_file_get_contents (map),
116 g_mapped_file_get_length (map));
124 GMappedFile *map; local
141 GMappedFile *map; local
171 GMappedFile *map; local
[all...]
/external/checkpolicy/
H A Dcheckmodule.c54 void *map; local
68 map =
70 if (map == MAP_FAILED) {
71 fprintf(stderr, "Can't map '%s': %s\n", file, strerror(errno));
76 f.data = map;
/external/chromium/base/
H A Dfile_descriptor_shuffle_unittest.cc73 InjectiveMultimap map; local
76 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
81 InjectiveMultimap map; local
83 map.push_back(InjectionArc(0, 0, false));
85 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
90 InjectiveMultimap map; local
92 map.push_back(InjectionArc(0, 0, true));
94 EXPECT_TRUE(PerformInjectiveMultimap(map, &tracer));
99 InjectiveMultimap map; local
101 map
109 InjectiveMultimap map; local
121 InjectiveMultimap map; local
132 InjectiveMultimap map; local
144 InjectiveMultimap map; local
159 InjectiveMultimap map; local
174 InjectiveMultimap map; local
189 InjectiveMultimap map; local
204 InjectiveMultimap map; local
216 InjectiveMultimap map; local
229 InjectiveMultimap map; local
242 InjectiveMultimap map; local
269 InjectiveMultimap map; local
276 InjectiveMultimap map; local
284 InjectiveMultimap map; local
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextensions_quota_service.h19 #include <map>
50 typedef std::map<std::string, QuotaLimitHeuristics> FunctionHeuristicsMap;
59 void PurgeFunctionHeuristicsMap(FunctionHeuristicsMap* map);
64 // key for the mapping. As an extension invokes functions, the map keeps
67 std::map<std::string, FunctionHeuristicsMap> function_heuristics_;
77 // A QuotaLimitHeuristic is two things: 1, A heuristic to map extension
145 explicit QuotaLimitHeuristic(const Config& config, BucketMapper* map);
176 explicit TimedLimit(const Config& config, BucketMapper* map) argument
177 : QuotaLimitHeuristic(config, map) {}
188 BucketMapper* map);
[all...]
/external/chromium/chrome/browser/
H A Dplugin_exceptions_table_model.cc42 HostContentSettingsMap* map = entry.is_otr ? otr_map_ : map_; local
43 map->SetContentSetting(entry.pattern,
H A Dplugin_exceptions_table_model_unittest.cc68 HostContentSettingsMap* map = profile_->GetHostContentSettingsMap(); local
72 map->SetContentSetting(example_com,
76 map->SetContentSetting(moose_org,
80 map->SetContentSetting(example_com,
85 table_model_.reset(new MockPluginExceptionsTableModel(map, NULL));
186 HostContentSettingsMap* map = profile_->GetHostContentSettingsMap(); local
188 map->SetContentSetting(ContentSettingsPattern("[*.]blurp.net"),
/external/chromium/chrome/browser/printing/
H A Dprinting_message_filter.cc28 typedef std::map<int, FilePath> SequenceToPathMap;
31 SequenceToPathMap map; member in struct:__anon1796::PrintingSequencePathMap
127 SequenceToPathMap* map = &g_printing_file_descriptor_map.Get().map; local
134 SequenceToPathMap::iterator it = map->find(*sequence_number);
135 if (it != map->end()) {
139 (*map)[*sequence_number] = path;
149 SequenceToPathMap* map = &g_printing_file_descriptor_map.Get().map; local
150 SequenceToPathMap::iterator it = map
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dalloc.c32 static void check_block_uninit(ext2_filsys fs, ext2fs_block_bitmap map, argument
67 ext2fs_fast_mark_block_bitmap(map, blk);
69 ext2fs_fast_unmark_block_bitmap(map, blk);
78 static void check_inode_uninit(ext2_filsys fs, ext2fs_inode_bitmap map, argument
90 ext2fs_fast_unmark_inode_bitmap(map, ino);
104 ext2fs_inode_bitmap map, ext2_ino_t *ret)
112 if (!map)
113 map = fs->inode_map;
114 if (!map)
129 check_inode_uninit(fs, map, (
102 ext2fs_new_inode(ext2_filsys fs, ext2_ino_t dir, int mode EXT2FS_ATTR((unused)), ext2fs_inode_bitmap map, ext2_ino_t *ret) argument
149 ext2fs_new_block(ext2_filsys fs, blk_t goal, ext2fs_block_bitmap map, blk_t *ret) argument
235 ext2fs_get_free_blocks(ext2_filsys fs, blk_t start, blk_t finish, int num, ext2fs_block_bitmap map, blk_t *ret) argument
[all...]
H A Dbitmaps.c46 void ext2fs_set_bitmap_padding(ext2fs_generic_bitmap map) argument
48 ext2fs_set_generic_bitmap_padding(map);
/external/grub/stage2/
H A Dfsys_ffs.c68 /* used for filesystem map blocks */
147 int logno, off, size, map, ret = 0; local
155 if ((map = block_map (logno)) < 0)
165 devread (fsbtodb (SUPERBLOCK, map), off, size, buf);
186 int block, off, loc, map, ino = ROOTINO; local
255 if ((map = block_map (block)) < 0
256 || !devread (fsbtodb (SUPERBLOCK, map), 0,
H A Dfsys_ufs2.c64 /* used for filesystem map blocks */
172 grub_int64_t map; local
180 if ((map = block_map (logno)) < 0)
190 devread (fsbtodb (SUPERBLOCK, map), off, size, buf);
211 grub_int64_t map; local
276 if ((map = block_map (block)) < 0
277 || !devread (fsbtodb (SUPERBLOCK, map), 0,
/external/guava/guava/src/com/google/common/base/
H A DFunctions.java93 * Returns a function which performs a map lookup. The returned function throws an {@link
94 * IllegalArgumentException} if given a key that does not exist in the map.
96 public static <K, V> Function<K, V> forMap(Map<K, V> map) { argument
97 return new FunctionForMapNoDefault<K, V>(map);
101 final Map<K, V> map; field in class:Functions.FunctionForMapNoDefault
103 FunctionForMapNoDefault(Map<K, V> map) { argument
104 this.map = checkNotNull(map);
109 V result = map.get(key);
110 checkArgument(result != null || map
143 forMap(Map<K, ? extends V> map, @Nullable V defaultValue) argument
148 final Map<K, ? extends V> map; field in class:Functions.ForMapWithDefault
151 ForMapWithDefault(Map<K, ? extends V> map, @Nullable V defaultValue) argument
[all...]
H A DJoiner.java329 * An object that joins map entries in the same manner as {@code Joiner} joins iterables and
340 * method that accepts a map as input, and receive output of the form {@code
356 * Appends the string representation of each entry of {@code map}, using the previously
359 public <A extends Appendable> A appendTo(A appendable, Map<?, ?> map) throws IOException { argument
360 return appendTo(appendable, map.entrySet());
364 * Appends the string representation of each entry of {@code map}, using the previously
368 public StringBuilder appendTo(StringBuilder builder, Map<?, ?> map) { argument
369 return appendTo(builder, map.entrySet());
373 * Returns a string containing the string representation of each entry of {@code map}, using the
376 public String join(Map<?, ?> map) { argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapBasedMultiset.java71 /** Used during deserialization only. The backing map must be empty. */
306 Map<E, Count> map) {
307 Count frequency = map.remove(element);
328 private final Map<E, Count> map; field in class:AbstractMapBasedMultiset.MapBasedElementSet
331 MapBasedElementSet(Map<E, Count> map) { argument
332 this.map = map;
333 delegate = map.keySet();
342 = map.entrySet().iterator();
369 return removeAllOccurrences(element, map) !
305 removeAllOccurrences(@ullable Object element, Map<E, Count> map) argument
[all...]

Completed in 2020 milliseconds

1234567891011>>