Home
last modified time | relevance | path

Searched refs:SwiftConformance (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/APINotes/
H A DTypes.h743 std::optional<std::string> SwiftConformance; variable
793 if (!SwiftConformance)
794 SwiftConformance = RHS.SwiftConformance;
822 LHS.SwiftConformance == RHS.SwiftConformance &&
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp464 std::optional<std::string> SwiftConformance; member
505 IO.mapOptional("SwiftConformsTo", T.SwiftConformance); in mapping()
993 if (T.SwiftConformance) in convertTagContext()
994 TI.SwiftConformance = T.SwiftConformance; in convertTagContext()
H A DAPINotesWriter.cpp1277 2 + (TI.SwiftConformance ? TI.SwiftConformance->size() : 0) + in getUnversionedInfoSize()
1331 if (auto Conformance = TI.SwiftConformance) { in emitUnversionedInfo()
H A DAPINotesReader.cpp634 Info.SwiftConformance = std::string(reinterpret_cast<const char *>(Data), in readUnversioned()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAPINotes.cpp701 if (auto ConformsTo = Info.SwiftConformance) in ProcessAPINotes()