HomeSort by relevance Sort by last modified time
    Searched refs:sep (Results 176 - 200 of 612) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_generators.py 1124 sep = "+" + "-+" * n
1125 print sep
1130 print sep
    [all...]
test_socketserver.py 105 if fn[0] in (os.sep, os.altsep):
107 if os.sep == '/':
108 fn = fn.replace(os.sep, os.altsep)
110 fn = fn.replace(os.altsep, os.sep)
test_sysconfig.py 38 self.sep = os.sep
58 os.sep = self.sep
134 sys.version = ('2.5 (r25:51918, Sep 19 2006, 08:49:13) '
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_interfaces_info_individual.py 89 return relative_dir_local.replace(os.path.sep, posixpath.sep)
  /external/chromium_org/third_party/icu/source/i18n/
tridpars.cpp 554 int32_t sep = id.indexOf(TARGET_SEP); local
561 if (sep < 0) {
565 } else if (sep < var) {
567 if (sep > 0) {
568 id.extractBetween(0, sep, source);
571 id.extractBetween(++sep, var, target);
579 id.extractBetween(var, sep++, variant);
580 id.extractBetween(sep, id.length(), target);
  /external/chromium_org/third_party/leveldatabase/src/doc/bench/
db_bench_sqlite3.cc 220 const char* sep = strchr(line, ':');
221 if (sep == NULL) {
224 Slice key = TrimSpace(Slice(line, sep - 1 - line));
225 Slice val = TrimSpace(Slice(sep + 1));
349 const char* sep = strchr(benchmarks, ','); local
351 if (sep == NULL) {
355 name = Slice(benchmarks, sep - benchmarks);
356 benchmarks = sep + 1;
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
posix_platform_backend.py 77 '(.*%s|^)%s(\s|$)' % (os.path.sep, application))
84 if os.path.sep not in application:
  /external/icu/icu4c/source/i18n/
tridpars.cpp 554 int32_t sep = id.indexOf(TARGET_SEP); local
561 if (sep < 0) {
565 } else if (sep < var) {
567 if (sep > 0) {
568 id.extractBetween(0, sep, source);
571 id.extractBetween(++sep, var, target);
579 id.extractBetween(var, sep++, variant);
580 id.extractBetween(sep, id.length(), target);
  /external/llvm/utils/lit/lit/formats/
base.py 74 if suffix.startswith(os.sep):
77 testSuite, path_in_suite + tuple(suffix.split(os.sep)),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
macpath.py 13 "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
20 sep = ':' variable
74 return genericpath._splitext(p, sep, altsep, extsep)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
macpath.py 13 "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
20 sep = ':' variable
74 return genericpath._splitext(p, sep, altsep, extsep)
  /build/tools/
compare_fileslist.py 85 combo = input.split(os.path.sep)[1]
  /external/bluetooth/bluedroid/btif/include/
btif_media.h 280 void btif_a2dp_set_peer_sep(UINT8 sep);
  /external/chromium_org/testing/
test_env.py 79 cmd[0] = cmd[0].replace('/', os.path.sep)
  /external/chromium_org/tools/cr/cr/base/
platform.py 65 if entry.endswith(os.path.sep + 'goma'):
  /external/chromium_org/tools/python/google/
path_utils.py 60 if found_path.endswith(os.sep):
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ConstraintManager.h 118 const char *sep) = 0;
  /external/libcap-ng/libcap-ng-0.7/
py-compile 116 filetrans="filepath = os.path.normpath('$destdir' + os.sep + path)"
  /external/tcpdump/
print-babel.c 254 const char *sep; local
279 sep = " ";
281 printf("%s%s", sep, tok2str(diversity_str, "%u", *cp++));
282 sep = "-";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
main.py 58 if input_base_dir and not input_base_dir.endswith(os.sep):
59 input_base_dir += os.sep
236 if (input_base_dir and not input_base_dir.endswith(os.sep)
243 input_base_dir = input_base_dir.rstrip(os.sep)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_socketserver.py 105 if fn[0] in (os.sep, os.altsep):
107 if os.sep == '/':
108 fn = fn.replace(os.sep, os.altsep)
110 fn = fn.replace(os.altsep, os.sep)
test_sysconfig.py 38 self.sep = os.sep
58 os.sep = self.sep
134 sys.version = ('2.5 (r25:51918, Sep 19 2006, 08:49:13) '
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
main.py 58 if input_base_dir and not input_base_dir.endswith(os.sep):
59 input_base_dir += os.sep
236 if (input_base_dir and not input_base_dir.endswith(os.sep)
243 input_base_dir = input_base_dir.rstrip(os.sep)
  /device/asus/fugu/recovery/
fw_version_check.c 96 const char *sep = " "; local
113 p = strtok_r(buf, sep, &save);
120 p = strtok_r(NULL, sep, &save);
  /external/chromium_org/chrome_elf/blacklist/
blacklist_interceptions.cc 116 size_t sep = module_path.find_last_of(L'\\');
117 if (sep == base::string16::npos)
120 return module_path.substr(sep+1);

Completed in 781 milliseconds

1 2 3 4 5 6 78 91011>>