/external/python/cpython3/Lib/ |
D | ntpath.py | 16 altsep = '/' variable 145 altsep = b'/' 149 altsep = '/' 151 normp = p.replace(altsep, sep) 455 altsep = b'/' 461 altsep = '/' 471 path = path.replace(altsep, sep) 601 altsep = b'/' 605 altsep = '/' 609 drivesplits = [splitdrive(p.replace(altsep, sep).lower()) for p in paths] [all …]
|
D | genericpath.py | 117 def _splitext(p, sep, altsep, extsep): argument 125 if altsep: 126 altsepIndex = p.rfind(altsep)
|
D | macpath.py | 12 altsep = None variable 98 return genericpath._splitext(p, b':', altsep, b'.') 100 return genericpath._splitext(p, sep, altsep, extsep)
|
D | pathlib.py | 65 altsep = self.altsep 71 if altsep: 72 part = part.replace(altsep, sep) 89 if altsep: 90 part = part.replace(altsep, sep) 123 altsep = '/' variable in _WindowsFlavour 284 altsep = '' variable in _PosixFlavour 821 if (not name or name[-1] in [self._flavour.sep, self._flavour.altsep] 833 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, ".")
|
/external/python/cpython2/Lib/ |
D | genericpath.py | 93 def _splitext(p, sep, altsep, extsep): argument 100 if altsep: 101 altsepIndex = p.rfind(altsep)
|
D | ntpath.py | 30 altsep = '/' variable 36 altsep = '/' variable 116 normp = p.replace(altsep, sep) 200 return genericpath._splitext(p, sep, altsep, extsep)
|
D | macpath.py | 24 altsep = None variable 75 return genericpath._splitext(p, sep, altsep, extsep)
|
D | posixpath.py | 36 altsep = None variable 98 return genericpath._splitext(p, sep, altsep, extsep)
|
D | os2emxpath.py | 27 altsep = '\\' variable
|
D | trace.py | 216 if os.altsep: 217 base = base.replace(os.altsep, ".")
|
/external/python/cpython2/Lib/plat-os2emx/ |
D | pwd.py | 83 return path.replace(os.altsep, os.sep) 93 return conv.replace(os.altsep, os.sep)
|
/external/python/cpython2/Lib/test/ |
D | test_socketserver.py | 123 if fn[0] in (os.sep, os.altsep): 126 fn = fn.replace(os.sep, os.altsep) 128 fn = fn.replace(os.altsep, os.sep)
|
/external/python/cpython2/Lib/idlelib/ |
D | AutoComplete.py | 27 if os.altsep: # e.g. '/' on Windows... 28 SEPS += os.altsep
|
/external/python/cpython3/Lib/idlelib/ |
D | autocomplete.py | 24 if os.altsep: # e.g. '/' on Windows... 25 SEPS += os.altsep
|
/external/skqp/tools/skqp/ |
D | make_rendertests_list.py | 21 assert '/' in [os.sep, os.altsep]
|
D | make_apk_list.py | 96 assert '/' in [os.sep, os.altsep] and '..' == os.pardir
|
D | make_universal_apk.py | 82 assert '/' in [os.sep, os.altsep] # 'a/b' over os.path.join('a', 'b')
|
/external/skia/tools/skqp/ |
D | make_rendertests_list.py | 21 assert '/' in [os.sep, os.altsep]
|
D | make_apk_list.py | 96 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 | make_universal_apk.py | 82 assert '/' in [os.sep, os.altsep] # 'a/b' over os.path.join('a', 'b')
|
/external/libchrome/third_party/jinja2/ |
D | loaders.py | 29 or (path.altsep and path.altsep in piece) or \
|
/external/python/cpython2/Lib/plat-riscos/ |
D | riscospath.py | 22 altsep = None variable
|
/external/chromium-trace/catapult/third_party/zipfile/ |
D | zipfile_2_7_13.py | 1053 if os.path.altsep: 1054 arcname = arcname.replace(os.path.altsep, os.path.sep) 1134 while arcname[0] in (os.sep, os.altsep):
|