/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
urllib.py | 159 # This code sometimes runs when the rest of this module 306 urltype, rest = splittype(selector) 307 url = rest 312 realhost, rest = splithost(rest) 316 selector = "%s://%s%s" % (urltype, realhost, rest) 400 urltype, rest = splittype(selector) 401 url = rest 406 realhost, rest = splithost(rest) [all...] |
sgmllib.py | 281 attrname, rest, attrvalue = match.group(1, 2, 3) 282 if not rest:
|
string.py | 630 first, rest = field_name._formatter_field_name_split() 634 # loop through the rest of the field_name, doing 636 for is_attr, i in rest:
|
cookielib.py | 734 rest, 765 self._rest = copy.copy(rest) 800 args.append("rest=%s" % repr(self._rest)) [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/ |
xcode_emulation.py | 483 prefix, rest = '', path 485 prefix, rest = path.split('/', 1) 486 rest = os.path.normpath(rest) # :standardizepath 487 path = os.path.join(prefix, rest) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
sgmllib.py | 281 attrname, rest, attrvalue = match.group(1, 2, 3) 282 if not rest:
|
string.py | 630 first, rest = field_name._formatter_field_name_split() 634 # loop through the rest of the field_name, doing 636 for is_attr, i in rest:
|
cookielib.py | 734 rest, 765 self._rest = copy.copy(rest) 800 args.append("rest=%s" % repr(self._rest)) [all...] |
_pyio.py | [all...] |
/system/vold/ |
Volume.cpp | 261 char rest[256]; local 272 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
|
/external/chromium_org/third_party/icu/source/common/ |
utrie.c | 289 int32_t block, rest, repeatBlock; local 324 rest=limit&UTRIE_MASK; 361 if(rest>0) { 368 utrie_fillBlock(trie->data+block, 0, rest, value, initialValue, overwrite); [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
glsl_parser.h | 475 ast_expression *rest; member in struct:YYSTYPE::__anon14194
|
/external/chromium_org/v8/test/mjsunit/ |
array-slice.js | 168 // ... but keeps the rest as holes: 211 // ... but keeps the rest as holes:
|
array-unshift.js | 102 // ... but keeps the rest as holes: 181 // ... but keeps the rest as holes:
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
Code.java | [all...] |
/external/icu4c/common/ |
utrie.cpp | 289 int32_t block, rest, repeatBlock; local 324 rest=limit&UTRIE_MASK; 361 if(rest>0) { 368 utrie_fillBlock(trie->data+block, 0, rest, value, initialValue, overwrite); [all...] |
/external/v8/test/mjsunit/ |
array-slice.js | 168 // ... but keeps the rest as holes: 211 // ... but keeps the rest as holes:
|
array-unshift.js | 102 // ... but keeps the rest as holes: 181 // ... but keeps the rest as holes:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 26 s, rest = sys.version[i:].split(" ", 1)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_tokenize.py | 590 rest of the output should be platform-independent.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 26 s, rest = sys.version[i:].split(" ", 1)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_tokenize.py | 590 rest of the output should be platform-independent.
|
/system/netd/ |
BandwidthController.cpp | 1096 char rest[MAX_IPT_OUTPUT_LINE_LEN]; local [all...] |
/frameworks/base/media/java/android/media/ |
WebVttRenderer.java | 845 String rest = line.substring(arrowAt + 3) 847 int spaceAt = rest.indexOf(' '); 848 String end = spaceAt > 0 ? rest.substring(0, spaceAt) : rest; 849 rest = spaceAt > 0 ? rest.substring(spaceAt + 1) : ""; 853 for (String setting: rest.split(" +")) { [all...] |
/external/v8/tools/ |
test.py | 470 def RunProcess(context, timeout, args, **rest): 486 **rest 657 (name, rest) = CarCdr(path) 661 result += test.GetBuildRequirements(rest, context) 665 (name, rest) = CarCdr(path) 671 (name, rest) = CarCdr(path) [all...] |