| /external/chromium/base/ |
| global_descriptors_posix.cc | 31 for (Mapping::const_iterator 37 // In order to make unittests pass, we define a default mapping from keys to 43 for (Mapping::iterator 54 void GlobalDescriptors::Reset(const Mapping& mapping) { 55 descriptors_ = mapping;
|
| /external/icu4c/test/intltest/ |
| nptrans.cpp | 50 mapping = NULL; 63 // create the mapping transliterator 71 mapping = Transliterator::createFromRules(UnicodeString("NamePrepTransform", ""), rule, 113 (mapping == NULL) 116 delete mapping; 118 mapping = NULL; 130 delete mapping; 131 mapping = NULL; 157 mapping->transliterate(rsource);
|
| /external/kernel-headers/original/asm-x86/ |
| cacheflush.h | 14 #define flush_dcache_mmap_lock(mapping) do { } while (0) 15 #define flush_dcache_mmap_unlock(mapping) do { } while (0)
|
| /system/extras/librank/ |
| librank.c | 119 struct mapping_info *mapping; local 129 2 * library->mappings_size * sizeof(struct mapping*)); 137 mapping = calloc(1, sizeof(*mapping)); 138 if (!mapping) { 139 fprintf(stderr, "Couldn't allocate space for mapping struct: %s\n", strerror(errno)); 142 mapping->proc = proc; 143 pm_memusage_zero(&mapping->usage); 145 library->mappings[library->mappings_count++] = mapping; 147 return mapping; [all...] |
| /external/icu4c/tools/gensprep/ |
| store.c | 37 * The file format prepared and written here contains a 16-bit trie and a mapping table. 70 * indexes[_SPREP_ONE_UCHAR_MAPPING_INDEX_START] -- The starting index of 1 UChar mapping index in the mapping table 71 * indexes[_SPREP_TWO_UCHARS_MAPPING_INDEX_START] -- The starting index of 2 UChars mapping index in the mapping table 72 * indexes[_SPREP_THREE_UCHARS_MAPPING_INDEX_START] -- The starting index of 3 UChars mapping index in the mapping table 73 * indexes[_SPREP_FOUR_UCHARS_MAPPING_INDEX_START] -- The starting index of 4 UChars mapping index in the mapping table 98 * 1 - ON : The value in the next 14 bits is an index into the mapping tabl 213 UChar* mapping; member in struct:ValueStruct [all...] |
| gensprep.c | 276 uint32_t mapping[40]; local 286 fprintf(stderr, "gensprep: error parsing NormalizationCorrections.txt mapping at %s\n", fields[0][0]); 292 /* parse the mapping string */ 293 length=u_parseCodePoints(s, mapping, sizeof(mapping)/4, pErrorCode); 308 /* store the mapping */ 312 storeMapping(code,mapping, length, USPREP_MAP, pErrorCode); 327 /* fprintf(stdout,"Number of code points that have NormalizationCorrections mapping with length >1 : %i\n",len); */ 339 uint32_t mapping[40]; local 404 /* parse the mapping string * [all...] |
| /bionic/libc/kernel/arch-arm/asm/ |
| cacheflush.h | 86 #define flush_dcache_mmap_lock(mapping) write_lock_irq(&(mapping)->tree_lock) 87 #define flush_dcache_mmap_unlock(mapping) write_unlock_irq(&(mapping)->tree_lock)
|
| /development/ndk/platforms/android-3/arch-arm/include/asm/ |
| cacheflush.h | 86 #define flush_dcache_mmap_lock(mapping) write_lock_irq(&(mapping)->tree_lock) 87 #define flush_dcache_mmap_unlock(mapping) write_unlock_irq(&(mapping)->tree_lock)
|
| /external/kernel-headers/original/linux/ |
| dma-mapping.h | 27 #include <asm/dma-mapping.h>
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm/ |
| cacheflush.h | 86 #define flush_dcache_mmap_lock(mapping) write_lock_irq(&(mapping)->tree_lock) 87 #define flush_dcache_mmap_unlock(mapping) write_unlock_irq(&(mapping)->tree_lock)
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm/ |
| cacheflush.h | 86 #define flush_dcache_mmap_lock(mapping) write_lock_irq(&(mapping)->tree_lock) 87 #define flush_dcache_mmap_unlock(mapping) write_unlock_irq(&(mapping)->tree_lock)
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm/ |
| cacheflush.h | 86 #define flush_dcache_mmap_lock(mapping) write_lock_irq(&(mapping)->tree_lock) 87 #define flush_dcache_mmap_unlock(mapping) write_unlock_irq(&(mapping)->tree_lock)
|
| /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm/ |
| cacheflush.h | 86 #define flush_dcache_mmap_lock(mapping) write_lock_irq(&(mapping)->tree_lock) 87 #define flush_dcache_mmap_unlock(mapping) write_unlock_irq(&(mapping)->tree_lock)
|
| /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/asm/ |
| cacheflush.h | 86 #define flush_dcache_mmap_lock(mapping) write_lock_irq(&(mapping)->tree_lock) 87 #define flush_dcache_mmap_unlock(mapping) write_unlock_irq(&(mapping)->tree_lock)
|
| /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/asm/ |
| cacheflush.h | 86 #define flush_dcache_mmap_lock(mapping) write_lock_irq(&(mapping)->tree_lock) 87 #define flush_dcache_mmap_unlock(mapping) write_unlock_irq(&(mapping)->tree_lock)
|
| /external/apache-http/src/org/apache/commons/codec/language/ |
| Soundex.java | 32 * An instance of Soundex using the US_ENGLISH_MAPPING mapping. 39 * This is a default mapping of the 26 letters used in US English. A value of <code>0</code> for a letter position 51 * This is a default mapping of the 26 letters used in US English. A value of <code>0</code> for a letter position 108 * Creates a soundex instance using the given mapping. This constructor can be used to provide an internationalized 109 * mapping for a non-Western character set. 114 * @param mapping 115 * Mapping array to use when finding the corresponding code for a given character 117 public Soundex(char[] mapping) { 118 this.setSoundexMapping(mapping); 163 * @return Mapping code for a particular characte [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| CatchStructs.java | 147 for (Map.Entry<CatchHandlerList, Integer> mapping : 149 CatchHandlerList list = mapping.getKey(); 154 mapping.setValue(out.getCursor()); 276 for (Map.Entry<CatchHandlerList, Integer> mapping : 278 CatchHandlerList list = mapping.getKey(); 279 int offset = mapping.getValue();
|
| /dalvik/dx/src/com/android/dx/dex/file/ |
| CatchStructs.java | 145 for (Map.Entry<CatchHandlerList, Integer> mapping : 147 CatchHandlerList list = mapping.getKey(); 152 mapping.setValue(out.getCursor()); 274 for (Map.Entry<CatchHandlerList, Integer> mapping : 276 CatchHandlerList list = mapping.getKey(); 277 int offset = mapping.getValue();
|
| /external/v8/tools/ |
| js2c.py | 125 mapping = { } 129 mapping[macro.args[arg_index]] = replacement 142 result = macro.expand(mapping) 152 def expand(self, mapping): 154 for key, value in mapping.items(): 162 def expand(self, mapping): 165 args.append(mapping[arg])
|
| /external/openssl/crypto/bio/ |
| bss_log.c | 180 mapping[] = local 211 while(strncmp(buf, mapping[i].str, mapping[i].strl) != 0) i++; 212 priority = mapping[i].log_level; 213 pp = buf + mapping[i].strl;
|
| /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
| http_server.py | 95 # One mapping where we can get to everything 180 for mapping in mappings: 182 if 'sslcert' in mapping: 184 ' ssl.pemfile = "%s"\n' % mapping['sslcert']) 189 '}\n\n') % (mapping['port'], mapping['docroot']))
|
| /external/icu4c/i18n/ |
| ucol_cnt.h | 48 /*CompactEIntArray *mapping;*/ 49 UNewTrie *mapping; member in struct:CntTable 60 /*uprv_cnttab_open(CompactEIntArray *mapping, UErrorCode *status);*/ 61 uprv_cnttab_open(UNewTrie *mapping, UErrorCode *status);
|
| /external/valgrind/main/none/tests/amd64/ |
| faultstatus.c | 28 static char volatile *volatile mapping; variable 111 mapping = mmap(0, MAPSIZE, PROT_READ, MAP_PRIVATE, fd, 0);
|
| /external/valgrind/main/none/tests/x86/ |
| faultstatus.c | 31 static char volatile *volatile mapping; variable 129 mapping = mmap(0, MAPSIZE, PROT_READ, MAP_PRIVATE, fd, 0);
|
| /external/clang/include/clang/Lex/ |
| PPCallbacks.h | 146 diag::Mapping mapping, StringRef Str) { 282 diag::Mapping mapping, StringRef Str) { 283 First->PragmaDiagnostic(Loc, Namespace, mapping, Str); 284 Second->PragmaDiagnostic(Loc, Namespace, mapping, Str);
|