/external/python/cpython2/Lib/test/ |
D | test_macpath.py | 12 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:"))
|
D | test_sysconfig.py | 40 self.isabs = os.path.isabs 60 os.path.isabs = self.isabs
|
D | test_posixpath.py | 81 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/ |
D | macpath.py | 33 def isabs(s): function 46 if (not path) or isabs(t): 94 if not isabs(s): 189 if not isabs(path):
|
D | os2emxpath.py | 12 from ntpath import (expanduser, expandvars, isabs, islink, splitdrive, 49 if isabs(b): 149 if not isabs(path):
|
D | posixpath.py | 52 def isabs(s): function 360 if not isabs(path): 381 if isabs(rest):
|
D | macurl2path.py | 70 if os.path.isabs(pathname):
|
D | linecache.py | 112 if os.path.isabs(filename):
|
D | ntpath.py | 56 def isabs(s): function 474 if not isabs(path):
|
D | platform.py | 933 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/ |
D | dependency_manager_util.py | 23 assert os.path.isabs(dir_path) 93 assert os.path.isabs(unzip_path)
|
/external/autotest/site_utils/ |
D | acts_lib.py | 95 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/ |
D | config.py | 147 if not os.path.isabs(target): 150 if not os.path.isabs(source):
|
/external/python/cpython2/Doc/library/ |
D | macpath.rst | 14 :func:`normpath`, :func:`isabs`, :func:`join`, :func:`split`, :func:`isdir`,
|
/external/v8/tools/foozzie/ |
D | v8_foozzie.py | 137 if not os.path.isabs(options.first_d8): 139 if not os.path.isabs(options.second_d8):
|
/external/jsoncpp/devtools/ |
D | tarball.py | 22 if os.path.isabs( archive_name ):
|
/external/python/cpython2/Lib/distutils/command/ |
D | install_data.py | 59 if not os.path.isabs(dir):
|
/external/autotest/client/bin/ |
D | os_dep.py | 31 if not os.path.isabs(glob_pattern):
|
/external/toolchain-utils/binary_search_tool/ |
D | common.py | 26 if os.path.isabs(sys.argv[0]):
|
/external/python/cpython2/Lib/idlelib/ |
D | FileList.py | 98 if not os.path.isabs(filename):
|
/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
D | LitConfig.py | 91 if dir is not None and os.path.isabs(dir) and os.path.isdir(dir):
|
/external/python/cpython2/Tools/freeze/ |
D | checkextensions_win32.py | 93 if not os.path.isabs(dsp):
|
/external/llvm/utils/lit/lit/ |
D | LitConfig.py | 116 if dir is not None and os.path.isabs(dir) and os.path.isdir(dir):
|
/external/boringssl/src/util/bot/ |
D | extract.py | 35 if os.path.isabs(path) or path.startswith('.'):
|
/external/libmojo/build/android/gyp/util/ |
D | build_utils.py | 209 if os.path.isabs(name): 407 assert os.path.isabs(host_paths.DIR_SOURCE_ROOT)
|