/third_party/python/Lib/zoneinfo/ |
H A D | _tzpath.py | 16 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 D | test_util.py | 30 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 D | posixpath.py | 31 __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 D | ntpath.py | 27 __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 D | linecache.py | 119 if os.path.isabs(filename):
|
/third_party/python/Lib/test/ |
H A D | test_posixpath.py | 119 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 D | test_sysconfig.py | 46 self.isabs = os.path.isabs 69 os.path.isabs = self.isabs 447 self.assertTrue(os.path.isabs(srcdir), srcdir)
|
H A D | test_fileutils.py | 21 if not os.path.isabs(filename):
|
H A D | test_getpath.py | 916 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 D | doxygen-wrapper.py | 89 if os.path.isabs(p):
|
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | source.py | 42 if os.path.isabs(filename):
|
/third_party/python/Tools/c-analyzer/cpython/ |
H A D | _files.py | 31 if os.path.isabs(filename):
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | eclipse.py | 158 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 D | eclipse.py | 158 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 D | install_megadrivers.py | 36 if os.path.isabs(args.libdir):
|
/third_party/python/Lib/distutils/command/ |
H A D | install_data.py | 57 if not os.path.isabs(dir):
|
/build/scripts/ |
H A D | copy_ex.py | 57 if not os.path.isabs(org_linkto): 77 linkto) and not os.path.isabs(org_linkto):
|
/third_party/python/Lib/unittest/ |
H A D | main.py | 36 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 D | builddeps.py | 311 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 D | bundle_check_online.py | 79 if os.path.isabs(value):
|
H A D | get_subsystem_with_component.py | 59 if os.path.isabs(destpath):
|
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/ |
H A D | gcc.py | 114 if os.path.isabs(origfile):
|
/third_party/python/Lib/idlelib/ |
H A D | filelist.py | 104 if not os.path.isabs(filename):
|
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
H A D | source.py | 137 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 D | checkextensions_win32.py | 93 if not os.path.isabs(dsp):
|