| /llvm-project-15.0.7/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageView.cpp | 35 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 D | RestrictSystemIncludesCheck.cpp | 29 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 D | RestrictSystemIncludesCheck.h | 63 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 D | os_version_check.c | 165 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 D | YAMLRemarkParser.cpp | 143 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 D | BitstreamRemarkParser.cpp | 421 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 D | ObjectContainerBSDArchive.cpp | 540 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 D | llvm-libtool-darwin.cpp | 142 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 D | Marshalling.cpp | 321 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 D | VTableBuilder.cpp | 3425 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 D | DWARFVerifier.cpp | 886 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 D | VirtualFileSystem.cpp | 1829 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 D | Path.inc | 117 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 D | BackgroundIndexTests.cpp | 155 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 D | DWARFRewriter.cpp | 1570 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 D | CodeViewDebug.cpp | 202 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 D | MachODump.cpp | 7378 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()
|