/external/svox/pico/lib/ |
picopam.h | 19 * Phonetic to Acoustic Mapping PU - Header file 31 * <b> Phonetic to acoustic mapping module </b>\n 33 * This module is responsible for mapping the phonetic domain features generated from text analysis
|
/frameworks/base/docs/html/tools/help/ |
proguard.jd | 161 <dt><code>mapping.txt</code></dt> 162 <dd>Lists the mapping between the original and obfuscated class, method, and field names. 228 <code>mapping.txt</code> file, which shows you the original class, method, and field names 235 <pre>retrace.bat|retrace.sh [-verbose] mapping.txt [<stacktrace_file>]</pre> 238 <pre>retrace.bat -verbose mapping.txt obfuscated_trace.txt</pre> 245 <p>Save the <code>mapping.txt</code> file for every release that you publish to your users. 246 By retaining a copy of the <code>mapping.txt</code> file for each release build, 248 A project's <code>mapping.txt</code> file is overwritten every time you do a release build, so you must be 255 build overwrites the previous <code>mapping.txt</code> file. A user submits a bug report 257 of debugging the user's stack trace, because the <code>mapping.txt</code> file associated with the versio [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_operator.py | 6 operator.isMappingType(obj) -> isinstance(obj, collections.Mapping) 68 @invocation("isinstance(%s, collections.Mapping)") 70 return self._handle_type2abc(node, results, u"collections", u"Mapping")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_operator.py | 6 operator.isMappingType(obj) -> isinstance(obj, collections.Mapping) 68 @invocation("isinstance(%s, collections.Mapping)") 70 return self._handle_type2abc(node, results, u"collections", u"Mapping")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/json_graph/ |
adjacency.py | 107 mapping=[] 111 mapping.append(node) 114 source = mapping[i]
|
/prebuilts/tools/common/proguard/proguard4.7/docs/manual/retrace/ |
introduction.html | 49 <td class="whiteblock">Mapping file</td> 67 look like without obfuscation. The restoration is based on the mapping file 68 that ProGuard can write out during obfuscation. The mapping file links the
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
minidump_writer.cc | 343 const MappingInfo& mapping = *dumper_->mappings()[j]; local 344 if (ip >= mapping.start_addr && 345 ip < mapping.start_addr + mapping.size) { 350 std::max(mapping.start_addr, 354 uintptr_t(mapping.start_addr + mapping.size)); 452 static bool ShouldIncludeMapping(const MappingInfo& mapping) { 453 if (mapping.name[0] == 0 || // only want modules with filenames. 454 // Only want to include one mapping per shared lib 490 const MappingInfo& mapping = *dumper_->mappings()[i]; local 513 const MappingInfo& mapping = *dumper_->mappings()[i]; local [all...] |
linux_dumper.h | 63 // When we find the VDSO mapping in the process's address space, this 115 // |mapping|.name to truncate "(deleted)" from the file name if necessary. 116 bool ElfFileIdentifierForMapping(const MappingInfo& mapping, 132 // Extracts the effective path and file name of from |mapping|. In most cases 133 // the effective name/path are just the mapping's path and basename. In some 137 static void GetMappingEffectiveNameAndPath(const MappingInfo& mapping,
|
/external/eigen/Eigen/src/Core/ |
Map.h | 19 * \brief A matrix or vector expression mapping an existing array of data. 28 * This class represents a matrix or vector expression mapping an existing array of data. 34 * Here's an example of simply mapping a contiguous array as a \ref TopicStorageOrders "column-major" matrix: 40 * Here's an example of mapping an array as a vector, specifying an inner stride, that is, the pointer 46 * Here's an example of mapping an array while specifying an outer stride. Here, since we're mapping
|
/external/flac/libFLAC/ |
ogg_encoder_aspect.c | 91 * The basic FLAC -> Ogg mapping goes like this: 97 * + the 2 byte Ogg FLAC mapping version number 102 * the mapping only requires that a flush must occur after all 152 /* add 'FLAC' mapping magic */ 155 /* add Ogg FLAC mapping major version number */ 158 /* add Ogg FLAC mapping minor version number */
|
/external/google-breakpad/src/tools/mac/dump_syms/ |
macho_dump.cc | 127 void *mapping = mmap(NULL, attributes.st_size, PROT_READ, local 130 check_syscall(mapping == (void *)-1 ? -1 : 0, 131 "mapping contents of", filename); 135 if (!fat_reader.Read(reinterpret_cast<uint8_t *>(mapping), 161 ByteBuffer file_contents(reinterpret_cast<uint8_t *>(mapping) 184 munmap(mapping, attributes.st_size);
|
/external/icu/icu4c/source/tools/gennorm2/ |
gennorm2.cpp | 237 fprintf(stderr, "gennorm2 error: parsing remove-mapping %s\n", line); 249 fprintf(stderr, "gennorm2 error: parsing mapping string from %s\n", line); 252 UnicodeString mapping(FALSE, uchars, length); 256 "gennorm2 error: round-trip mapping for more than 1 code point on %s\n", 260 builder.setRoundTripMapping((UChar32)startCP, mapping); 263 builder.setOneWayMapping(c, mapping);
|
/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
AArch64ELFStreamer.cpp | 11 // from generic ELF streamer in emitting mapping symbols ($x and $d) to delimit 75 /// Extend the generic ELFStreamer class so that it can emit mapping symbols at 101 // We have to keep track of the mapping symbol state of any sections we 111 /// streamer. We override it to add the appropriate mapping symbol if 132 /// AArch64 streamer overrides it to add the appropriate mapping symbol ($d) 140 /// AArch64 streamer overrides it to add the appropriate mapping symbol ($d)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/isomorphism/tests/ |
test_isomorphvf2.py | 37 mapping = sorted(gm.mapping.items()) 38 # this mapping is only one of the possibilies 42 # assert_equal(mapping, isomap) 213 # for m in [gmB.mapping, gmB.mapping]:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/utils/ |
random_sequence.py | 198 def random_weighted_sample(mapping, k): 203 if k > len(mapping): 207 sample.add(weighted_choice(mapping)) 210 def weighted_choice(mapping): 216 rnd = random.random() * sum(mapping.values()) 217 for k, w in mapping.items():
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
StandardDescriptorProcessor.java | 89 registerVisitor("servlet-mapping", this.getClass().getDeclaredMethod("visitServletMapping", __signature)); 91 registerVisitor("mime-mapping", this.getClass().getDeclaredMethod("visitMimeMapping", __signature)); 93 registerVisitor("locale-encoding-mapping-list", this.getClass().getDeclaredMethod("visitLocaleEncodingList", __signature)); 101 registerVisitor("filter-mapping", this.getClass().getDeclaredMethod("visitFilterMapping", __signature)); 622 // Updated 8.2.3.g.v to say <servlet-mapping> elements are additive across web-fragments. 623 // <servlet-mapping> declared in web.xml overrides the mapping for the servlet specified in the web-fragment.xml 634 ServletMapping mapping = addServletMapping(servlet_name, node, context, descriptor); local 635 mapping.setDefault(context.getMetaData().getOrigin(servlet_name+".servlet.mappings") == Origin.WebDefaults); 1084 XmlParser.Node mapping = iter.next(); local 1215 ServletMapping mapping = new ServletMapping(); local 1239 FilterMapping mapping = new FilterMapping(); local 1385 ServletMapping mapping = new ServletMapping(); local 1468 ConstraintMapping mapping = new ConstraintMapping(); local 1481 ConstraintMapping mapping = new ConstraintMapping(); local 1491 ConstraintMapping mapping = new ConstraintMapping(); local [all...] |
/dalvik/dx/src/com/android/dx/ssa/ |
RegisterMapper.java | 24 * Represents a mapping between two register numbering schemes. 25 * Subclasses of this may be mutable, and as such the mapping provided
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
package.html | 36 <p>XML mapping from characters to entity references is defined in 37 XMLEntities.res. HTML entity reference mapping is defined in HTMLEntities.res.
|
/external/clang/test/CoverageMapping/ |
continue.c | 1 // RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name continue.c %s | FileCheck %s
|
if.c | 1 // RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name if.c %s | FileCheck %s
|
macros.c | 1 // RUN: %clang_cc1 -fprofile-instr-generate -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name macros.c %s | FileCheck %s
|
/external/flac/libFLAC/include/private/ |
ogg_mapping.h | 53 /** The length of the Ogg FLAC mapping major version number in bytes. */ 56 /** The length of the Ogg FLAC mapping minor version number in bytes. */
|
/external/icu/icu4c/source/common/ |
ucnv_ext.h | 43 * It is an error if a base file contains any regular (not extension) mapping 44 * from the same sequence as a mapping in the extension file 45 * because the base mapping would hide the extension mapping. 74 * and a base table entry is a prefix of a multi-character mapping, then 81 * of UChars or bytes in a mapping to 205 * does not start any mapping input. 210 * Contains toUnicode mapping results, stored as sequences of UChars. 231 * return no mapping, but request for <subchar1>; 236 * "good one-way" mapping (|4); -- new in ICU4C 51, _MBCSHeader.version 5.4/4. [all...] |
/external/jetty/src/java/org/eclipse/jetty/servlet/jmx/ |
FilterMappingMBean.java | 36 FilterMapping mapping = (FilterMapping)_managed; local 37 String name = mapping.getFilterName();
|
ServletMappingMBean.java | 36 ServletMapping mapping = (ServletMapping)_managed; local 37 String name = mapping.getServletName();
|