/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, ".")
|
D | zipfile.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):
|
D | shutil.py | 262 sep = os.path.sep + (os.path.altsep or '')
|
D | os.py | 120 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, 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 | 108 if fn[0] in (os.sep, os.altsep): 111 fn = fn.replace(os.sep, os.altsep) 113 fn = fn.replace(os.altsep, os.sep)
|
D | test_shutil.py | 764 @unittest.skipUnless(os.path.altsep, 'requires os.path.altsep') 766 self._check_move_dir(self.src_dir + os.path.altsep, self.dst_dir,
|
/external/python/cpython2/Lib/idlelib/ |
D | AutoComplete.py | 27 if os.altsep: # e.g. '/' on Windows... 28 SEPS += os.altsep
|
/external/libmojo/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):
|
/external/webrtc/ |
D | setup_links.py | 394 return path.replace(os.altsep, os.sep)
|
/external/libyuv/files/ |
D | setup_links.py | 373 return path.replace(os.altsep, os.sep)
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 2457 .. data:: altsep
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1400 altsep Alternate sep
|
D | HISTORY | 4753 - the platform dependent path related variables sep, altsep, extsep, 13164 - Added os.altsep; this is '/' on DOS/Windows, and None on systems
|
D | NEWS | 2179 on Windows if source name ends with os.altsep.
|