/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
msvc9compiler.py | 211 oldList = variable.split(os.pathsep) 216 newVariable = os.pathsep.join(newList) 290 if value.endswith(os.pathsep): 386 self.__paths = vc_env['path'].encode('mbcs').split(os.pathsep)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
support.py | 221 cmd.library_dirs = value.split(os.pathsep)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_genericpath.py | 167 'pathsep', 'defpath', 'altsep', 'devnull',
|
test_winsound.py | 228 for dir in os.environ.get("PATH", "").split(os.pathsep):
|
/prebuilts/tools/common/m2/repository/commons-cli/commons-cli/1.3.1/ |
commons-cli-1.3.1.pom | 307 <pathconvert pathsep=" " property="dirs">
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
site.py | 312 libpath = os.environ['BEGINLIBPATH'].split(os.path.pathsep)
317 os.environ['BEGINLIBPATH'] = os.path.pathsep.join(libpath)
533 print textwrap.dedent(help % (sys.argv[0], os.pathsep))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
site.py | 320 libpath = os.environ['BEGINLIBPATH'].split(os.path.pathsep)
325 os.environ['BEGINLIBPATH'] = os.path.pathsep.join(libpath)
527 print textwrap.dedent(help % (sys.argv[0], os.pathsep))
|
/external/llvm/utils/ |
llvm-compilers-check | 85 string listing directories separated by 'os.pathsep'; defaults to 91 paths = path.split(os.pathsep) 100 pathext = os.environ['PATHEXT'].lower().split(os.pathsep)
|
/prebuilts/go/darwin-x86/src/cmd/dist/ |
build.go | [all...] |
/prebuilts/go/linux-x86/src/cmd/dist/ |
build.go | [all...] |
/external/deqp/scripts/android/ |
build_apk.py | 481 pathSep = ";" if HostInfo.getOs() == HostInfo.OS_WINDOWS else ":" 495 "-classpath", pathSep.join(classPaths), 496 "-sourcepath", pathSep.join(srcPaths),
|
/external/swiftshader/third_party/LLVM/utils/ |
llvmbuild | 125 string listing directories separated by 'os.pathsep'; defaults to 131 paths = path.split(os.pathsep) 140 pathext = os.environ['PATHEXT'].lower().split(os.pathsep)
|
/external/autotest/server/cros/ |
tradefed_utils.py | 232 os.path.join(java, 'bin') + os.pathsep + os.environ['PATH'])
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/ |
shell.py | 332 for item in path.split(_os.pathsep)
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py3/ |
shell.py | 332 for item in path.split(_os.pathsep)
|
/external/google-benchmark/ |
mingw.py | 95 path = path.split(os.pathsep)
|
/external/jsoncpp/devtools/ |
batchbuild.py | 38 environ[var] = value + os.pathsep + environ[var]
|
/external/python/cpython2/Doc/library/ |
site.rst | 207 this order), separated by :data:`os.pathsep`.
|
trace.rst | 126 The argument can be a list of directories separated by :data:`os.pathsep`.
|
/external/python/cpython2/Lib/ctypes/ |
util.py | 52 for directory in os.environ['PATH'].split(os.pathsep):
|
/external/python/cpython2/Lib/test/ |
test_genericpath.py | 167 'pathsep', 'defpath', 'altsep', 'devnull',
|
/external/python/cpython3/Doc/library/ |
trace.rst | 132 The argument can be a list of directories separated by :data:`os.pathsep`.
|
/external/python/cpython3/Lib/ctypes/ |
util.py | 59 for directory in os.environ['PATH'].split(os.pathsep):
|
/external/python/cpython3/Lib/ |
mailcap.py | 50 mailcaps = pathstr.split(os.pathsep)
|
os.py | 12 - os.pathsep is the component separator used in $PATH etc 32 __all__ = ["altsep", "curdir", "pardir", "sep", "pathsep", "linesep", 92 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, 648 return path_list.split(pathsep) [all...] |