Home
last modified time | relevance | path

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

/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c366 char *FullPath, in AcpiNsBuildNormalizedPath() argument
393 if (!FullPath) in AcpiNsBuildNormalizedPath()
408 ACPI_PATH_PUT8(FullPath, PathSize, AML_DUAL_NAME_PREFIX, Length); in AcpiNsBuildNormalizedPath()
422 ACPI_PATH_PUT8(FullPath, PathSize, c, Length); in AcpiNsBuildNormalizedPath()
429 ACPI_PATH_PUT8(FullPath, PathSize, AML_ROOT_PREFIX, Length); in AcpiNsBuildNormalizedPath()
435 Left = FullPath; in AcpiNsBuildNormalizedPath()
436 Right = FullPath+Length - 1; in AcpiNsBuildNormalizedPath()
449 ACPI_PATH_PUT8 (FullPath, PathSize, '\0', Length); in AcpiNsBuildNormalizedPath()
536 char *FullPath = NULL; in AcpiNsBuildPrefixedPathname() local
562 FullPath = ACPI_ALLOCATE_ZEROED ( in AcpiNsBuildPrefixedPathname()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/
H A DHeaderFile.h54 std::string FullPath; variable
70 HeaderFile(StringRef FullPath, HeaderType Type,
73 : FullPath(FullPath), Type(Type), IncludeName(IncludeName), in FullPath() argument
80 StringRef getPath() const { return FullPath; } in getPath()
94 return std::tie(Type, FullPath, IncludeName, Language, Excluded, Extra,
95 Umbrella) == std::tie(Other.Type, Other.FullPath,
110 return std::tie(Type, Umbrella, Extra, FullPath) <
111 std::tie(Other.Type, Other.Umbrella, Other.Extra, Other.FullPath);
149 std::optional<std::string> createIncludeHeaderName(const StringRef FullPath);
H A DLibrary.h42 void addHeaderFile(StringRef FullPath, HeaderType Type,
44 Headers.emplace_back(FullPath, Type, IncludePath);
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DFrontend.cpp170 [&](const StringRef FullPath) -> std::optional<std::string> { in findLibrary() argument
172 SmallString<PATH_MAX> TextAPIFilePath = FullPath; in findLibrary()
178 if (FM.getOptionalFileRef(FullPath)) in findLibrary()
179 return std::string(FullPath); in findLibrary()
189 SmallString<PATH_MAX> FullPath(Path); in findLibrary() local
190 sys::path::append(FullPath, Filename + StringRef(".framework"), Filename); in findLibrary()
191 if (auto LibOrNull = getLibrary(FullPath)) in findLibrary()
201 SmallString<PATH_MAX> FullPath(Path); in findLibrary() local
202 sys::path::append(FullPath, Filename); in findLibrary()
203 if (auto LibOrNull = getLibrary(FullPath)) in findLibrary()
[all …]
H A DHeaderFile.cpp19 std::optional<std::string> createIncludeHeaderName(const StringRef FullPath) { in createIncludeHeaderName() argument
22 auto PathPrefix = FullPath.find(Pattern); in createIncludeHeaderName()
25 return FullPath.drop_front(PathPrefix).str(); in createIncludeHeaderName()
30 HeaderFile::getFrameworkIncludeRule().match(FullPath, &Matches); in createIncludeHeaderName()
/freebsd/sys/contrib/dev/acpica/components/utilities/
H A Duterror.c342 char *FullPath; in AcpiUtPrefixedNamespaceError() local
374 FullPath = AcpiNsBuildPrefixedPathname (PrefixScope, InternalPath); in AcpiUtPrefixedNamespaceError()
377 FullPath ? FullPath : "Could not get pathname", in AcpiUtPrefixedNamespaceError()
380 if (FullPath) in AcpiUtPrefixedNamespaceError()
382 ACPI_FREE (FullPath); in AcpiUtPrefixedNamespaceError()
/freebsd/contrib/llvm-project/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); 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()
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dos_version_check.c170 char FullPath[strlen(PListPathPrefix) + strlen(PListPath) + 1]; in _initializeAvailabilityCheck() local
171 strcpy(FullPath, PListPathPrefix); in _initializeAvailabilityCheck()
172 strcat(FullPath, PListPath); in _initializeAvailabilityCheck()
173 PListPath = FullPath; in _initializeAvailabilityCheck()
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp123 SmallString<80> FullPath; in createYAMLParserFromMeta() local
125 FullPath = *ExternalFilePrependPath; in createYAMLParserFromMeta()
126 sys::path::append(FullPath, ExternalFilePath); in createYAMLParserFromMeta()
130 MemoryBuffer::getFile(FullPath); in createYAMLParserFromMeta()
132 return createFileError(FullPath, EC); in createYAMLParserFromMeta()
H A DBitstreamRemarkParser.cpp419 SmallString<80> FullPath(ExternalFilePrependPath); in processExternalFilePath() local
420 sys::path::append(FullPath, *ExternalFilePath); in processExternalFilePath()
426 MemoryBuffer::getFile(FullPath); in processExternalFilePath()
428 return createFileError(FullPath, EC); in processExternalFilePath()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DHIPUtility.cpp113 llvm::SmallString<256> FullPath = Path; in processStaticLibraries() local
114 llvm::sys::path::append(FullPath, FullLibName); in processStaticLibraries()
116 if (llvm::sys::fs::exists(FullPath)) { in processStaticLibraries()
119 << FullPath << "\n"; in processStaticLibraries()
120 auto BufferOrErr = llvm::MemoryBuffer::getFile(FullPath); in processStaticLibraries()
H A DDarwin.cpp1360 SmallString<128> FullPath(getDriver().ResourceDir); in getCompilerRT() local
1361 llvm::sys::path::append(FullPath, "lib", "darwin", "macho_embedded", in getCompilerRT()
1363 return std::string(FullPath); in getCompilerRT()
1380 SmallString<128> FullPath(getDriver().ResourceDir); in getCompilerRT() local
1381 llvm::sys::path::append(FullPath, "lib", "darwin", DarwinLibName); in getCompilerRT()
1382 return std::string(FullPath); in getCompilerRT()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp388 llvm::SmallString<128> FullPath; in GetChildFileSpecificationsFromThin() local
390 FullPath = childPath; in GetChildFileSpecificationsFromThin()
392 FullPath = parentFileSpec.GetDirectory().GetStringRef(); in GetChildFileSpecificationsFromThin()
393 llvm::sys::path::append(FullPath, childPath); in GetChildFileSpecificationsFromThin()
395 FileSpec child = FileSpec(FullPath.str(), llvm::sys::path::Style::posix); in GetChildFileSpecificationsFromThin()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp1905 SmallString<256> FullPath; in parseEntry() local
1907 FullPath = FS->getOverlayFileDir(); in parseEntry()
1908 assert(!FullPath.empty() && in parseEntry()
1910 llvm::sys::path::append(FullPath, Value); in parseEntry()
1912 FullPath = Value; in parseEntry()
1917 FullPath = canonicalize(FullPath); in parseEntry()
1918 ExternalContentsPath = FullPath.str(); in parseEntry()
1970 StringRef FullPath = FS->getOverlayFileDir(); in parseEntry() local
1971 assert(!FullPath.empty() && "Overlay file directory must exist"); in parseEntry()
1972 EC = FS->makeAbsolute(FullPath, Name); in parseEntry()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp3524 FullPathTy &FullPath, in findPathsToSubobject() argument
3527 Paths.push_back(FullPath); in findPathsToSubobject()
3538 FullPath.insert(BaseSubobject(Base, NewOffset)); in findPathsToSubobject()
3540 IntroducingObject, FullPath, Paths); in findPathsToSubobject()
3541 FullPath.pop_back(); in findPathsToSubobject()
3563 const FullPathTy &FullPath) { in getOffsetOfFullPath() argument
3567 for (const BaseSubobject &BSO : FullPath) { in getOffsetOfFullPath()
3667 FullPathTy FullPath; in computeFullPathsForVFTables() local
3672 BaseSubobject(Info->IntroducingObject, Info->FullOffsetInMDC), FullPath, in computeFullPathsForVFTables()
3674 FullPath.clear(); in computeFullPathsForVFTables()
/freebsd/sys/contrib/dev/acpica/include/
H A Dacnamesp.h486 char *FullPath,
/freebsd/contrib/llvm-project/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);
125 return UTF8ToUTF16(FullPath, Path16);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp1045 std::string FullPath; in verifyDebugLineRows() local
1048 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath); in verifyDebugLineRows()
1051 auto [It, Inserted] = FullPathMap.try_emplace(FullPath, FileIndex); in verifyDebugLineRows()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp203 StringRef FullPath = getFullFilepath(F); in maybeRecordFile() local
205 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile()
228 bool Success = OS.emitCVFileDirective(NextId, FullPath, ChecksumAsBytes, in maybeRecordFile()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp7165 SmallString<1024> FullPath(DSYMFile); in getMachODSymObject() local
7166 sys::path::append(FullPath, "Contents", "Resources", "DWARF", ShortName); in getMachODSymObject()
7167 DSYMPath = FullPath.str(); in getMachODSymObject()