Home
last modified time | relevance | path

Searched refs:SwiftNewTypeKind (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp472 std::optional<SwiftNewTypeKind> SwiftType;
482 template <> struct ScalarEnumerationTraits<SwiftNewTypeKind> {
483 static void enumeration(IO &IO, SwiftNewTypeKind &SWK) { in enumeration()
484 IO.enumCase(SWK, "none", SwiftNewTypeKind::None); in enumeration()
485 IO.enumCase(SWK, "struct", SwiftNewTypeKind::Struct); in enumeration()
486 IO.enumCase(SWK, "enum", SwiftNewTypeKind::Enum); in enumeration()
H A DAPINotesReader.cpp603 Info.SwiftWrapper = static_cast<SwiftNewTypeKind>((Payload & 0x3) - 1); in readUnversioned()
/freebsd/contrib/llvm-project/clang/include/clang/APINotes/
H A DTypes.h43 enum class SwiftNewTypeKind { enum
757 std::optional<SwiftNewTypeKind> SwiftWrapper;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAPINotes.cpp650 using SwiftWrapperKind = api_notes::SwiftNewTypeKind; in ProcessAPINotes()