Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/APINotes/
H A DTypes.h686 std::optional<std::string> SwiftReleaseOp; variable
720 if (!SwiftReleaseOp)
721 SwiftReleaseOp = RHS.SwiftReleaseOp;
744 LHS.SwiftReleaseOp == RHS.SwiftReleaseOp &&
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesYAMLCompiler.cpp418 std::optional<std::string> SwiftReleaseOp; member
452 IO.mapOptional("SwiftReleaseOp", T.SwiftReleaseOp); in mapping()
898 if ((T.SwiftRetainOp || T.SwiftReleaseOp) && !T.SwiftImportAs) { in convertTagContext()
904 if (T.SwiftReleaseOp.has_value() != T.SwiftRetainOp.has_value()) { in convertTagContext()
915 if (T.SwiftReleaseOp) in convertTagContext()
916 TI.SwiftReleaseOp = T.SwiftReleaseOp; in convertTagContext()
H A DAPINotesWriter.cpp1191 2 + (TI.SwiftReleaseOp ? TI.SwiftReleaseOp->size() : 0) + in getUnversionedInfoSize()
1227 if (auto ReleaseOp = TI.SwiftReleaseOp) { in emitUnversionedInfo()
H A DAPINotesReader.cpp571 Info.SwiftReleaseOp = std::string(reinterpret_cast<const char *>(Data), in readUnversioned()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAPINotes.cpp604 if (auto ReleaseOp = Info.SwiftReleaseOp) in ProcessAPINotes()