| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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 | 422 SmallString<80> FullPath(ExternalFilePrependPath); in processExternalFilePath() local 423 sys::path::append(FullPath, *ExternalFilePath); in processExternalFilePath() 429 MemoryBuffer::getFile(FullPath); in processExternalFilePath() 431 return createFileError(FullPath, EC); in processExternalFilePath()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
| H A D | ObjectContainerBSDArchive.cpp | 516 llvm::SmallString<128> FullPath; in GetChildFileSpecificationsFromThin() local 518 FullPath = childPath; in GetChildFileSpecificationsFromThin() 520 FullPath = parentFileSpec.GetDirectory().GetStringRef(); in GetChildFileSpecificationsFromThin() 521 llvm::sys::path::append(FullPath, childPath); in GetChildFileSpecificationsFromThin() 523 FileSpec child = FileSpec(FullPath.str(), llvm::sys::path::Style::posix); in GetChildFileSpecificationsFromThin()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-libtool-darwin/ |
| H A D | llvm-libtool-darwin.cpp | 155 Expected<std::string> FullPath = searchForFile( in processCommandLineLibraries() local 157 if (!FullPath) in processCommandLineLibraries() 158 return FullPath.takeError(); in processCommandLineLibraries() 159 InputFiles.push_back(FullPath.get()); in processCommandLineLibraries()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | VirtualFileSystem.cpp | 1859 SmallString<256> FullPath; in parseEntry() local 1861 FullPath = FS->getOverlayFileDir(); in parseEntry() 1862 assert(!FullPath.empty() && in parseEntry() 1864 llvm::sys::path::append(FullPath, Value); in parseEntry() 1866 FullPath = Value; in parseEntry() 1871 FullPath = canonicalize(FullPath); in parseEntry() 1872 ExternalContentsPath = FullPath.str(); in parseEntry() 1924 StringRef FullPath = FS->getOverlayFileDir(); in parseEntry() local 1925 assert(!FullPath.empty() && "Overlay file directory must exist"); in parseEntry() 1926 EC = FS->makeAbsolute(FullPath, Name); in parseEntry()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | VTableBuilder.cpp | 3426 FullPathTy &FullPath, in findPathsToSubobject() argument 3429 Paths.push_back(FullPath); in findPathsToSubobject() 3440 FullPath.insert(BaseSubobject(Base, NewOffset)); in findPathsToSubobject() 3442 IntroducingObject, FullPath, Paths); in findPathsToSubobject() 3443 FullPath.pop_back(); in findPathsToSubobject() 3465 const FullPathTy &FullPath) { in getOffsetOfFullPath() argument 3469 for (const BaseSubobject &BSO : FullPath) { in getOffsetOfFullPath() 3569 FullPathTy FullPath; in computeFullPathsForVFTables() local 3574 BaseSubobject(Info->IntroducingObject, Info->FullOffsetInMDC), FullPath, in computeFullPathsForVFTables() 3576 FullPath.clear(); in computeFullPathsForVFTables()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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);
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.cpp | 200 StringRef FullPath = getFullFilepath(F); in maybeRecordFile() local 202 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile() 225 bool Success = OS.emitCVFileDirective(NextId, FullPath, ChecksumAsBytes, in maybeRecordFile()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | MachODump.cpp | 7456 SmallString<1024> FullPath(DSYMFile); in getMachODSymObject() local 7457 sys::path::append(FullPath, "Contents", "Resources", "DWARF", ShortName); in getMachODSymObject() 7458 DSYMPath = FullPath.str(); in getMachODSymObject()
|