/third_party/python/Lib/ |
D | ntpath.py | 16 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 …]
|
D | genericpath.py | 121 def _splitext(p, sep, altsep, extsep): argument 129 if altsep: 130 altsepIndex = p.rfind(altsep)
|
D | pathlib.py | 59 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:
|
D | trace.py | 148 if os.altsep: 149 base = base.replace(os.altsep, ".")
|
D | posixpath.py | 22 altsep = None variable
|
D | zipfile.py | 516 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/ |
D | rewrite_includes.py | 48 assert '/' in [os.sep, os.altsep] 50 return p.replace(os.sep, os.altsep) if os.altsep else p
|
/third_party/skia/tools/skqp/ |
D | make_universal_apk.py | 38 assert '/' in [os.sep, os.altsep] # 'a/b' over os.path.join('a', 'b')
|
D | make_apk_list.py | 123 assert '/' in [os.sep, os.altsep] and '..' == os.pardir
|
D | find_commit_with_best_gold_results.py | 16 assert '/' in [os.sep, os.altsep]
|
D | cut_release.py | 17 assert '/' in [os.sep, os.altsep] and os.pardir == '..'
|
D | create_apk.py | 197 assert '/' in [os.sep, os.altsep] # 'a/b' over os.path.join('a', 'b')
|
/third_party/mbedtls/tests/scripts/ |
D | check_files.py | 73 if os.path.altsep is not None: 74 seps += os.path.altsep
|
/third_party/skia/third_party/externals/jinja2/ |
D | loaders.py | 29 or (path.altsep and path.altsep in piece)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | loaders.py | 29 or (path.altsep and path.altsep in piece) or \
|
/third_party/node/deps/v8/third_party/jinja2/ |
D | loaders.py | 29 or (path.altsep and path.altsep in piece)
|
/third_party/skia/experimental/tools/ |
D | get_examples.py | 25 assert os.pardir == '..' and '/' in [os.sep, os.altsep]
|
D | pdf-comparison.py | 246 assert os.pardir == '..' and '/' in [os.sep, os.altsep]
|
/third_party/jinja2/ |
D | loaders.py | 33 or (os.path.altsep and os.path.altsep in piece)
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 1336 -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/ |
D | glob.rst | 64 pattern is followed by an :data:`os.sep` or :data:`os.altsep` then files will not
|
/third_party/python/Lib/distutils/ |
D | _msvccompiler.py | 302 if base.startswith((os.path.sep, os.path.altsep)):
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
D | analyzer.py | 125 if os.sep == "\\" and os.altsep == "/":
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
D | analyzer.py | 125 if os.sep == "\\" and os.altsep == "/":
|
/third_party/python/Lib/test/ |
D | test_pathlib.py | 29 altsep = self.flavour.altsep 32 if altsep: 33 actual = f([x.replace('/', altsep) for x in arg]) 190 self.altsep = self.flavour.altsep
|