Home
last modified time | relevance | path

Searched refs:ConvType (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclCXX.cpp8454 QualType ConvType = in CheckConversionDeclarator() local
8569 ConvType = Proto->getReturnType(); in CheckConversionDeclarator()
8575 if (ConvType->isArrayType()) { in CheckConversionDeclarator()
8577 ConvType = Context.getPointerType(ConvType); in CheckConversionDeclarator()
8581 ConvType = Context.getPointerType(ConvType); in CheckConversionDeclarator()
8627 else if (ConvType->isRecordType()) { in ActOnConversionDeclarator()
8628 ConvType = Context.getCanonicalType(ConvType).getUnqualifiedType(); in ActOnConversionDeclarator()
8629 if (ConvType == ClassType) in ActOnConversionDeclarator()
8634 << ClassType << ConvType; in ActOnConversionDeclarator()
8635 } else if (ConvType->isVoidType()) { in ActOnConversionDeclarator()
[all …]
H A DSemaOverload.cpp6891 if (S.Context.hasSameUnqualifiedType(ConvType, ToNonRefType)) in isAllowableExplicitConversion()
6908 return S.isObjCPointerConversion(ConvType, ToNonRefType, ConvertedType, in isAllowableExplicitConversion()
6934 if (getLangOpts().CPlusPlus14 && ConvType->isUndeducedType()) { in AddConversionCandidate()
6937 ConvType = Conversion->getConversionType().getNonReferenceType(); in AddConversionCandidate()
6950 !isAllowableExplicitConversion(*this, ConvType, ToType, in AddConversionCandidate()
6965 Candidate.FinalConversion.setFromType(ConvType); in AddConversionCandidate()
10705 QualType ConvType in CompleteNonViableCandidate() local
10707 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>()) in CompleteNonViableCandidate()
10708 ConvType = ConvPtrType->getPointeeType(); in CompleteNonViableCandidate()
10709 ParamTypes = ConvType->getAs<FunctionProtoType>()->getParamTypes(); in CompleteNonViableCandidate()
[all …]
H A DSemaInit.cpp3933 QualType ConvType = CD->getConversionType(); in TryConstructorInitialization() local
3934 assert(S.Context.hasSameUnqualifiedType(ConvType, DestType) && in TryConstructorInitialization()
3936 Sequence.AddUserConversionStep(CD, Best->FoundDecl, ConvType, in TryConstructorInitialization()
3938 if (!S.Context.hasSameType(ConvType, DestType)) in TryConstructorInitialization()
5053 QualType ConvType = Function->getCallResultType(); in TryUserDefinedConversion() local
5054 Sequence.AddUserConversionStep(Function, Best->FoundDecl, ConvType, in TryUserDefinedConversion()
5057 if (ConvType->getAs<RecordType>()) { in TryUserDefinedConversion()
5069 !S.Context.hasSameUnqualifiedType(ConvType, DestType)) in TryUserDefinedConversion()
5071 else if (!S.Context.hasSameType(ConvType, DestType)) in TryUserDefinedConversion()
H A DSemaExprCXX.cpp3252 bool match(QualType ConvType) override { in ActOnCXXDelete() argument
3255 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>()) in ActOnCXXDelete()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclCXX.cpp1469 CanQualType ConvType(GetConversionType(Context, I.getDecl())); in CollectVisibleConversions() local
1470 bool Hidden = ParentHiddenTypes.count(ConvType); in CollectVisibleConversions()
1472 HiddenTypesBuffer.insert(ConvType); in CollectVisibleConversions()
/freebsd-12.1/contrib/libstdc++/
H A DChangeLog-2004150 * testsuite/testsuite_tr1.h: Add ConvType.