Home
last modified time | relevance | path

Searched refs:isabs (Results 1 - 25 of 75) sorted by relevance

123

/third_party/python/Lib/zoneinfo/
H A D_tzpath.py16 if not all(map(os.path.isabs, tzpaths)):
36 new_tzpath = tuple(filter(os.path.isabs, raw_tzpath))
54 invalid_paths = (path for path in tzpaths if not os.path.isabs(path))
80 if os.path.isabs(path):
/third_party/python/Lib/distutils/tests/
H A Dtest_util.py30 self.isabs = os.path.isabs
51 os.path.isabs = self.isabs
201 os.path.isabs = _isabs
215 os.path.isabs = _isabs
/third_party/python/Lib/
H A Dposixpath.py31 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
60 def isabs(s): function
400 if not isabs(path):
431 if isabs(rest):
545 isabs, = set(p[:1] == sep for p in paths)
558 prefix = sep if isabs else sep[:0]
H A Dntpath.py27 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
87 def isabs(s): function
100 # LEGACY BUG: isabs("/x") should be false since the path has no drive.
554 if not isabs(path):
608 if not isabs(path):
693 if not had_prefix and not isabs(path):
818 isabs, = set(p[:1] == sep for d, p in drivesplits)
842 prefix = drive + sep if isabs else drive
H A Dlinecache.py119 if os.path.isabs(filename):
/third_party/python/Lib/test/
H A Dtest_posixpath.py119 self.assertIs(posixpath.isabs(""), False)
120 self.assertIs(posixpath.isabs("/"), True)
121 self.assertIs(posixpath.isabs("/foo"), True)
122 self.assertIs(posixpath.isabs("/foo/bar"), True)
123 self.assertIs(posixpath.isabs("foo/bar"), False)
125 self.assertIs(posixpath.isabs(b""), False)
126 self.assertIs(posixpath.isabs(b"/"), True)
127 self.assertIs(posixpath.isabs(b"/foo"), True)
128 self.assertIs(posixpath.isabs(b"/foo/bar"), True)
129 self.assertIs(posixpath.isabs(
[all...]
H A Dtest_sysconfig.py46 self.isabs = os.path.isabs
69 os.path.isabs = self.isabs
447 self.assertTrue(os.path.isabs(srcdir), srcdir)
H A Dtest_fileutils.py21 if not os.path.isabs(filename):
H A Dtest_getpath.py916 if self.isabs(path):
932 def isabs(self, path): member in MockNTNamespace
1093 if self.isabs(path):
1106 def isabs(self, path): member in MockPosixNamespace
/third_party/mesa3d/docs/
H A Ddoxygen-wrapper.py89 if os.path.isabs(p):
/third_party/python/Tools/c-analyzer/c_parser/
H A Dsource.py42 if os.path.isabs(filename):
/third_party/python/Tools/c-analyzer/cpython/
H A D_files.py31 if os.path.isabs(filename):
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Declipse.py158 if not os.path.isabs(include_dir):
388 if os.path.isabs(path):
416 if os.path.isabs(input_):
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
H A Declipse.py158 if not os.path.isabs(include_dir):
385 if os.path.isabs(path):
413 if os.path.isabs(input_):
/third_party/mesa3d/bin/
H A Dinstall_megadrivers.py36 if os.path.isabs(args.libdir):
/third_party/python/Lib/distutils/command/
H A Dinstall_data.py57 if not os.path.isabs(dir):
/build/scripts/
H A Dcopy_ex.py57 if not os.path.isabs(org_linkto):
77 linkto) and not os.path.isabs(org_linkto):
/third_party/python/Lib/unittest/
H A Dmain.py36 if os.path.isabs(name):
38 if os.path.isabs(rel_path) or rel_path.startswith(os.pardir):
/third_party/skia/buildtools/checkdeps/
H A Dbuilddeps.py311 if dir_name and not os.path.isabs(dir_name):
359 if os.path.isabs(dir_path_local):
/build/tools/component_tools/static_check/bundle_check/
H A Dbundle_check_online.py79 if os.path.isabs(value):
H A Dget_subsystem_with_component.py59 if os.path.isabs(destpath):
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/
H A Dgcc.py114 if os.path.isabs(origfile):
/third_party/python/Lib/idlelib/
H A Dfilelist.py104 if not os.path.isabs(filename):
/test/testfwk/xdevice/src/xdevice/_core/executor/
H A Dsource.py137 if not os.path.isabs(file_name):
246 if os.path.isabs(config.testfile):
283 if not os.path.isabs(test_source):
/third_party/python/Tools/freeze/
H A Dcheckextensions_win32.py93 if not os.path.isabs(dsp):

Completed in 11 milliseconds

123