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

12

/external/python/cpython2/Lib/
H A Dgenericpath.py93 def _splitext(p, sep, altsep, extsep):
100 if altsep:
101 altsepIndex = p.rfind(altsep)
H A Dmacpath.py14 "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
24 altsep = None variable
75 return genericpath._splitext(p, sep, altsep, extsep)
H A Dntpath.py21 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep",
30 altsep = '/' variable
36 altsep = '/' variable
116 normp = p.replace(altsep, sep)
200 return genericpath._splitext(p, sep, altsep, extsep)
H A Dos2emxpath.py19 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep",
27 altsep = '\\' variable
H A Dposixpath.py26 "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
36 altsep = None variable
98 return genericpath._splitext(p, sep, altsep, extsep)
H A Dtrace.py216 if os.altsep:
217 base = base.replace(os.altsep, ".")
H A Dshutil.py262 sep = os.path.sep + (os.path.altsep or '')
H A Dzipfile.py1053 if os.path.altsep:
1054 arcname = arcname.replace(os.path.altsep, os.path.sep)
1134 while arcname[0] in (os.sep, os.altsep):
H A Dos.py11 - os.altsep is the alternate pathname separator (None or '/')
31 __all__ = ["altsep", "curdir", "pardir", "sep", "extsep", "pathsep", "linesep",
120 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, namespace
/external/python/cpython3/Lib/
H A Dgenericpath.py117 def _splitext(p, sep, altsep, extsep):
125 if altsep:
126 altsepIndex = p.rfind(altsep)
H A Dmacpath.py12 "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
23 altsep = None variable
93 return genericpath._splitext(p, b':', altsep, b'.')
95 return genericpath._splitext(p, sep, altsep, extsep)
H A Dntpath.py18 "splitunc","curdir","pardir","sep","pathsep","defpath","altsep",
29 altsep = '/' variable
144 altsep = b'/'
148 altsep = '/'
150 normp = p.replace(altsep, sep)
476 altsep = b'/'
482 altsep = '/'
492 path = path.replace(altsep, sep)
624 altsep = b'/'
628 altsep
[all...]
H A Dpathlib.py54 altsep = self.altsep
60 if altsep:
61 part = part.replace(altsep, sep)
78 if altsep:
79 part = part.replace(altsep, sep)
112 altsep = '/' variable in class:_WindowsFlavour
277 altsep = '' variable in class:_PosixFlavour
820 if (not name or name[-1] in [self._flavour.sep, self._flavour.altsep]
830 if f.sep in suffix or f.altsep an
[all...]
H A Dposixpath.py24 "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
36 altsep = None variable
H A Dtrace.py165 if os.altsep:
166 base = base.replace(os.altsep, ".")
/external/python/cpython2/Lib/plat-os2emx/
H A Dpwd.py83 return path.replace(os.altsep, os.sep)
93 return conv.replace(os.altsep, os.sep)
/external/python/cpython2/Lib/test/
H A Dtest_socketserver.py108 if fn[0] in (os.sep, os.altsep):
111 fn = fn.replace(os.sep, os.altsep)
113 fn = fn.replace(os.altsep, os.sep)
/external/python/cpython2/Lib/idlelib/
H A DAutoComplete.py27 if os.altsep: # e.g. '/' on Windows...
28 SEPS += os.altsep
/external/python/cpython3/Lib/idlelib/
H A Dautocomplete.py24 if os.altsep: # e.g. '/' on Windows...
25 SEPS += os.altsep
/external/libmojo/third_party/jinja2/
H A Dloaders.py29 or (path.altsep and path.altsep in piece) or \
/external/python/cpython2/Lib/plat-riscos/
H A Driscospath.py22 altsep = None variable
/external/libyuv/files/
H A Dsetup_links.py373 return path.replace(os.altsep, os.sep)
/external/python/cpython3/Lib/distutils/
H A D_msvccompiler.py283 if base.startswith((os.path.sep, os.path.altsep)):
/external/webrtc/
H A Dsetup_links.py394 return path.replace(os.altsep, os.sep)
/external/chromium-trace/catapult/third_party/zipfile/
H A Dzipfile_2_7_13.py1053 if os.path.altsep:
1054 arcname = arcname.replace(os.path.altsep, os.path.sep)
1134 while arcname[0] in (os.sep, os.altsep):

Completed in 583 milliseconds

12