Home
last modified time | relevance | path

Searched refs:FullPath (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp35 SmallString<256> FullPath; in getOutputPath() local
38 FullPath.append(Opts.ShowOutputDirectory); in getOutputPath()
41 sys::path::append(FullPath, getCoverageDir()); in getOutputPath()
45 sys::path::append(FullPath, sys::path::relative_path(ParentPath)); in getOutputPath()
48 sys::path::append(FullPath, PathFilename); in getOutputPath()
49 sys::path::native(FullPath); in getOutputPath()
51 return std::string(FullPath.str()); in getOutputPath()
60 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false); in createOutputStream() local
62 auto ParentDir = sys::path::parent_path(FullPath); in createOutputStream()
68 new raw_fd_ostream(FullPath, E, sys::fs::FA_Read | sys::fs::FA_Write); in createOutputStream()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/portability/
H A DRestrictSystemIncludesCheck.cpp29 SmallString<256> FullPath; in InclusionDirective() local
30 llvm::sys::path::append(FullPath, SearchPath); in InclusionDirective()
31 llvm::sys::path::append(FullPath, RelativePath); in InclusionDirective()
35 HashLoc, FilenameRange, FileName, FullPath.str(), in InclusionDirective()
H A DRestrictSystemIncludesCheck.h63 StringRef Filename, StringRef FullPath, bool IsInMainFile) in IncludeDirective()
64 : Loc(Loc), Range(Range), IncludeFile(Filename), IncludePath(FullPath), in IncludeDirective()
/llvm-project-15.0.7/compiler-rt/lib/builtins/
H A Dos_version_check.c165 char FullPath[strlen(PListPathPrefix) + strlen(PListPath) + 1]; in _initializeAvailabilityCheck() local
166 strcpy(FullPath, PListPathPrefix); in _initializeAvailabilityCheck()
167 strcat(FullPath, PListPath); in _initializeAvailabilityCheck()
168 PListPath = FullPath; in _initializeAvailabilityCheck()
/llvm-project-15.0.7/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp143 SmallString<80> FullPath; in createYAMLParserFromMeta() local
145 FullPath = *ExternalFilePrependPath; in createYAMLParserFromMeta()
146 sys::path::append(FullPath, ExternalFilePath); in createYAMLParserFromMeta()
150 MemoryBuffer::getFile(FullPath); in createYAMLParserFromMeta()
152 return createFileError(FullPath, EC); in createYAMLParserFromMeta()
H A DBitstreamRemarkParser.cpp421 SmallString<80> FullPath(ExternalFilePrependPath); in processExternalFilePath() local
422 sys::path::append(FullPath, *ExternalFilePath); in processExternalFilePath()
428 MemoryBuffer::getFile(FullPath); in processExternalFilePath()
430 return createFileError(FullPath, EC); in processExternalFilePath()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp540 llvm::SmallString<128> FullPath; in GetChildFileSpecificationsFromThin() local
542 FullPath = childPath; in GetChildFileSpecificationsFromThin()
544 FullPath = parentFileSpec.GetDirectory().GetStringRef(); in GetChildFileSpecificationsFromThin()
545 llvm::sys::path::append(FullPath, childPath); in GetChildFileSpecificationsFromThin()
547 FileSpec child = FileSpec(FullPath.str(), llvm::sys::path::Style::posix); in GetChildFileSpecificationsFromThin()
/llvm-project-15.0.7/llvm/tools/llvm-libtool-darwin/
H A Dllvm-libtool-darwin.cpp142 Expected<std::string> FullPath = searchForFile( in processCommandLineLibraries() local
144 if (!FullPath) in processCommandLineLibraries()
145 return FullPath.takeError(); in processCommandLineLibraries()
146 InputFiles.push_back(FullPath.get()); in processCommandLineLibraries()
/llvm-project-15.0.7/clang-tools-extra/clangd/index/remote/marshalling/
H A DMarshalling.cpp321 llvm::SmallString<256> FullPath = llvm::StringRef(LocalIndexRoot); in relativePathToURI() local
322 append(FullPath, RelativePath); in relativePathToURI()
323 auto Result = URI::createFile(FullPath); in relativePathToURI()
/llvm-project-15.0.7/clang/lib/AST/
H A DVTableBuilder.cpp3425 FullPathTy &FullPath, in findPathsToSubobject() argument
3428 Paths.push_back(FullPath); in findPathsToSubobject()
3439 FullPath.insert(BaseSubobject(Base, NewOffset)); in findPathsToSubobject()
3441 IntroducingObject, FullPath, Paths); in findPathsToSubobject()
3442 FullPath.pop_back(); in findPathsToSubobject()
3464 const FullPathTy &FullPath) { in getOffsetOfFullPath() argument
3468 for (const BaseSubobject &BSO : FullPath) { in getOffsetOfFullPath()
3568 FullPathTy FullPath; in computeFullPathsForVFTables() local
3573 BaseSubobject(Info->IntroducingObject, Info->FullOffsetInMDC), FullPath, in computeFullPathsForVFTables()
3575 FullPath.clear(); in computeFullPathsForVFTables()
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp886 std::string FullPath; in verifyDebugLineRows() local
889 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath); in verifyDebugLineRows()
892 auto It = FullPathMap.find(FullPath); in verifyDebugLineRows()
894 FullPathMap[FullPath] = FileIndex; in verifyDebugLineRows()
/llvm-project-15.0.7/llvm/lib/Support/
H A DVirtualFileSystem.cpp1829 SmallString<256> FullPath; in parseEntry() local
1831 FullPath = FS->getExternalContentsPrefixDir(); in parseEntry()
1832 assert(!FullPath.empty() && in parseEntry()
1834 llvm::sys::path::append(FullPath, Value); in parseEntry()
1836 FullPath = Value; in parseEntry()
1841 FullPath = canonicalize(FullPath); in parseEntry()
1842 ExternalContentsPath = FullPath.str(); in parseEntry()
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DPath.inc117 SmallString<2 * MAX_PATH> FullPath(LongPathPrefix);
119 FullPath.append("UNC\\");
120 FullPath.append(Path8Str.begin() + 2, Path8Str.end());
122 FullPath.append(Path8Str);
124 return UTF8ToUTF16(FullPath, Path16);
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DBackgroundIndexTests.cpp155 std::string FullPath = testPath(Cmd.Filename); in TEST_F() local
156 CDB.setCompileCommand(FullPath, std::move(Cmd)); in TEST_F()
/llvm-project-15.0.7/bolt/lib/Rewrite/
H A DDWARFRewriter.cpp1570 auto FullPath = CompDir.append("/").append(ObjectName); in writeDWOFiles() local
1574 std::make_unique<ToolOutputFile>(FullPath, EC, sys::fs::OF_None); in writeDWOFiles()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp202 StringRef FullPath = getFullFilepath(F); in maybeRecordFile() local
204 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile()
227 bool Success = OS.emitCVFileDirective(NextId, FullPath, ChecksumAsBytes, in maybeRecordFile()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DMachODump.cpp7378 SmallString<1024> FullPath(DSYMPath); in DisassembleMachO() local
7379 llvm::sys::path::append(FullPath, "Contents", "Resources", "DWARF", in DisassembleMachO()
7381 DSYMPath = std::string(FullPath.str()); in DisassembleMachO()