/external/python/cpython2/PC/VS8.0/ |
build_ssl.py | 84 parts = re.split("[.-]", os.path.basename(c))[1:] 86 if len(parts) >= 4: 88 if parts > best_parts: 89 best_parts = parts
|
/external/r8/src/main/java/com/android/tools/r8/graph/ |
DexAnnotation.java | 186 * and make them individual part. All other parts of the signature are simply grouped and separate 195 List<DexValue> parts = new ArrayList<>(); local 221 parts.add(toDexValue(signature.substring(at, endAt), factory)); 225 return new DexValueArray(parts.toArray(new DexValue[parts.size()]));
|
/external/skia/tests/ |
SubsetPath.cpp | 18 int parts = 1 << (31 - leadingZero); local 19 int partIndex = fSubset - parts; 22 int start = count * partIndex / parts; 23 *end = count * (partIndex + 1) / parts;
|
/external/v8/tools/ |
gen-postmortem-metadata.py | 403 parts = usetype.split('_'); 406 if (parts[0] == 'JS'): 413 for ii in range(start, len(parts)): 414 part = parts[ii];
|
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/ |
WaltTcpConnection.java | 207 String[] parts = s.trim().split("\\s+"); local 211 remoteClock.baseTime = RemoteClockInfo.microTime() - Long.parseLong(parts[1]); 212 remoteClock.minLag = Integer.parseInt(parts[2]); 213 remoteClock.maxLag = Integer.parseInt(parts[3]);
|
WaltDevice.java | 289 String[] parts = s.trim().split("\\s+"); local 290 tag = parts[0].charAt(0); 291 t = Integer.parseInt(parts[1]); 292 value = Integer.parseInt(parts[2]); 293 count = Integer.parseInt(parts[3]);
|
/frameworks/base/tools/aapt2/util/ |
Util.cpp | 40 std::vector<std::string> parts; local 46 parts.emplace_back(str.substr(start, current).to_string()); 48 std::string& part = parts.back(); 53 return parts;
|
/packages/services/Car/tools/ |
update-obd2-sensors.py | 59 parts = string.split('\n') 60 parts = [indent + part for part in parts] 61 return '\n'.join(parts) + "\n"
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
DefaultTestsZipInstaller.java | 222 private static String buildRelPath(String... parts) { 223 return ArrayUtil.join(FileListingService.FILE_SEPARATOR, (Object[]) parts); 226 private static String buildAbsPath(String... parts) { 227 return FileListingService.FILE_SEPARATOR + buildRelPath(parts);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/ |
header.py | 67 decoded parts of the header. Charset is None for non-encoded parts of the
85 parts = ecre.split(line)
86 while parts:
87 unenc = parts.pop(0).strip()
94 if parts:
95 charset, encoding = [s.lower() for s in parts[0:2]]
96 encoded = parts[2]
118 del parts[0:3]
486 # Put any left over parts on a line by themselves [all...] |
message.py | 143 """Return True if the message consists of multiple parts."""
405 parts = []
408 parts.append(k.replace('_', '-'))
410 parts.append(_formatparam(k.replace('_', '-'), v))
412 parts.insert(0, _value)
413 self._headers.append((_name, SEMISPACE.join(parts)))
737 parts = []
740 parts.append(k)
742 parts.append('%s=%s' % (k, v))
743 newheaders.append((h, SEMISPACE.join(parts)))
[all...] |
/external/autotest/frontend/client/src/autotest/common/ |
Utils.java | 171 String[] parts = component.split("="); local 172 if (parts.length > 2) { 175 String key = decodeComponent(parts[0]); 177 if (parts.length == 2) { 178 value = URL.decodeComponent(parts[1]); 253 String[] parts = list.split(splitRegex); local 255 for (String part : parts) {
|
/external/python/cpython2/Lib/email/ |
header.py | 67 decoded parts of the header. Charset is None for non-encoded parts of the 85 parts = ecre.split(line) 86 while parts: 87 unenc = parts.pop(0).strip() 94 if parts: 95 charset, encoding = [s.lower() for s in parts[0:2]] 96 encoded = parts[2] 118 del parts[0:3] 486 # Put any left over parts on a line by themselve [all...] |
message.py | 143 """Return True if the message consists of multiple parts.""" 405 parts = [] 408 parts.append(k.replace('_', '-')) 410 parts.append(_formatparam(k.replace('_', '-'), v)) 412 parts.insert(0, _value) 413 self._headers.append((_name, SEMISPACE.join(parts))) 737 parts = [] 740 parts.append(k) 742 parts.append('%s=%s' % (k, v)) 743 newheaders.append((h, SEMISPACE.join(parts))) [all...] |
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
ParserAdapter.java | 736 * @return The name split into three parts. 744 String parts[] = nsSupport.processName(qName, nameParts, 746 if (parts == null) { 750 parts = new String[3]; 751 parts[0] = parts[1] = ""; 752 parts[2] = qName.intern(); 754 return parts; 741 String parts[] = nsSupport.processName(qName, nameParts, local
|
/prebuilts/gdb/darwin-x86/lib/python2.7/email/ |
header.py | 67 decoded parts of the header. Charset is None for non-encoded parts of the 85 parts = ecre.split(line) 86 while parts: 87 unenc = parts.pop(0).strip() 94 if parts: 95 charset, encoding = [s.lower() for s in parts[0:2]] 96 encoded = parts[2] 118 del parts[0:3] 486 # Put any left over parts on a line by themselve [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/email/ |
header.py | 67 decoded parts of the header. Charset is None for non-encoded parts of the 85 parts = ecre.split(line) 86 while parts: 87 unenc = parts.pop(0).strip() 94 if parts: 95 charset, encoding = [s.lower() for s in parts[0:2]] 96 encoded = parts[2] 118 del parts[0:3] 486 # Put any left over parts on a line by themselve [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
header.py | 67 decoded parts of the header. Charset is None for non-encoded parts of the 85 parts = ecre.split(line) 86 while parts: 87 unenc = parts.pop(0).strip() 94 if parts: 95 charset, encoding = [s.lower() for s in parts[0:2]] 96 encoded = parts[2] 118 del parts[0:3] 486 # Put any left over parts on a line by themselve [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
header.py | 67 decoded parts of the header. Charset is None for non-encoded parts of the 85 parts = ecre.split(line) 86 while parts: 87 unenc = parts.pop(0).strip() 94 if parts: 95 charset, encoding = [s.lower() for s in parts[0:2]] 96 encoded = parts[2] 118 del parts[0:3] 486 # Put any left over parts on a line by themselve [all...] |
/device/google/contexthub/firmware/external/freebsd/lib/msun/src/ |
math_private.h | 64 } parts; member in union:__anon3062 82 } parts; member in union:__anon3065 97 (ix0) = ew_u.parts.msw; \ 98 (ix1) = ew_u.parts.lsw; \ 115 (i) = gh_u.parts.msw; \ 124 (i) = gl_u.parts.lsw; \ 132 iw_u.parts.msw = (ix0); \ 133 iw_u.parts.lsw = (ix1); \ 151 sh_u.parts.msw = (v); \ 161 sl_u.parts.lsw = (v); [all...] |
/external/compiler-rt/lib/sanitizer_common/scripts/ |
sancov.py | 141 parts = line.rstrip().split() 142 mem_map.append((int(parts[0], 16), 143 int(parts[1], 16), 144 int(parts[2], 16), 145 ' '.join(parts[3:])))
|
/external/devlib/devlib/utils/ |
rendering.py | 135 parts = line.split() 136 if len(parts) == 3: 137 frame = SurfaceFlingerFrame(*map(int, parts)) 147 elif len(parts) == 1: 148 self.refresh_period = int(parts[0])
|
/external/icu/icu4c/source/test/intltest/ |
datadrivennumberformattestsuite.cpp | 120 UnicodeString parts[3]; local 121 int32_t partCount = splitBy(parts, UPRV_LENGTHOF(parts), 0x20); 128 NumberFormatTestTuple::getFieldByName(parts[1]), 129 parts[2].unescape(),
|
/tools/tradefederation/core/src/com/android/tradefed/config/ |
ArgsOptionParser.java | 321 String[] parts = p.split(tmp); local 323 if (parts.length == 2) { 324 key = parts[0].replaceAll("\\\\=", "="); 325 value = parts[1].replaceAll("\\\\=", "="); 326 } else if (parts.length > 2) {
|
/external/r8/src/test/java/com/android/tools/r8/ |
ToolHelper.java | 402 List<String> parts = Lists.newArrayList(clazz.getCanonicalName().split("\\.")); local 405 parts.set(parts.size() - 2, parts.get(parts.size() - 2) + "$" + parts.get(parts.size() - 1)); 406 parts.remove(parts.size() - 1); 409 parts.set(parts.size() - 1, parts.get(parts.size() - 1) + ".class") [all...] |