Home
last modified time | relevance | path

Searched refs:PathExt (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang-tools-extra/clangd/
DHeaderSourceSwitch.cpp26 llvm::StringRef PathExt = llvm::sys::path::extension(OriginalFile); in getCorrespondingHeaderOrSource() local
30 llvm::find_if(SourceExtensions, [&PathExt](PathRef SourceExt) { in getCorrespondingHeaderOrSource()
31 return SourceExt.equals_lower(PathExt); in getCorrespondingHeaderOrSource()
36 llvm::find_if(HeaderExtensions, [&PathExt](PathRef HeaderExt) { in getCorrespondingHeaderOrSource()
37 return HeaderExt.equals_lower(PathExt); in getCorrespondingHeaderOrSource()
/external/rust/cxx/gen/build/src/
Dpaths.rs30 pub(crate) trait PathExt { interface
34 impl PathExt for Path {
Dlib.rs95 use crate::paths::PathExt;
/external/rust/crates/which/src/
Dfinder.rs17 trait PathExt { trait
25 impl PathExt for PathBuf {