/external/icu4c/i18n/ |
uni2name.h | 22 * A transliterator that performs character to name mapping.
|
ucol_cnt.cpp | 49 /*uprv_cnttab_open(CompactEIntArray *mapping, UErrorCode *status) {*/ 50 uprv_cnttab_open(UNewTrie *mapping, UErrorCode *status) { 59 tbl->mapping = mapping; 217 /*CE = ucmpe32_get(table->mapping, i);*/ 218 CE = utrie_get32(table->mapping, i, NULL); 221 /*ucmpe32_set(table->mapping, i, CE);*/ 222 utrie_set32(table->mapping, i, CE); 274 r->mapping = t->mapping; [all...] |
ucol_elm.cpp | 147 t->mapping = utrie_open(NULL, NULL, UCOL_ELM_TRIE_CAPACITY, 160 t->contractions = uprv_cnttab_open(t->mapping, status); 238 /* mapping */ 239 if(t->mapping != NULL) { 240 /*r->mapping = ucmpe32_clone(t->mapping, status);*/ 241 r->mapping = utrie_clone(NULL, t->mapping, NULL, 0); 278 r->contractions->mapping = r->mapping; 1425 UNewTrie *mapping = t->mapping; local [all...] |
/external/icu4c/tools/gensprep/ |
gensprep.h | 49 storeMapping(uint32_t codepoint, uint32_t* mapping,int32_t length, UStringPrepType type, UErrorCode* status);
|
/external/iptables/extensions/ |
libipt_MASQUERADE.man | 7 target. Masquerading is equivalent to specifying a mapping to the IP
|
libipt_dscp_helper.c | 2 * DiffServ classname <-> DiffServ codepoint mapping functions.
|
/external/kernel-headers/original/asm-generic/ |
mman.h | 19 #define MAP_TYPE 0x0f /* Mask for type of mapping */
|
/external/kernel-headers/original/asm-x86/ |
swiotlb.h | 4 #include <asm/dma-mapping.h>
|
/external/kernel-headers/original/linux/ |
dma-mapping.h | 27 #include <asm/dma-mapping.h>
|
/external/ppp/pppd/plugins/pppoatm/ |
atmsap.h | 40 /* Mapping of "well-known" TCP, UDP, etc. port numbers to ATM BHLIs.
|
/external/proguard/examples/ |
retrace.pro | 20 # perform incremental obfuscation based on its mapping file, and only keep the
|
/external/tremolo/Tremolo/ |
codec_internal.h | 156 unsigned char mapping; member in struct:__anon6220 159 /* Mapping backend generic *****************************************/ 201 blocksize flag and a mapping (along with the mapping setup */
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
CallFailCause.java | 22 * See 22.001 Annex F.4 for mapping of cause codes to local tones.
|
/packages/apps/Phone/src/com/android/phone/ |
CarrierLogo.java | 40 // TODO: ideally, read the mapping from a config file
|
/external/kernel-headers/original/asm-arm/ |
cacheflush.h | 192 * These are private to the dma-mapping API. Do not use directly. 218 * These are private to the dma-mapping API. Do not use directly. 332 * the dcache entries associated with the kernel mapping. 340 #define flush_dcache_mmap_lock(mapping) \ 341 write_lock_irq(&(mapping)->tree_lock) 342 #define flush_dcache_mmap_unlock(mapping) \ 343 write_unlock_irq(&(mapping)->tree_lock)
|
/external/v8/tools/ |
js2c.py | 122 mapping = { } 126 mapping[macro.args[arg_index]] = replacement 139 result = macro.expand(mapping) 149 def expand(self, mapping): 151 for key, value in mapping.items(): 159 def expand(self, mapping): 162 args.append(mapping[arg])
|
/external/icu4c/test/intltest/ |
itspoof.cpp | 124 // membership in different mapping tables. 145 // This character NFKD normalizes to \u0020 \u064d \u0651, so its confusable mapping 158 // This mapping exists in the ML and MA tables, does not exist in SL, SA 166 // This mapping exists only in the MA table. 173 // This mapping exists in the ML and MA tables
|
/dalvik/dx/src/com/android/dx/ssa/ |
SsaRenamer.java | 53 * a mapping table for the current block being processed. Once the 54 * current block has been processed, this mapping table is then copied 289 * Provides a register mapping between the old register space 290 * and the current renaming mapping. The mapping is updated 319 "mapping registers of incompatible types! " 380 * Enforces a few contraints when a register mapping is added. 383 * <li> Ensures that all new SSA registers specs in the mapping 450 * Move insns are treated as a simple mapping operation, and 494 * spec that's going to go into the mapping is made up o [all...] |
/external/icu4c/tools/gencase/ |
gencase.c | 17 * parses them, and the case mapping properties for each character. 243 "create a binary file " UCASE_DATA_NAME "." UCASE_DATA_TYPE " with the case mapping properties\n" 433 /* is this a complex mapping? */ 519 * Add one complex mapping to caseSensitive that was filtered out above: 520 * Greek final Sigma has a conditional mapping but not locale-sensitive, 552 /* get the status of this mapping */ 565 /* get the mapping */ 569 fprintf(stderr, "gencase: error parsing CaseFolding.txt mapping at %s\n", fields[0][0]); 573 /* there is a simple mapping only if there is exactly one code point (count is in UChars) */ 586 /* check if there was a full mapping for this code point before * [all...] |
/dalvik/dx/src/com/android/dx/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();
|
/external/emma/core/java12/com/vladium/util/ |
IntIntMap.java | 103 * @param key mapping key 163 * Updates the table to map 'key' to 'value'. Any existing mapping is overwritten. 165 * @param key mapping key 166 * @param value mapping value 211 * Updates the table to map 'key' to 'value'. Any existing mapping is overwritten. 213 * @param key mapping key
|
IntObjectMap.java | 105 * @param key mapping key 107 * @return Object value mapping for 'key' [can be null]. 147 * Updates the table to map 'key' to 'value'. Any existing mapping is overwritten. 149 * @param key mapping key 150 * @param value mapping value [can be null]. 152 * @return Object previous value mapping for 'key' [can be null]
|
ObjectIntMap.java | 109 * @param key mapping key [may not be null] 153 * Updates the table to map 'key' to 'value'. Any existing mapping is overwritten. 155 * @param key mapping key [may not be null] 156 * @param value mapping value. 204 * Updates the table to map 'key' to 'value'. Any existing mapping is overwritten. 206 * @param key mapping key [may not be null]
|
/external/v8/src/ |
zone.h | 228 // is enabled and provides access to the mapping for the key. 233 // provides access to the mapping for the key. 236 // Finds the mapping with the greatest key less than or equal to the 240 // Find the mapping with the greatest key in this tree. 243 // Finds the mapping with the least key greater than or equal to the 247 // Find the mapping with the least key in this tree.
|
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/ |
http_server.py | 82 # One mapping where we can get to everything 160 for mapping in mappings: 162 if 'sslcert' in mapping: 164 ' ssl.pemfile = "%s"\n' % mapping['sslcert']) 169 '}\n\n') % (mapping['port'], mapping['docroot']))
|