Home
last modified time | relevance | path

Searched refs:ConversionSet (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DOverload.h421 using ConversionSet = member
426 char Buffer[sizeof(ConversionSet)];
439 ConversionSet &conversions() { in conversions()
440 return *reinterpret_cast<ConversionSet*>(Buffer); in conversions()
443 const ConversionSet &conversions() const { in conversions()
444 return *reinterpret_cast<const ConversionSet*>(Buffer); in conversions()
451 using iterator = ConversionSet::iterator;
456 using const_iterator = ConversionSet::const_iterator;
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp587 new (&conversions()) ConversionSet(); in construct()
591 conversions().~ConversionSet(); in destruct()
598 new (&conversions()) ConversionSet(O.conversions()); in copyFrom()