/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_stacktrace_test.cc | 32 void *mapping; member in class:__sanitizer::FastUnwindTest 47 mapping = MmapOrDie(2 * ps, "FastUnwindTest"); 48 MprotectNoAccess((uptr)mapping, ps); 51 fake_stack = (uhwptr *)((uptr)mapping + ps + sizeof(uhwptr)); 65 fake_bottom = (uhwptr)mapping; 71 UnmapOrDie(mapping, 2 * ps);
|
/external/kernel-headers/original/uapi/linux/ |
kd.h | 55 #define GIO_SCRNMAP 0x4B40 /* get screen mapping from kernel */ 56 #define PIO_SCRNMAP 0x4B41 /* put screen mapping table in kernel */ 57 #define GIO_UNISCRNMAP 0x4B69 /* get full Unicode screen mapping */ 58 #define PIO_UNISCRNMAP 0x4B6A /* set full Unicode screen mapping */ 60 #define GIO_UNIMAP 0x4B66 /* get unicode-to-font mapping from kernel */ 69 #define PIO_UNIMAP 0x4B67 /* put unicode-to-font mapping in kernel */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
kd.h | 55 #define GIO_SCRNMAP 0x4B40 /* get screen mapping from kernel */ 56 #define PIO_SCRNMAP 0x4B41 /* put screen mapping table in kernel */ 57 #define GIO_UNISCRNMAP 0x4B69 /* get full Unicode screen mapping */ 58 #define PIO_UNISCRNMAP 0x4B6A /* set full Unicode screen mapping */ 60 #define GIO_UNIMAP 0x4B66 /* get unicode-to-font mapping from kernel */ 69 #define PIO_UNIMAP 0x4B67 /* put unicode-to-font mapping in kernel */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
kd.h | 56 #define GIO_SCRNMAP 0x4B40 /* get screen mapping from kernel */ 57 #define PIO_SCRNMAP 0x4B41 /* put screen mapping table in kernel */ 58 #define GIO_UNISCRNMAP 0x4B69 /* get full Unicode screen mapping */ 59 #define PIO_UNISCRNMAP 0x4B6A /* set full Unicode screen mapping */ 61 #define GIO_UNIMAP 0x4B66 /* get unicode-to-font mapping from kernel */ 70 #define PIO_UNIMAP 0x4B67 /* put unicode-to-font mapping in kernel */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
grammar.py | 9 There's also a table here mapping operators to their names in the 39 symbol2number -- a dict mapping symbol names to numbers. Symbol 44 number2symbol -- a dict mapping numbers to symbol names; 55 dfas -- a dict mapping symbol numbers to (DFA, first) 70 keywords -- a dict mapping keyword strings to arc labels. 72 tokens -- a dict mapping token numbers to arc labels.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
grammar.py | 9 There's also a table here mapping operators to their names in the 39 symbol2number -- a dict mapping symbol names to numbers. Symbol 44 number2symbol -- a dict mapping numbers to symbol names; 55 dfas -- a dict mapping symbol numbers to (DFA, first) 70 keywords -- a dict mapping keyword strings to arc labels. 72 tokens -- a dict mapping token numbers to arc labels.
|
/system/extras/perfprofd/quipper/ |
address_mapper.cc | 37 // Check that this mapping does not overflow the address space. 41 LOG(ERROR) << "Address mapping at " << std::hex << real_addr 46 // Check for collision with an existing mapping. This must be an overlap that 105 // If there is no existing mapping, add it to the beginning of quipper space. 135 // If it still hasn't succeeded in mapping, it means there is no free space in 136 // quipper space large enough for a mapping of this size.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/isomorphism/ |
isomorphvf2.py | 42 GM.mapping stores the isomorphism mapping from G1 to G2. 44 >>> GM.mapping 57 DiGM.mapping stores the isomorphism mapping from G1 to G2. 59 >>> DiGM.mapping 69 In the VF2 literature, a mapping M is said to be a graph-subgraph 239 # provided n is in the mapping. 241 # provided m is in the mapping. 258 # Provide a convienient way to access the isomorphism mapping [all...] |
/external/jetty/src/java/org/eclipse/jetty/servlet/ |
ServletHandler.java | 631 FilterMapping mapping = (FilterMapping)_filterPathMappings.get(i); local 632 if (mapping.appliesTo(pathInContext, dispatch)) 633 filters= LazyList.add(filters, mapping.getFilterHolder()); 646 FilterMapping mapping = (FilterMapping)LazyList.get(o,i); local 647 if (mapping.appliesTo(dispatch)) 648 filters=LazyList.add(filters,mapping.getFilterHolder()); 654 FilterMapping mapping = (FilterMapping)LazyList.get(o,i); local 655 if (mapping.appliesTo(dispatch)) 656 filters=LazyList.add(filters,mapping.getFilterHolder()); 870 ServletMapping mapping = new ServletMapping() local 974 FilterMapping mapping = new FilterMapping(); local 1043 FilterMapping mapping = new FilterMapping(); local [all...] |
/external/icu/icu4c/source/common/ |
ucase.h | 16 * Low-level Unicode character/string case mapping code. 169 /* string case mapping functions */ 214 * either to itself (in which case in-place mapping functions do nothing), 219 * Mapping to self: Negative values (~self instead of -self to support U+0000) 221 * Mapping to another code point: Positive values >UCASE_MAX_STRING_LENGTH 223 * Mapping to a string: The string length (0..UCASE_MAX_STRING_LENGTH) is 230 * Get the full lowercase mapping for c. 232 * @param csp Case mapping properties. 238 * @param pString If the mapping result is a string, then the pointer is 339 /* no exception: bits 15..7 are a 9-bit signed case mapping delta * [all...] |
ustr_imp.h | 104 * ustring.h/ustrcase.c and UnicodeString case mapping functions. 134 * String case mapping function type, used by ustrcase_map(). 181 * for string case mapping as a common function. 191 * UTF-8 string case mapping function type, used by ucasemap_mapUTF8(). 212 * for UTF-8 string case mapping as a common function.
|
/system/extras/librank/ |
librank.c | 128 struct mapping_info *mapping; local 138 2 * library->mappings_size * sizeof(struct mapping*)); 146 mapping = calloc(1, sizeof(*mapping)); 147 if (!mapping) { 148 fprintf(stderr, "Couldn't allocate space for mapping struct: %s\n", strerror(errno)); 151 mapping->proc = proc; 152 pm_memusage_zero(&mapping->usage); 154 library->mappings[library->mappings_count++] = mapping; 156 return mapping; [all...] |
/external/icu/icu4c/source/tools/gensprep/ |
gensprep.c | 279 uint32_t mapping[40]; local 289 fprintf(stderr, "gensprep: error parsing NormalizationCorrections.txt mapping at %s\n", fields[0][0]); 295 /* parse the mapping string */ 296 length=u_parseCodePoints(s, mapping, sizeof(mapping)/4, pErrorCode); 311 /* store the mapping */ 315 storeMapping(code,mapping, length, USPREP_MAP, pErrorCode); 330 /* fprintf(stdout,"Number of code points that have NormalizationCorrections mapping with length >1 : %i\n",len); */ 342 uint32_t mapping[40]; local 407 /* parse the mapping string * [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
PackageManagerSettingsTests.java | 207 /* verify mapping is correct (ks -> pub keys) */ 209 ArraySet<Long> mapping = ksMapping.get(1); local 210 assertEquals(1, mapping.size()); 211 assertTrue(mapping.contains(new Long(1))); 212 mapping = ksMapping.get(2); 213 assertEquals(1, mapping.size()); 214 assertTrue(mapping.contains(new Long(2))); 215 mapping = ksMapping.get(3); 216 assertEquals(1, mapping.size()); 217 assertTrue(mapping.contains(new Long(3))) [all...] |
/external/llvm/include/llvm/Object/ |
ELFYAML.h | 213 static void mapping(IO &IO, ELFYAML::FileHeader &FileHdr); 218 static void mapping(IO &IO, ELFYAML::Symbol &Symbol); 223 static void mapping(IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols); 227 static void mapping(IO &IO, ELFYAML::Relocation &Rel); 232 static void mapping(IO &IO, std::unique_ptr<ELFYAML::Section> &Section); 238 static void mapping(IO &IO, ELFYAML::Object &Object); 242 static void mapping(IO &IO, ELFYAML::SectionOrType §ionOrType);
|
/external/llvm/lib/ProfileData/ |
CoverageMappingWriter.cpp | 1 //=-- CoverageMappingWriter.cpp - Code coverage mapping writer -------------=// 10 // This file contains support for writing coverage mapping data for 30 /// \brief Gather only the expressions that are used by the mapping 114 // Write out the fileid -> filename mapping. 128 // Write out the mapping regions. 135 // Ensure that all file ids have at least one mapping region. 181 // Ensure that all file ids have at least one mapping region.
|
/external/chromium-trace/trace-viewer/third_party/six/ |
CHANGES | 50 - Issue #81: Add `six.urllib.request.splittag` mapping. 52 - Issue #80: Add `six.urllib.request.splituser` mapping. 107 - Issue #55: Add move mapping for xmlrpc.server. 132 - Issue #49: Add six.moves mapping for tkinter.ttk. 141 - Pull request #21: Add import mapping for urllib's proxy_bypass function. 143 - Issue #43: Add import mapping for the Python 2 xmlrpclib module. 145 - Issue #39: Add import mapping for the Python 2 thread module. 147 - Issue #40: Add import mapping for the Python 2 gdbm module. 161 - Issue #31: Add six.moves mapping for UserString.
|
/external/llvm/docs/ |
YamlIO.rst | 15 or string. The pound/hash symbol (#) begins a comment line. A mapping is 20 # a mapping 35 of mappings in which one of the mapping values is itself a sequence: 80 possible YAML representations that a direct mapping of your data structures 111 both reading and writing YAML. That is, the mapping between in-memory enum 127 static void mapping(IO &io, Person &info) { 224 YAML scalars are just strings (i.e. not a sequence or mapping). The YAML I/O 329 static void mapping(IO &io, Info &info) { 385 static void mapping(IO &io, Info& info) { 475 To be translated to or from a YAML mapping for your type T you must specialize [all...] |
/frameworks/support/v4/java/android/support/v4/util/ |
SparseArrayCompat.java | 73 * if no such mapping has been made. 81 * if no such mapping has been made. 95 * Removes the mapping from the specified key, if there was any. 116 * Removes the mapping at the specified index. 167 * Adds a mapping from the specified key to the specified value, 168 * replacing the previous mapping from the specified key if there 232 * the key from the <code>index</code>th key-value mapping that this 245 * the value from the <code>index</code>th key-value mapping that this 259 * value for the <code>index</code>th key-value mapping that this
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
PositionMap.java | 75 * if no such mapping has been made. 83 * if no such mapping has been made. 97 * Removes the mapping from the specified key, if there was any. 118 * Removes the mapping at the specified index. 177 * Adds a mapping from the specified key to the specified value, 178 * replacing the previous mapping from the specified key if there 242 * the key from the <code>index</code>th key-value mapping that this 255 * the value from the <code>index</code>th key-value mapping that this 269 * value for the <code>index</code>th key-value mapping that this
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/ |
permmap.py | 291 mapping = self.permmap[class_name][perm_name] 296 if not mapping['enabled']: 299 if mapping['direction'] == "r": 300 read_weight = max(read_weight, mapping['weight']) 301 elif mapping['direction'] == "w": 302 write_weight = max(write_weight, mapping['weight']) 303 elif mapping['direction'] == "b": 304 read_weight = max(read_weight, mapping['weight']) 305 write_weight = max(write_weight, mapping['weight'])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/ |
permmap.py | 291 mapping = self.permmap[class_name][perm_name] 296 if not mapping['enabled']: 299 if mapping['direction'] == "r": 300 read_weight = max(read_weight, mapping['weight']) 301 elif mapping['direction'] == "w": 302 write_weight = max(write_weight, mapping['weight']) 303 elif mapping['direction'] == "b": 304 read_weight = max(read_weight, mapping['weight']) 305 write_weight = max(write_weight, mapping['weight'])
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
otTables.py | 145 mapping = {} 154 list(map(operator.setitem, [mapping]*lenMapping, input, outNames)) 159 list(map(operator.setitem, [mapping]*lenMapping, input, subst)) 162 self.mapping = mapping 166 mapping = getattr(self, "mapping", None) 167 if mapping is None: 168 mapping = self.mapping = { [all...] |
/external/google-breakpad/src/client/linux/microdump_writer/ |
microdump_writer_unittest.cc | 76 // Push some extra mapping to check the MappingList logic. 91 MappingEntry mapping; local 92 mapping.first = info; 93 memcpy(mapping.second, kModuleGUID, sizeof(MDGUID)); 94 mappings.push_back(mapping);
|
/external/proguard/src/proguard/obfuscate/ |
MappingKeeper.java | 71 // Print out a warning if the mapping conflicts with a name that 114 // Print out a warning if the mapping conflicts with a name that 131 // Make sure the mapping name will be kept. 155 // Print out a warning if the mapping conflicts with a name that 172 // Make sure the mapping name will be kept.
|