Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/APINotes/
H A DTypes.h434 unsigned Lifetimebound : 1;
444 LifetimeboundSpecified(false), Lifetimebound(false), in ParamInfo()
456 return LifetimeboundSpecified ? std::optional<bool>(Lifetimebound) in isLifetimebound()
461 Lifetimebound = Value.value_or(false); in setLifetimebound()
485 Lifetimebound = RHS.Lifetimebound;
504 LHS.Lifetimebound == RHS.Lifetimebound &&
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesTypes.cpp69 OS << (Lifetimebound ? "[Lifetimebound] " : ""); in dump()
H A DAPINotesYAMLCompiler.cpp74 std::optional<bool> Lifetimebound = false; member
126 IO.mapOptional("Lifetimebound", P.Lifetimebound); in mapping()
751 PI.setLifetimebound(P.Lifetimebound); in convertParams()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAPINotes.cpp472 if (auto Lifetimebound = Info.isLifetimebound()) in ProcessAPINotes() local
474 S, D, *Lifetimebound, Metadata, [&] { in ProcessAPINotes()