Home
last modified time | relevance | path

Searched refs:is_absolute (Results 1 – 25 of 35) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
DPDBSymbolCompiland.cpp56 if (sys::path::is_absolute(EnvSrc)) in getSourceFileFullPath()
68 if (sys::path::is_absolute(Path)) in getSourceFileFullPath()
76 if (sys::path::is_absolute(RecordedResult)) in getSourceFileFullPath()
/third_party/python/PC/layout/
Dmain.py581 if not ns.source.is_absolute():
583 if not ns.build.is_absolute():
585 if not ns.temp.is_absolute():
587 if not ns.doc_build.is_absolute():
589 if ns.include_cat and not ns.include_cat.is_absolute():
594 if ns.copy and not ns.copy.is_absolute():
596 if ns.zip and not ns.zip.is_absolute():
598 if ns.catalog and not ns.catalog.is_absolute():
/third_party/libinput/tools/
Dlibinput-analyze-per-slot-delta.py47 self, is_absolute=False, resolution=None, threshold=None, ignore_below=None argument
52 self.is_absolute = is_absolute
100 if not self.is_absolute:
360 is_absolute=args.use_absolute,
/third_party/node/deps/uvwasi/src/
Dpath_resolver.c44 int is_absolute; in uvwasi__normalize_path() local
49 is_absolute = uvwasi__is_absolute_path(path, path_len); in uvwasi__normalize_path()
57 if (ptr == normalized_path && next != NULL && is_absolute) { in uvwasi__normalize_path()
114 if (1 == is_absolute) in uvwasi__normalize_path()
/third_party/python/Lib/test/
Dtest_pathlib.py739 self.assertFalse(P().is_absolute())
740 self.assertFalse(P('a').is_absolute())
741 self.assertFalse(P('a/b/').is_absolute())
742 self.assertTrue(P('/').is_absolute())
743 self.assertTrue(P('/a').is_absolute())
744 self.assertTrue(P('/a/b/').is_absolute())
745 self.assertTrue(P('//a').is_absolute())
746 self.assertTrue(P('//a/b').is_absolute())
1220 self.assertFalse(P().is_absolute())
1221 self.assertFalse(P('a').is_absolute())
[all …]
/third_party/rust/crates/cxx/gen/build/src/
Dtarget.rs13 if target_dir.is_absolute() { in find_target_dir()
Dlib.rs243 if !exported_dir.is_absolute() { in validate_cfg()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DProcess.cpp32 assert(!path::is_absolute(FileName)); in FindInEnvPath()
DPath.cpp170 if (!sys::path::is_absolute(Twine(ModelStorage))) { in createUniqueEntity()
676 bool is_absolute(const Twine &path) { in is_absolute() function
690 bool is_relative(const Twine &path) { return !is_absolute(path); } in is_relative()
716 if (path::is_absolute(path)) in remove_dots()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DProcess.cpp39 assert(!path::is_absolute(FileName)); in FindInEnvPath()
DPath.cpp686 bool is_absolute(const Twine &path, Style style) { in is_absolute() function
698 return !is_absolute(path, style); in is_relative()
727 if (path::is_absolute(path, style)) in remove_dots()
771 if (!sys::path::is_absolute(Twine(ModelStorage))) { in createUniquePath()
927 if (path::is_absolute(path)) in make_absolute()
DVirtualFileSystem.cpp125 if (llvm::sys::path::is_absolute(Path)) in makeAbsolute()
1077 if (llvm::sys::path::is_absolute(Path, llvm::sys::path::Style::posix) || in makeAbsolute()
1078 llvm::sys::path::is_absolute(Path, llvm::sys::path::Style::windows)) in makeAbsolute()
1448 if (sys::path::is_absolute(Name, sys::path::Style::posix)) { in parseEntry()
1450 } else if (sys::path::is_absolute(Name, sys::path::Style::windows)) { in parseEntry()
1898 assert(sys::path::is_absolute(VirtualPath) && "virtual path not absolute"); in addFileMapping()
1899 assert(sys::path::is_absolute(RealPath) && "real path not absolute"); in addFileMapping()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DPath.h431 bool is_absolute(const Twine &path);
/third_party/python/Doc/library/
Dpathlib.rst447 .. method:: PurePath.is_absolute()
452 >>> PurePosixPath('/a/b').is_absolute()
454 >>> PurePosixPath('a/b').is_absolute()
457 >>> PureWindowsPath('c:/a/b').is_absolute()
459 >>> PureWindowsPath('/a/b').is_absolute()
461 >>> PureWindowsPath('c:').is_absolute()
463 >>> PureWindowsPath('//some/share').is_absolute()
1271 :func:`os.path.isabs` :meth:`PurePath.is_absolute`
/third_party/rust/crates/which-rs/src/
Dfinder.rs38 if self.is_absolute() { in to_absolute()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DPath.h448 bool is_absolute(const Twine &path, Style style = Style::native);
/third_party/python/Lib/
Dpathlib.py648 if not self.is_absolute():
878 def is_absolute(self): member in PurePath
1056 if self.is_absolute():
/third_party/gn/src/gn/
Dcommand_format.cc466 auto is_absolute = [](std::string_view import) { in SortImports() local
470 int a_is_rel = !is_absolute(a_name); in SortImports()
471 int b_is_rel = !is_absolute(b_name); in SortImports()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDiagnosticInfo.cpp134 if (sys::path::is_absolute(Name)) in getAbsolutePath()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp1043 return sys::path::is_absolute(Path, sys::path::Style::posix) || in isPathAbsoluteOnWindowsOrPosix()
1044 sys::path::is_absolute(Path, sys::path::Style::windows); in isPathAbsoluteOnWindowsOrPosix()
/third_party/node/deps/uv/src/win/
Dfs.c2385 int is_absolute, is_long_path; in fs__create_junction() local
2396 is_absolute = 1; in fs__create_junction()
2398 is_absolute = target_len >= 3 && IS_LETTER(path[0]) && in fs__create_junction()
2402 if (!is_absolute) { in fs__create_junction()
/third_party/libuv/src/win/
Dfs.c2385 int is_absolute, is_long_path; in fs__create_junction() local
2396 is_absolute = 1; in fs__create_junction()
2398 is_absolute = target_len >= 3 && IS_LETTER(path[0]) && in fs__create_junction()
2402 if (!is_absolute) { in fs__create_junction()
/third_party/rust/crates/bindgen/bindgen-cli/
Doptions.rs841 if !path.is_absolute() { in builder_from_flags()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DArchive.cpp425 if (sys::path::is_absolute(Name)) in getFullName()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
Dvaliditygenerator.py233 if not directory.is_absolute():

12