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

<<21222324252627282930>>

  /external/kernel-headers/original/asm-x86/
irq_32.h 41 extern void fixup_irqs(cpumask_t map);
  /external/llvm/include/llvm/CodeGen/
LiveStackAnalysis.h 23 #include <map>
36 typedef std::map<int, LiveInterval> SS2IntervalMap;
40 std::map<int, const TargetRegisterClass*> S2RCMap;
79 std::map<int, const TargetRegisterClass*>::const_iterator
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_pixels_c.h 38 extern void SDL_InvalidateMap(SDL_BlitMap *map);
40 extern void SDL_FreeBlitMap(SDL_BlitMap *map);
  /external/qemu/elff/
elf_mapped_section.h 49 bool map(MapFile* handle, Elf_Xword offset, Elf_Word size);
  /external/regex-re2/re2/testing/
regexp_test.cc 49 const map<string, int>* have = x->NamedCaptures();
53 map<string, int> want;
68 const map<int, string>* have = x->CaptureNames();
71 map<int, string> want;
  /external/valgrind/main/none/tests/linux/
mremap.c 8 static char *map; local
12 if (map != NULL)
13 munmap(map, mapsz);
22 map = p;
  /external/zlib/src/
zlib2ansi 58 my %pList = map { $_ => $i++ }
74 push @outParams, map { $type . $_ } @bits;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
87 @outParams = map { " $_" }
  /frameworks/base/media/jni/
android_media_Utils.h 38 JNIEnv *env, const sp<AMessage> &msg, jobject *map);
  /frameworks/compile/mclinker/lib/Target/
ELFMCLinker.cpp 21 static const NameMap map[] = variable
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multimap/multimap.cons/
compare_alloc.pass.cpp 10 // <map>
16 #include <map>
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multimap/multimap.modifiers/
clear.pass.cpp 10 // <map>
16 #include <map>
  /ndk/sources/host-tools/ndk-stack/elff/
