Home
last modified time | relevance | path

Searched refs:RelPath (Results 1 – 12 of 12) sorted by relevance

/external/rust/crates/libz-sys/src/zlib/contrib/dotzlib/DotZLib/
DDotZLib.csproj93 RelPath = "AssemblyInfo.cs"
98 RelPath = "ChecksumImpl.cs"
103 RelPath = "CircularBuffer.cs"
108 RelPath = "CodecBase.cs"
113 RelPath = "Deflater.cs"
118 RelPath = "DotZLib.cs"
123 RelPath = "GZipStream.cs"
128 RelPath = "Inflater.cs"
133 RelPath = "UnitTests.cs"
/external/llvm-project/clang-tools-extra/clangd/
DConfigProvider.cpp79 Provider::fromAncestorRelativeYAMLFiles(llvm::StringRef RelPath, in fromAncestorRelativeYAMLFiles() argument
82 std::string RelPath; in fromAncestorRelativeYAMLFiles() member in clang::clangd::config::Provider::fromAncestorRelativeYAMLFiles::RelFileProvider
119 path::append(ConfigPath, RelPath); in fromAncestorRelativeYAMLFiles()
136 RelFileProvider(llvm::StringRef RelPath, const ThreadsafeFS &FS) in fromAncestorRelativeYAMLFiles() argument
137 : RelPath(RelPath), FS(FS) { in fromAncestorRelativeYAMLFiles()
138 assert(llvm::sys::path::is_relative(RelPath)); in fromAncestorRelativeYAMLFiles()
142 return std::make_unique<RelFileProvider>(RelPath, FS); in fromAncestorRelativeYAMLFiles()
DTidyProvider.cpp64 std::string RelPath; member in clang::clangd::__anon0bff73370111::DotClangTidyTree
75 : FS(FS), RelPath(".clang-tidy"), MaxStaleness(std::chrono::seconds(5)) {} in DotClangTidyTree()
98 path::append(ConfigPath, RelPath); in apply()
DConfigProvider.h81 fromAncestorRelativeYAMLFiles(llvm::StringRef RelPath, const ThreadsafeFS &);
/external/llvm-project/libc/utils/tools/WrapperGen/
DMain.cpp70 auto RelPath = in WrapperGenMain() local
72 OS << "#include \"src/" << RelPath << "/" << FunctionName << ".h\"\n"; in WrapperGenMain()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DPath.cpp530 StringRef RelPath = OrigPath.substr(OldPrefixDir.size()); in replace_path_prefix() local
533 if (!RelPath.empty()) { in replace_path_prefix()
534 if (!is_separator(RelPath[0], style) || !strict) in replace_path_prefix()
535 path::append(NewPath, style, RelPath); in replace_path_prefix()
537 path::append(NewPath, style, relative_path(RelPath, style)); in replace_path_prefix()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp193 StringRef RelPath = SP->getFilename(); in getFilename() local
194 if (sys::fs::exists(RelPath)) in getFilename()
195 Path = RelPath; in getFilename()
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp267 StringRef RelPath = SP->getFilename(); in getFilename() local
268 if (sys::fs::exists(RelPath)) in getFilename()
269 Path = RelPath; in getFilename()
/external/llvm/lib/Support/
DPath.cpp541 StringRef RelPath = OrigPath.substr(OldPrefix.size()); in replace_path_prefix() local
544 path::append(NewPath, RelPath); in replace_path_prefix()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DPath.cpp541 StringRef RelPath = OrigPath.substr(OldPrefix.size()); in replace_path_prefix() local
544 path::append(NewPath, RelPath); in replace_path_prefix()
/external/llvm-project/llvm/lib/Support/
DPath.cpp531 StringRef RelPath = OrigPath.substr(OldPrefix.size()); in replace_path_prefix() local
533 (Twine(NewPrefix) + RelPath).toVector(NewPath); in replace_path_prefix()
/external/webrtc/tools_webrtc/mb/
Dmb.py936 return self.RelPath(path, self.src_dir)
1192 def RelPath(self, path, start='.'): member in MetaBuildWrapper