Searched refs:typesAreCompatible (Results 1 – 11 of 11) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CheckObjCInstMethSignature.cpp | 36 return C.typesAreCompatible(Derived, Ancestor); in AreTypesCompatible()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaInit.cpp | 41 if (Context.typesAreCompatible(Context.getWideCharType(), T)) in IsWideCharCompatible() 44 return Context.typesAreCompatible(Context.Char16Ty, T) || in IsWideCharCompatible() 45 Context.typesAreCompatible(Context.Char32Ty, T); in IsWideCharCompatible() 109 if (Context.typesAreCompatible(Context.Char16Ty, ElemTy)) in IsStringInit() 117 if (Context.typesAreCompatible(Context.Char32Ty, ElemTy)) in IsStringInit() 125 if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy)) in IsStringInit()
|
| H A D | SemaExpr.cpp | 1674 Context.typesAreCompatible(Types[i]->getType(), in CreateGenericSelectionExpr() 1705 else if (Context.typesAreCompatible(ControllingExpr->getType(), in CreateGenericSelectionExpr() 8974 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { in checkPointerTypesForAssignment() 9121 if (S.Context.typesAreCompatible(LHSType, RHSType)) in checkObjCPointerTypesForAssignment() 9473 if (Context.typesAreCompatible(LHSType, RHSType)) { in CheckAssignmentConstraints() 10869 if (!Context.typesAreCompatible( in CheckSubtractionOperands() 11928 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), in CheckCompareOperands() 12046 !Context.typesAreCompatible(lpointee, rpointee)) { in CheckCompareOperands() 12088 !Context.typesAreCompatible(LHSType, RHSType)) { in CheckCompareOperands() 15863 if (Context.typesAreCompatible(PromoteType, UnderlyingType, in BuildVAArgExpr() [all …]
|
| H A D | SemaExprCXX.cpp | 3970 return Context.typesAreCompatible(Context.getWideCharType(), in IsStringLiteralToNonConstPointerConversion() 5437 return Self.Context.typesAreCompatible(Lhs, Rhs); in EvaluateBinaryTypeTrait()
|
| H A D | SemaDecl.cpp | 3753 Context.typesAreCompatible(OldQType, NewQType)) { in MergeFunctionDecl() 3822 if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl() 3825 } else if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl() 14884 !Context.typesAreCompatible( in ImplicitlyDefineFunction()
|
| H A D | SemaOverload.cpp | 1923 S.Context.typesAreCompatible(ToType, FromType)) { in IsStandardConversion() 2446 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion() 2729 if (Context.typesAreCompatible(FromPointee, ToPointee)) in isObjCWritebackConversion()
|
| H A D | SemaDeclObjC.cpp | 4506 if (!Context.typesAreCompatible(T1, T2)) { in CheckObjCMethodOverrides()
|
| H A D | SemaChecking.cpp | 6275 Context.typesAreCompatible(ED->getPromotionType(), Type)); in SemaBuiltinVAStart() 7156 if (!Context.typesAreCompatible( in SemaBuiltinARMMemoryTaggingCall() 10441 Context.typesAreCompatible(SizeOfArgTy, DestTy)) { in CheckMemaccessArguments()
|
| H A D | SemaOpenMP.cpp | 4420 Context.typesAreCompatible(ThisTy, ThisCapture->getType())) in tryCaptureOpenMPLambdas() 18127 !Context.typesAreCompatible(DSAStack->getOMPDependT(), Depobj->getType(), in ActOnOpenMPDepobjClause() 21134 Context.typesAreCompatible(AllocatorExpr->getType(), in ActOnOpenMPUsesAllocatorClause() 21193 Context.typesAreCompatible(TraitTy, DSAStack->getOMPAlloctraitT(), in ActOnOpenMPUsesAllocatorClause()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 2712 bool typesAreCompatible(QualType T1, QualType T2,
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 9393 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS, in typesAreCompatible() function in ASTContext 9402 return typesAreCompatible(LHS, RHS); in propertyTypesAreCompatible()
|