/freebsd/sys/contrib/dev/acpica/components/namespace/ |
H A D | nsnames.c | 366 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 D | HeaderFile.h | 54 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 D | Library.h | 42 void addHeaderFile(StringRef FullPath, HeaderType Type, 44 Headers.emplace_back(FullPath, Type, IncludePath);
|
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | Frontend.cpp | 171 [&](const StringRef FullPath) -> std::optional<std::string> { in findLibrary() argument 173 SmallString<PATH_MAX> TextAPIFilePath = FullPath; in findLibrary() 179 if (FM.getOptionalFileRef(FullPath)) in findLibrary() 180 return std::string(FullPath); in findLibrary() 190 SmallString<PATH_MAX> FullPath(Path); in findLibrary() local 191 sys::path::append(FullPath, Filename + StringRef(".framework"), Filename); in findLibrary() 192 if (auto LibOrNull = getLibrary(FullPath)) in findLibrary() 202 SmallString<PATH_MAX> FullPath(Path); in findLibrary() local 203 sys::path::append(FullPath, Filename); in findLibrary() 204 if (auto LibOrNull = getLibrary(FullPath)) in findLibrary() [all …]
|
H A D | HeaderFile.cpp | 19 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 D | uterror.c | 342 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 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); 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 D | os_version_check.c | 169 char FullPath[strlen(PListPathPrefix) + strlen(PListPath) + 1]; in _initializeAvailabilityCheck() local 170 strcpy(FullPath, PListPathPrefix); in _initializeAvailabilityCheck() 171 strcat(FullPath, PListPath); in _initializeAvailabilityCheck() 172 PListPath = FullPath; in _initializeAvailabilityCheck()
|
/freebsd/contrib/llvm-project/llvm/lib/Remarks/ |
H A D | YAMLRemarkParser.cpp | 142 SmallString<80> FullPath; in createYAMLParserFromMeta() 144 FullPath = *ExternalFilePrependPath; in createYAMLParserFromMeta() local 145 sys::path::append(FullPath, ExternalFilePath); in createYAMLParserFromMeta() 149 MemoryBuffer::getFile(FullPath); in createYAMLParserFromMeta() 151 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()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
H A D | ObjectContainerBSDArchive.cpp | 386 llvm::SmallString<128> FullPath; 388 FullPath = childPath; in Terminate() 390 FullPath = parentFileSpec.GetDirectory().GetStringRef(); 391 llvm::sys::path::append(FullPath, childPath); in CreateInstance() 393 FileSpec child = FileSpec(FullPath.str(), llvm::sys::path::Style::posix); in CreateInstance() 516 llvm::SmallString<128> FullPath; GetChildFileSpecificationsFromThin() local
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | VirtualFileSystem.cpp | 1892 SmallString<256> FullPath; in parseEntry() local 1894 FullPath = FS->getOverlayFileDir(); in parseEntry() 1895 assert(!FullPath.empty() && in parseEntry() 1897 llvm::sys::path::append(FullPath, Value); in parseEntry() 1899 FullPath = Value; in parseEntry() 1904 FullPath = canonicalize(FullPath); in parseEntry() 1905 ExternalContentsPath = FullPath.str(); in parseEntry() 1957 StringRef FullPath = FS->getOverlayFileDir(); in parseEntry() local 1958 assert(!FullPath.empty() && "Overlay file directory must exist"); in parseEntry() 1959 EC = FS->makeAbsolute(FullPath, Name); in parseEntry()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | VTableBuilder.cpp | 3522 FullPathTy &FullPath, in findPathsToSubobject() argument 3525 Paths.push_back(FullPath); in findPathsToSubobject() 3536 FullPath.insert(BaseSubobject(Base, NewOffset)); in findPathsToSubobject() 3538 IntroducingObject, FullPath, Paths); in findPathsToSubobject() 3539 FullPath.pop_back(); in findPathsToSubobject() 3561 const FullPathTy &FullPath) { in getOffsetOfFullPath() argument 3565 for (const BaseSubobject &BSO : FullPath) { in getOffsetOfFullPath() 3665 FullPathTy FullPath; in computeFullPathsForVFTables() local 3670 BaseSubobject(Info->IntroducingObject, Info->FullOffsetInMDC), FullPath, in computeFullPathsForVFTables() 3672 FullPath.clear(); in computeFullPathsForVFTables()
|
/freebsd/sys/contrib/dev/acpica/include/ |
H A D | acnamesp.h | 486 char *FullPath,
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFVerifier.cpp | 1011 std::string FullPath; in verifyDebugLineRows() local 1014 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, FullPath); in verifyDebugLineRows() 1017 auto It = FullPathMap.find(FullPath); in verifyDebugLineRows() 1019 FullPathMap[FullPath] = FileIndex; in verifyDebugLineRows()
|
/freebsd/contrib/llvm-project/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);
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | Darwin.cpp | 1318 SmallString<128> FullPath(getDriver().ResourceDir); in getCompilerRT() local 1319 llvm::sys::path::append(FullPath, "lib", "darwin", "macho_embedded", in getCompilerRT() 1321 return std::string(FullPath); in getCompilerRT() 1338 SmallString<128> FullPath(getDriver().ResourceDir); in getCompilerRT() local 1339 llvm::sys::path::append(FullPath, "lib", "darwin", DarwinLibName); in getCompilerRT() 1340 return std::string(FullPath); in getCompilerRT()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | CodeViewDebug.cpp | 201 StringRef FullPath = getFullFilepath(F); in maybeRecordFile() 203 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile() 226 bool Success = OS.emitCVFileDirective(NextId, FullPath, ChecksumAsBytes, in maybeRecordFile() 200 StringRef FullPath = getFullFilepath(F); maybeRecordFile() local
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 7161 SmallString<1024> FullPath(DSYMFile); in getMachODSymObject() local 7162 sys::path::append(FullPath, "Contents", "Resources", "DWARF", ShortName); in getMachODSymObject() 7163 DSYMPath = FullPath.str(); in getMachODSymObject()
|