Lines Matching refs:Conv
394 // [conv.bool], and those aren't considered narrowing conversions.
1394 /// conversion sequence (C++ [conv], C++ [over.ics.scs]) from the
1408 // Standard conversions (C++ [conv])
1734 // C++11 [conv.prom]p3:
1746 // C++11 [conv.prom]p4:
1773 // C++0x [conv.prom]p2:
2083 // C++ [conv.ptr]p3:
2979 /// functions (C++0x [class.conv.fct]p2).
3100 CXXConversionDecl *Conv;
3103 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
3105 Conv = cast<CXXConversionDecl>(D);
3107 if (AllowExplicit || !Conv->isExplicit()) {
3113 S.AddConversionCandidate(Conv, FoundDecl, ActingContext,
4010 CXXConversionDecl *Conv;
4012 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
4014 Conv = cast<CXXConversionDecl>(D);
4018 if (!AllowExplicit && Conv->isExplicit())
4030 = Conv->getConversionType()->getAs<LValueReferenceType>();
4038 Conv->getConversionType().getNonReferenceType()
4050 Conv->getConversionType()->getAs<ReferenceType>();
4061 S.AddConversionCandidate(Conv, I.getPair(), ActingDC, Init,
4808 /// expression From to bool (C++0x [conv]p3).
4822 /// of the expression From to bool (C++0x [conv]p3).
5085 CXXConversionDecl *Conv =
5087 QualType ConvTy = Conv->getConversionType().getNonReferenceType();
5088 Converter.noteAmbiguous(SemaRef, Conv, ConvTy);
5183 CXXConversionDecl *Conv;
5186 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
5188 Conv = cast<CXXConversionDecl>(D);
5194 SemaRef.AddConversionCandidate(Conv, FoundDecl, ActingContext, From,
5319 // C++1y [conv]p6:
5806 /// candidate in the candidate set (C++ [over.match.conv],
5959 /// [temp.deduct.conv]).
6498 CXXConversionDecl *Conv = cast<CXXConversionDecl>(D);
6499 if (AllowExplicitConversions || !Conv->isExplicit()) {
6500 AddTypesConvertedFrom(Conv->getConversionType(), Loc, false, false,
6562 if (CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(D)) {
6563 QualType CanTy = Context.getCanonicalType(Conv->getConversionType());
8197 const ImplicitConversionSequence &Conv = Cand->Conversions[I];
8198 assert(Conv.isBad());
8216 Expr *FromExpr = Conv.Bad.FromExpr;
8217 QualType FromTy = Conv.Bad.getFromType();
8218 QualType ToTy = Conv.Bad.getToType();
11261 CXXConversionDecl *Conv = cast<CXXConversionDecl>(D);
11262 if (!Conv->isExplicit()) {
11265 QualType ConvType = Conv->getConversionType().getNonReferenceType();
11271 AddSurrogateCandidate(Conv, I.getPair(), ActingContext, Proto,
11326 CXXConversionDecl *Conv
11333 assert(Conv == Best->FoundDecl.getDecl() &&
11342 Conv, HadMultipleCandidates);