Home
last modified time | relevance | path

Searched refs:isabs (Results 1 – 25 of 62) sorted by relevance

123

/external/python/cpython2/Lib/test/
Dtest_macpath.py12 isabs = macpath.isabs
13 self.assertTrue(isabs("xx:yy"))
14 self.assertTrue(isabs("xx:yy:"))
15 self.assertTrue(isabs("xx:"))
16 self.assertFalse(isabs("foo"))
17 self.assertFalse(isabs(":foo"))
18 self.assertFalse(isabs(":foo:bar"))
19 self.assertFalse(isabs(":foo:bar:"))
Dtest_sysconfig.py40 self.isabs = os.path.isabs
60 os.path.isabs = self.isabs
Dtest_posixpath.py81 self.assertIs(posixpath.isabs(""), False)
82 self.assertIs(posixpath.isabs("/"), True)
83 self.assertIs(posixpath.isabs("/foo"), True)
84 self.assertIs(posixpath.isabs("/foo/bar"), True)
85 self.assertIs(posixpath.isabs("foo/bar"), False)
/external/python/cpython2/Lib/
Dmacpath.py33 def isabs(s): function
46 if (not path) or isabs(t):
94 if not isabs(s):
189 if not isabs(path):
Dos2emxpath.py12 from ntpath import (expanduser, expandvars, isabs, islink, splitdrive,
49 if isabs(b):
149 if not isabs(path):
Dposixpath.py52 def isabs(s): function
360 if not isabs(path):
381 if isabs(rest):
Dmacurl2path.py70 if os.path.isabs(pathname):
Dlinecache.py112 if os.path.isabs(filename):
Dntpath.py56 def isabs(s): function
474 if not isabs(path):
Dplatform.py933 isabs=os.path.isabs,join=os.path.join,getcwd=os.getcwd, argument
936 if not isabs(path):
/external/chromium-trace/catapult/dependency_manager/dependency_manager/
Ddependency_manager_util.py23 assert os.path.isabs(dir_path)
93 assert os.path.isabs(unzip_path)
/external/autotest/site_utils/
Dacts_lib.py95 if not os.path.isabs(zip_location):
229 if not os.path.isabs(acts_directory):
308 if not os.path.isabs(src):
311 if not os.path.isabs(dst):
/external/autotest/site_utils/lxc/
Dconfig.py147 if not os.path.isabs(target):
150 if not os.path.isabs(source):
/external/python/cpython2/Doc/library/
Dmacpath.rst14 :func:`normpath`, :func:`isabs`, :func:`join`, :func:`split`, :func:`isdir`,
/external/v8/tools/foozzie/
Dv8_foozzie.py137 if not os.path.isabs(options.first_d8):
139 if not os.path.isabs(options.second_d8):
/external/jsoncpp/devtools/
Dtarball.py22 if os.path.isabs( archive_name ):
/external/python/cpython2/Lib/distutils/command/
Dinstall_data.py59 if not os.path.isabs(dir):
/external/autotest/client/bin/
Dos_dep.py31 if not os.path.isabs(glob_pattern):
/external/toolchain-utils/binary_search_tool/
Dcommon.py26 if os.path.isabs(sys.argv[0]):
/external/python/cpython2/Lib/idlelib/
DFileList.py98 if not os.path.isabs(filename):
/external/swiftshader/third_party/LLVM/utils/lit/lit/
DLitConfig.py91 if dir is not None and os.path.isabs(dir) and os.path.isdir(dir):
/external/python/cpython2/Tools/freeze/
Dcheckextensions_win32.py93 if not os.path.isabs(dsp):
/external/llvm/utils/lit/lit/
DLitConfig.py116 if dir is not None and os.path.isabs(dir) and os.path.isdir(dir):
/external/boringssl/src/util/bot/
Dextract.py35 if os.path.isabs(path) or path.startswith('.'):
/external/libmojo/build/android/gyp/util/
Dbuild_utils.py209 if os.path.isabs(name):
407 assert os.path.isabs(host_paths.DIR_SOURCE_ROOT)

123