/libcore/luni/src/main/java/org/xml/sax/helpers/ |
NamespaceSupport.java | 29 * parts; it can also be used in reverse for generating XML qnames 38 * String parts[] = new String[3]; 45 * parts = support.processName("p", parts, false); 46 * System.out.println("Namespace URI: " + parts[0]); 47 * System.out.println("Local name: " + parts[1]); 48 * System.out.println("Raw name: " + parts[2]); 50 * parts = support.processName("dc:title", parts, false); 51 * System.out.println("Namespace URI: " + parts[0]) [all...] |
/frameworks/base/core/java/android/content/res/ |
Configuration.java | 1403 ArrayList<String> parts = new ArrayList<String>(); local [all...] |
/build/tools/ |
java-layers.py | 72 self.parts = [(dep.lower.split('.'),dep) for dep in deps.itervalues()] 98 # Returns the number of parts that match 99 def compare_parts(parts, pkg): 100 if len(parts) > len(pkg): 103 for i in range(0, len(parts)): 104 if parts[i] != pkg[i]: 111 for (parts,dep) in self.parts: 112 x = compare_parts(parts, pkg)
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
task.rb | 208 parts = [ 'java', '-cp', @antlr_jar ] 209 parts.concat( @java_options ) 210 parts << 'org.antlr.Tool' << '-fo' << output_directory 211 parts << '-debug' if @debug 212 parts << '-profile' if @profile 213 parts << '-trace' if @trace 214 parts.concat( @compile_options ) 215 parts << grammar.path 216 return parts.map! { | t | escape( t ) }.join( ' ' )
|
/external/blktrace/ |
strverscmp.c | 34 end of these two parts without noticing a difference, we return to the
35 standard comparison mode. There are two types of numeric parts:
37 of the numeric parts affect the way we sort them:
61 @result{} >0 // @r{two fractional parts.}
73 fractional parts, S_Z: idem but with leading Zeroes only */
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/ |
test_utils.js | 175 var parts = [], 181 parts.push(treeAdapter.getDocumentTypeNodeName(node) || ''); 184 parts.push('"' + (publicId || '') + '"'); 185 parts.push('"' + (systemId || '') + '"'); 188 parts.forEach(function (part) {
|
/external/llvm/ |
CODE_OWNERS.TXT | 25 D: InstrProfiling and related parts of ProfileData 34 D: ARM target, parts of code generator not covered by someone else 119 D: SampleProfile and related parts of ProfileData 151 D: AddressSanitizer, ThreadSanitizer (LLVM parts) 155 D: Windows parts of Support, Object, ar, nm, objdump, ranlib, size
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/ |
list_partition.h | 79 /** @brief Splits a sequence given by input iterators into parts of 85 * @param __starts Start iterators for the resulting parts, dimension 88 * @param __lengths Length of the resulting parts. 89 * @param __num_parts Number of parts to split the sequence into. 146 // Calculation of the parts (one must be extracted from __current
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/ |
list_partition.h | 79 /** @brief Splits a sequence given by input iterators into parts of 85 * @param __starts Start iterators for the resulting parts, dimension 88 * @param __lengths Length of the resulting parts. 89 * @param __num_parts Number of parts to split the sequence into. 146 // Calculation of the parts (one must be extracted from __current
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/ |
list_partition.h | 79 /** @brief Splits a sequence given by input iterators into parts of 85 * @param __starts Start iterators for the resulting parts, dimension 88 * @param __lengths Length of the resulting parts. 89 * @param __num_parts Number of parts to split the sequence into. 146 // Calculation of the parts (one must be extracted from __current
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/ |
list_partition.h | 79 /** @brief Splits a sequence given by input iterators into parts of 85 * @param __starts Start iterators for the resulting parts, dimension 88 * @param __lengths Length of the resulting parts. 89 * @param __num_parts Number of parts to split the sequence into. 146 // Calculation of the parts (one must be extracted from __current
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/ |
list_partition.h | 79 /** @brief Splits a sequence given by input iterators into parts of 85 * @param __starts Start iterators for the resulting parts, dimension 88 * @param __lengths Length of the resulting parts. 89 * @param __num_parts Number of parts to split the sequence into. 146 // Calculation of the parts (one must be extracted from __current
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/ |
headers.py | 161 parts = [] 163 parts.append(_value) 166 parts.append(k.replace('_', '-')) 168 parts.append(_formatparam(k.replace('_', '-'), v)) 169 self._headers.append((_name, "; ".join(parts)))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/ |
headers.py | 161 parts = [] 163 parts.append(_value) 166 parts.append(k.replace('_', '-')) 168 parts.append(_formatparam(k.replace('_', '-'), v)) 169 self._headers.append((_name, "; ".join(parts)))
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapbMessageMime.java | 36 * sort the parts if needed */ 149 private ArrayList<MimePart> parts = null; field in class:BluetoothMapbMessageMime 165 * @return the parts 168 return parts; 176 if(parts != null) { 177 for(MimePart part : parts) { 186 if(parts == null) 187 parts = new ArrayList<BluetoothMapbMessageMime.MimePart>(); 189 parts.add(newPart); 300 if(parts != null) 579 String[] parts = partStr.split("\\r\\n\\r\\n", 2); \/\/ Split the header from the body local [all...] |
/external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/ |
serial_number_generator.py | 80 parts = [] 82 parts.insert(0, ident[-group:]) 84 ident = '-'.join(parts)
|
/external/webrtc/src/modules/audio_processing/aec/ |
aec_core.h | 37 // as long arrays of float, all the real parts followed by all the imaginary 39 // is better than two arrays (one for the real parts and one for the imaginary 40 // parts) as this other way would require two pointers instead of one and cause
|
/frameworks/base/tools/aapt2/ |
Files.h | 66 void appendPath(std::string* base, const StringPiece& part, const Ts&... parts); 119 void appendPath(std::string* base, const StringPiece& part, const Ts&... parts) { 123 appendPath(base, parts...);
|
Locale.cpp | 76 std::vector<std::string> parts = util::splitAndLowercase(str, '_'); local 78 const int numTags = parts.size(); 81 const std::string& lang = parts[0]; 93 const std::string& part2 = parts[1]; 110 const std::string& part3 = parts[2]; 124 const std::string& part4 = parts[3];
|
/external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/ |
Main.java | 209 String[] parts = header.split(":", -1); local 210 if ("Content-Type".equalsIgnoreCase(parts[0])) { 211 mimeType = parts[1].trim(); 229 String[] parts = header.split(":", 2); local 230 request.header(parts[0], parts[1]);
|
/external/vixl/src/vixl/a64/ |
decoder-a64.h | 217 // Decode the branch, system command, and exception generation parts of 222 // Decode the load and store parts of the instruction tree, and call 227 // Decode the logical immediate and move wide immediate parts of the 232 // Decode the bitfield and extraction parts of the instruction tree, 237 // Decode the data processing parts of the instruction tree, and call the 242 // Decode the floating point parts of the instruction tree, and call the
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/ |
errordocument.py | 79 parts = self.url.split('?') 80 environ['PATH_INFO'] = parts[0] 81 if len(parts) > 1: 82 environ['QUERY_STRING'] = parts[1] 302 parts = status.split(' ') 304 code = int(parts[0]) 308 'received an invalid status code %s'%repr(parts[0]) 310 message = ' '.join(parts[1:])
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/ |
template.py | 120 parts = [] 121 self._interpret_codes(self._parsed, ns, out=parts) 122 return ''.join(parts) 146 parts = code[2:] 147 self._interpret_if(parts, ns, out) 149 parts = code[2].split('|') 150 base = self._eval(parts[0], ns, pos) 151 for part in parts[1:]: 184 def _interpret_if(self, parts, ns, out): 187 for part in parts [all...] |
template.py.2015-04-30-123224 | 125 parts = [] 126 self._interpret_codes(self._parsed, ns, out=parts) 127 return ''.join(parts) 151 parts = code[2:] 152 self._interpret_if(parts, ns, out) 154 parts = code[2].split('|') 155 base = self._eval(parts[0], ns, pos) 156 for part in parts[1:]: 189 def _interpret_if(self, parts, ns, out): 192 for part in parts [all...] |
template.py.orig | 125 parts = [] 126 self._interpret_codes(self._parsed, ns, out=parts) 127 return ''.join(parts) 151 parts = code[2:] 152 self._interpret_if(parts, ns, out) 154 parts = code[2].split('|') 155 base = self._eval(parts[0], ns, pos) 156 for part in parts[1:]: 189 def _interpret_if(self, parts, ns, out): 192 for part in parts [all...] |