Home
last modified time | relevance | path

Searched refs:altsep (Results 1 – 25 of 33) sorted by relevance

12

/third_party/python/Lib/
Dntpath.py16 altsep = '/' variable
147 altsep = b'/'
151 altsep = '/'
153 normp = p.replace(altsep, sep)
468 altsep = b'/'
474 altsep = '/'
485 path = path.replace(altsep, sep)
758 altsep = b'/'
762 altsep = '/'
766 drivesplits = [splitdrive(p.replace(altsep, sep).lower()) for p in paths]
[all …]
Dgenericpath.py121 def _splitext(p, sep, altsep, extsep): argument
129 if altsep:
130 altsepIndex = p.rfind(altsep)
Dpathlib.py59 altsep = self.altsep
65 if altsep:
66 part = part.replace(altsep, sep)
83 if altsep:
84 part = part.replace(altsep, sep)
117 altsep = '/' variable in _WindowsFlavour
233 altsep = '' variable in _PosixFlavour
758 if (not name or name[-1] in [self._flavour.sep, self._flavour.altsep]
774 if f.sep in suffix or f.altsep and f.altsep in suffix:
Dtrace.py148 if os.altsep:
149 base = base.replace(os.altsep, ".")
Dposixpath.py22 altsep = None variable
Dzipfile.py516 while arcname[0] in (os.sep, os.altsep):
1674 if os.path.altsep:
1675 arcname = arcname.replace(os.path.altsep, os.path.sep)
/third_party/skia/tools/
Drewrite_includes.py48 assert '/' in [os.sep, os.altsep]
50 return p.replace(os.sep, os.altsep) if os.altsep else p
/third_party/skia/tools/skqp/
Dmake_universal_apk.py38 assert '/' in [os.sep, os.altsep] # 'a/b' over os.path.join('a', 'b')
Dmake_apk_list.py123 assert '/' in [os.sep, os.altsep] and '..' == os.pardir
Dfind_commit_with_best_gold_results.py16 assert '/' in [os.sep, os.altsep]
Dcut_release.py17 assert '/' in [os.sep, os.altsep] and os.pardir == '..'
Dcreate_apk.py197 assert '/' in [os.sep, os.altsep] # 'a/b' over os.path.join('a', 'b')
/third_party/mbedtls/tests/scripts/
Dcheck_files.py73 if os.path.altsep is not None:
74 seps += os.path.altsep
/third_party/skia/third_party/externals/jinja2/
Dloaders.py29 or (path.altsep and path.altsep in piece)
/third_party/node/tools/inspector_protocol/jinja2/
Dloaders.py29 or (path.altsep and path.altsep in piece) or \
/third_party/node/deps/v8/third_party/jinja2/
Dloaders.py29 or (path.altsep and path.altsep in piece)
/third_party/skia/experimental/tools/
Dget_examples.py25 assert os.pardir == '..' and '/' in [os.sep, os.altsep]
Dpdf-comparison.py246 assert os.pardir == '..' and '/' in [os.sep, os.altsep]
/third_party/jinja2/
Dloaders.py33 or (os.path.altsep and os.path.altsep in piece)
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch1336 -altsep = '/'
1346 + altsep = '\\'
1349 + altsep = '/'
1351 +baltsep = str.encode(altsep)
1363 + return sep+altsep
1376 + return altsep
1394 + return s.replace(altsep, sep).lower()
1422 - altsep = b'/'
1426 - altsep = '/'
1429 + altsep = _get_altsep(p)
[all …]
/third_party/python/Doc/library/
Dglob.rst64 pattern is followed by an :data:`os.sep` or :data:`os.altsep` then files will not
/third_party/python/Lib/distutils/
D_msvccompiler.py302 if base.startswith((os.path.sep, os.path.altsep)):
/third_party/node/tools/gyp/pylib/gyp/generator/
Danalyzer.py125 if os.sep == "\\" and os.altsep == "/":
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Danalyzer.py125 if os.sep == "\\" and os.altsep == "/":
/third_party/python/Lib/test/
Dtest_pathlib.py29 altsep = self.flavour.altsep
32 if altsep:
33 actual = f([x.replace('/', altsep) for x in arg])
190 self.altsep = self.flavour.altsep

12