Home
last modified time | relevance | path

Searched defs:CanonicalPath (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/which/src/
Dlib.rs221 pub struct CanonicalPath { struct
225 impl CanonicalPath { implementation
229 pub fn new<T: AsRef<OsStr>>(binary_name: T) -> Result<CanonicalPath> { in new()
301 impl fmt::Debug for CanonicalPath { implementation
307 impl std::ops::Deref for CanonicalPath { implementation
315 impl AsRef<path::Path> for CanonicalPath { implementation
321 impl AsRef<OsStr> for CanonicalPath { implementation
327 impl Eq for CanonicalPath {} implementation
329 impl PartialEq<path::PathBuf> for CanonicalPath { implementation
/external/ImageMagick/MagickCore/
Dutility.h35 CanonicalPath, enumerator
/external/clang/lib/Frontend/
DModuleDependencyCollector.cpp86 char CanonicalPath[PATH_MAX]; in real_path() local
193 SmallString<256> CanonicalPath = AbsoluteSrc; in copyToRoot() local
/external/llvm-project/clang-tools-extra/clangd/index/
DCanonicalIncludes.cpp23 llvm::StringRef CanonicalPath) { in addMapping()
/external/llvm-project/clang-tools-extra/modularize/
DPreprocessorTracker.cpp919 std::string CanonicalPath(path); in getCanonicalPath() local
926 std::string CanonicalPath = getCanonicalPath(HeaderPath); in isHeaderListHeader() local
939 std::string CanonicalPath = getCanonicalPath(HeaderPath); in findHeaderHandle() local
952 std::string CanonicalPath = getCanonicalPath(HeaderPath); in addHeader() local
/external/llvm-project/clang-tools-extra/clangd/
DGlobalCompilationDatabase.cpp252 std::string CanonicalPath = removeDots(Request.FileName); in lookupCDB() local
/external/rust/crates/which/tests/
Dbasic.rs86 fn _which<T: AsRef<OsStr>>(f: &TestFixture, path: T) -> which::Result<which::CanonicalPath> { in _which()