Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DOverload.h516 using ConversionSet = member
521 char Buffer[sizeof(ConversionSet)];
534 ConversionSet &conversions() { in conversions()
535 return *reinterpret_cast<ConversionSet*>(Buffer); in conversions()
538 const ConversionSet &conversions() const { in conversions()
539 return *reinterpret_cast<const ConversionSet*>(Buffer); in conversions()
546 using iterator = ConversionSet::iterator;
551 using const_iterator = ConversionSet::const_iterator;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp694 new (&conversions()) ConversionSet(); in construct()
698 conversions().~ConversionSet(); in destruct()
705 new (&conversions()) ConversionSet(O.conversions()); in copyFrom()