elf_mapped_section.h 49 bool map(MapFile* handle, Elf_Xword offset, Elf_Word size);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
channelmap.h 41 * A channel map consists of an array of \ref pa_channel_position values,
49 * \li pa_channel_map_init_mono() - Create a channel map with only mono audio.
51 * \li pa_channel_map_init_auto() - Create a standard channel map for up to
59 * \li pa_channel_map_valid() - Tests if a channel map is valid.
62 * map.
150 PA_CHANNEL_MAP_DEFAULT = PA_CHANNEL_MAP_AIFF /**< The default channel map */
153 /** A channel map which can be used to attach labels to specific
158 pa_channel_position_t map[PA_CHANNELS_MAX]; /**< Channel labels */ member in struct:pa_channel_map
161 /** Initialize the specified channel map and return a pointer to it */
164 /** Initialize the specified channel map for monoaural audio and return a pointer to it *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
channelmap.h 41 * A channel map consists of an array of \ref pa_channel_position values,
49 * \li pa_channel_map_init_mono() - Create a channel map with only mono audio.
51 * \li pa_channel_map_init_auto() - Create a standard channel map for up to
59 * \li pa_channel_map_valid() - Tests if a channel map is valid.
62 * map.
150 PA_CHANNEL_MAP_DEFAULT = PA_CHANNEL_MAP_AIFF /**< The default channel map */
153 /** A channel map which can be used to attach labels to specific
158 pa_channel_position_t map[PA_CHANNELS_MAX]; /**< Channel labels */ member in struct:pa_channel_map
161 /** Initialize the specified channel map and return a pointer to it */
164 /** Initialize the specified channel map for monoaural audio and return a pointer to it *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
channelmap.h 41 * A channel map consists of an array of \ref pa_channel_position values,
49 * \li pa_channel_map_init_mono() - Create a channel map with only mono audio.
51 * \li pa_channel_map_init_auto() - Create a standard channel map for up to
59 * \li pa_channel_map_valid() - Tests if a channel map is valid.
62 * map.
150 PA_CHANNEL_MAP_DEFAULT = PA_CHANNEL_MAP_AIFF /**< The default channel map */
153 /** A channel map which can be used to attach labels to specific
158 pa_channel_position_t map[PA_CHANNELS_MAX]; /**< Channel labels */ member in struct:pa_channel_map
161 /** Initialize the specified channel map and return a pointer to it */
164 /** Initialize the specified channel map for monoaural audio and return a pointer to it *
    [all...]
  /system/extras/showmap/
showmap.c 123 static void enqueue_map(mapinfo **head, mapinfo *map, int sort_by_address, int coalesce_by_name) {
127 if (!map) {
132 if (current && coalesce_by_name && !strcmp(map->name, current->name)) {
133 current->size += map->size;
134 current->rss += map->rss;
135 current->pss += map->pss;
136 current->shared_clean += map->shared_clean;
137 current->shared_dirty += map->shared_dirty;
138 current->private_clean += map->private_clean;
139 current->private_dirty += map->private_dirty
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-scope.rb 16 @A.members.map( &:to_s ).should == %w( a b )
17 @B.members.map( &:to_s ).should == %w( count )
18 @C.members.map( &:to_s ).should == %w( a b c )
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
SystemTest.java 25 import java.util.Map;
311 Map map = System.getenv(); local
313 map.containsKey(null);
320 map.containsKey(new Integer(10));
327 map.containsValue(null);
334 map.containsValue(new Integer(10));
341 map.get(null);
348 map.get(new Integer(10));
355 map.put(null, "AAA")
    [all...]
  /external/apache-http/src/org/apache/http/auth/
AuthSchemeRegistry.java 37 import java.util.Map;
53 private final Map<String,AuthSchemeFactory> registeredSchemes;
137 * with the content of the map passed as a parameter.
139 * @param map authentication schemes
141 public synchronized void setItems(final Map<String, AuthSchemeFactory> map) {
142 if (map == null) {
146 registeredSchemes.putAll(map);
  /external/apache-http/src/org/apache/http/conn/params/
ConnPerRouteBean.java 34 import java.util.Map;
39 * This class maintains a map of HTTP routes to maximum number of connections allowed
55 private final Map<HttpRoute, Integer> maxPerHostMap;
106 public void setMaxForRoutes(final Map<HttpRoute, Integer> map) {
107 if (map == null) {
111 this.maxPerHostMap.putAll(map);
  /external/apache-http/src/org/apache/http/conn/scheme/
SchemeRegistry.java 36 import java.util.Map;
55 private final Map<String,Scheme> registeredSchemes;
174 * with the content of the map passed as a parameter.
176 * @param map protocol schemes
178 public synchronized void setItems(final Map<String, Scheme> map) {
179 if (map == null) {
183 registeredSchemes.putAll(map);
  /external/apache-http/src/org/apache/http/cookie/
CookieSpecRegistry.java 38 import java.util.Map;
54 private final Map<String,CookieSpecFactory> registeredSpecs;
148 * specs} with the content of the map passed as a parameter.
150 * @param map cookie specs
152 public synchronized void setItems(final Map<String, CookieSpecFactory> map) {
153 if (map == null) {
157 registeredSpecs.putAll(map);
  /external/chromium/chrome/browser/chromeos/extensions/
file_browser_event_router.h 10 #include <map>
42 typedef std::map<std::string, linked_ptr<chromeos::SystemNotification> >
44 typedef std::map<std::string, std::string> MountPointMap;
  /external/chromium/chrome/browser/content_settings/
content_settings_base_provider.h 9 #include <map>
20 typedef std::map<ContentSettingsTypeResourceIdentifierPair, ContentSetting>
32 // Map for ContentSettings.
33 typedef std::map<std::string, ExtendedContentSettings> HostContentSettings;
120 // Whether this settings map is for an OTR session.
  /external/chromium/chrome/browser/geolocation/
geolocation_content_settings_map.h 16 #include <map>
35 typedef std::map<GURL, ContentSetting> OneOriginSettings;
36 typedef std::map<GURL, OneOriginSettings> AllOriginsSettings;

Completed in 807 milliseconds

<<21222324252627282930>>