Home
last modified time | relevance | path

Searched refs:AbsolutePath (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DCompilationDatabase.cpp106 SmallString<1024> AbsolutePath(getAbsolutePath(SourceFile)); in autoDetectFromSource() local
107 StringRef Directory = llvm::sys::path::parent_path(AbsolutePath); in autoDetectFromSource()
121 SmallString<1024> AbsolutePath(getAbsolutePath(SourceDir)); in autoDetectFromDirectory() local
124 findCompilationDatabaseFromDirectory(AbsolutePath, ErrorMessage); in autoDetectFromDirectory()
H A DJSONCompilationDatabase.cpp425 SmallString<128> AbsolutePath( in parse() local
427 llvm::sys::path::append(AbsolutePath, FileName); in parse()
428 llvm::sys::path::remove_dots(AbsolutePath, /*remove_dot_dot=*/ true); in parse()
429 llvm::sys::path::native(AbsolutePath, NativeFilePath); in parse()
H A DTooling.cpp235 SmallString<1024> AbsolutePath = RelativePath; in getAbsolutePath() local
236 if (auto EC = FS.makeAbsolute(AbsolutePath)) in getAbsolutePath()
238 llvm::sys::path::native(AbsolutePath); in getAbsolutePath()
239 return std::string(AbsolutePath.str()); in getAbsolutePath()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp532 SmallString<16> AbsolutePath; in parseDWO() local
535 sys::path::append(AbsolutePath, *CompilationDir); in parseDWO()
537 sys::path::append(AbsolutePath, *DWOFileName); in parseDWO()
541 auto DWOContext = Context.getDWOContext(AbsolutePath); in parseDWO()
H A DDWARFContext.cpp1372 DWARFContext::getDWOContext(StringRef AbsolutePath) { in getDWOContext() argument
1378 std::weak_ptr<DWOFile> *Entry = &DWOFiles[AbsolutePath]; in getDWOContext()
1403 return object::ObjectFile::createObjectFile(AbsolutePath); in getDWOContext()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DDiagnosticOptions.def54 DIAGOPT(AbsolutePath, 1, 0) /// Use absolute paths.
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFContext.h375 std::shared_ptr<DWARFContext> getDWOContext(StringRef AbsolutePath);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DVirtualFileSystem.cpp1144 SmallString<128> AbsolutePath; in setCurrentWorkingDirectory() local
1145 Path.toVector(AbsolutePath); in setCurrentWorkingDirectory()
1146 if (std::error_code EC = makeAbsolute(AbsolutePath)) in setCurrentWorkingDirectory()
1148 WorkingDirectory = std::string(AbsolutePath.str()); in setCurrentWorkingDirectory()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DTextDiagnostic.cpp756 if (DiagOpts->AbsolutePath) { in emitFilename()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DOptions.td2221 MarshallingInfoFlag<DiagnosticOpts<"AbsolutePath">>;