Home
last modified time | relevance | path

Searched refs:is_absolute (Results 1 - 25 of 28) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
H A 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/
H A 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/node/deps/uvwasi/src/
H A 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/libinput/tools/
H A Dlibinput-analyze-per-slot-delta.py47 self, is_absolute=False, resolution=None, threshold=None, ignore_below=None
52 self.is_absolute = is_absolute
100 if not self.is_absolute:
360 is_absolute=args.use_absolute,
/third_party/rust/crates/cxx/gen/build/src/
H A Dtarget.rs13 if target_dir.is_absolute() {
H A Dlib.rs243 if !exported_dir.is_absolute() { in validate_cfg()
/third_party/python/Lib/test/
H A Dtest_pathlib.py746 self.assertFalse(P().is_absolute())
747 self.assertFalse(P('a').is_absolute())
748 self.assertFalse(P('a/b/').is_absolute())
749 self.assertTrue(P('/').is_absolute())
750 self.assertTrue(P('/a').is_absolute())
751 self.assertTrue(P('/a/b/').is_absolute())
752 self.assertTrue(P('//a').is_absolute())
753 self.assertTrue(P('//a/b').is_absolute())
1227 self.assertFalse(P().is_absolute())
1228 self.assertFalse(P('a').is_absolute())
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DProcess.cpp32 assert(!path::is_absolute(FileName)); in FindInEnvPath()
H A DPath.cpp170 if (!sys::path::is_absolute(Twine(ModelStorage))) { in createUniqueEntity()
676 bool is_absolute(const Twine &path) {
690 bool is_relative(const Twine &path) { return !is_absolute(path); }
716 if (path::is_absolute(path))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DProcess.cpp39 assert(!path::is_absolute(FileName)); in FindInEnvPath()
H A DPath.cpp686 bool is_absolute(const Twine &path, Style style) {
698 return !is_absolute(path, style);
727 if (path::is_absolute(path, style))
771 if (!sys::path::is_absolute(Twine(ModelStorage))) {
927 if (path::is_absolute(path))
H A 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/
H A DPath.h431 bool is_absolute(const Twine &path);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DPath.h448 bool is_absolute(const Twine &path, Style style = Style::native);
/third_party/rust/crates/which-rs/src/
H A Dfinder.rs38 if self.is_absolute() { in to_absolute()
/third_party/gn/src/gn/
H A Dcommand_format.cc488 auto is_absolute = [](std::string_view import) { in SortImports() local
492 int a_is_rel = !is_absolute(a_name); in SortImports()
493 int b_is_rel = !is_absolute(b_name); in SortImports()
/third_party/python/Lib/
H A Dpathlib.py565 if not self.is_absolute():
792 def is_absolute(self): member in PurePath
977 if self.is_absolute():
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A 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/
H A 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/libuv/src/win/
H A Dfs.c2366 int is_absolute, is_long_path; in fs__create_junction() local
2377 is_absolute = 1; in fs__create_junction()
2379 is_absolute = target_len >= 3 && IS_LETTER(path[0]) && in fs__create_junction()
2383 if (!is_absolute) { in fs__create_junction()
/third_party/node/deps/uv/src/win/
H A 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/
H A 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/
H A DArchive.cpp425 if (sys::path::is_absolute(Name)) in getFullName()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dvaliditygenerator.py233 if not directory.is_absolute():
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCAsmStreamer.cpp1222 if (sys::path::is_absolute(Filename))

Completed in 36 milliseconds

12