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.h468 using ConversionSet = member
473 char Buffer[sizeof(ConversionSet)];
486 ConversionSet &conversions() { in conversions()
487 return *reinterpret_cast<ConversionSet*>(Buffer); in conversions()
490 const ConversionSet &conversions() const { in conversions()
491 return *reinterpret_cast<const ConversionSet*>(Buffer); in conversions()
498 using iterator = ConversionSet::iterator;
503 using const_iterator = ConversionSet::const_iterator;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp665 new (&conversions()) ConversionSet(); in construct()
669 conversions().~ConversionSet(); in destruct()
676 new (&conversions()) ConversionSet(O.conversions()); in copyFrom()