Home
last modified time | relevance | path

Searched refs:SwiftReturnOwnership (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesTypes.cpp80 if (!SwiftReturnOwnership.empty()) in dump()
81 OS << "SwiftReturnOwnership: " << SwiftReturnOwnership << ' '; in dump()
H A DAPINotesYAMLCompiler.cpp165 StringRef SwiftReturnOwnership; member
200 IO.mapOptional("SwiftReturnOwnership", M.SwiftReturnOwnership, in mapping()
297 StringRef SwiftReturnOwnership; member
320 IO.mapOptional("SwiftReturnOwnership", F.SwiftReturnOwnership, in mapping()
836 MI.SwiftReturnOwnership = std::string(M.SwiftReturnOwnership); in convertMethod()
962 FI.SwiftReturnOwnership = std::string(Function.SwiftReturnOwnership); in convertFunction()
H A DAPINotesWriter.cpp1096 size += sizeof(uint16_t) + FI.SwiftReturnOwnership.size(); in getFunctionInfoSize()
1122 writer.write<uint16_t>(FI.SwiftReturnOwnership.size()); in emitFunctionInfo()
1123 writer.write(ArrayRef<char>{FI.SwiftReturnOwnership}); in emitFunctionInfo()
H A DAPINotesReader.cpp377 Info.SwiftReturnOwnership = std::string(reinterpret_cast<const char *>(Data), in ReadFunctionInfo()
/freebsd/contrib/llvm-project/clang/include/clang/APINotes/
H A DTypes.h546 std::string SwiftReturnOwnership; variable
629 LHS.SwiftReturnOwnership == RHS.SwiftReturnOwnership;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAPINotes.cpp566 if (!Info.SwiftReturnOwnership.empty()) in ProcessAPINotes()
568 "returns_" + Info.SwiftReturnOwnership)); in ProcessAPINotes()