Searched refs:typesAreCompatible (Results 1 – 11 of 11) sorted by relevance
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CheckObjCInstMethSignature.cpp | 36 return C.typesAreCompatible(Derived, Ancestor); in AreTypesCompatible()
|
| /llvm-project-15.0.7/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 | 1728 Context.typesAreCompatible(Types[i]->getType(), in CreateGenericSelectionExpr() 1762 else if (Context.typesAreCompatible( in CreateGenericSelectionExpr() 9311 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { in checkPointerTypesForAssignment() 9458 if (S.Context.typesAreCompatible(LHSType, RHSType)) in checkObjCPointerTypesForAssignment() 9829 if (Context.typesAreCompatible(LHSType, RHSType)) { in CheckAssignmentConstraints() 11359 if (!Context.typesAreCompatible( in CheckSubtractionOperands() 12531 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), in CheckCompareOperands() 12649 !Context.typesAreCompatible(lpointee, rpointee)) { in CheckCompareOperands() 12691 !Context.typesAreCompatible(LHSType, RHSType)) { in CheckCompareOperands() 16631 if (Context.typesAreCompatible(PromoteType, UnderlyingType, in BuildVAArgExpr() [all …]
|
| H A D | SemaExprCXX.cpp | 4016 return Context.typesAreCompatible(Context.getWideCharType(), in IsStringLiteralToNonConstPointerConversion() 5540 return Self.Context.typesAreCompatible(Lhs, Rhs); in EvaluateBinaryTypeTrait()
|
| H A D | SemaDecl.cpp | 4094 if (Context.typesAreCompatible(OldQType, NewQType)) { in MergeFunctionDecl() 4163 if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl() 4166 } else if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl() 15458 !Context.typesAreCompatible( in ImplicitlyDefineFunction()
|
| H A D | SemaOverload.cpp | 1924 S.Context.typesAreCompatible(ToType, FromType)) { in IsStandardConversion() 2447 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion() 2730 if (Context.typesAreCompatible(FromPointee, ToPointee)) in isObjCWritebackConversion()
|
| H A D | SemaDeclObjC.cpp | 4514 if (!Context.typesAreCompatible(T1, T2)) { in CheckObjCMethodOverrides()
|
| H A D | SemaChecking.cpp | 7172 Context.typesAreCompatible(ED->getPromotionType(), Type)); in SemaBuiltinVAStart() 8067 if (!Context.typesAreCompatible( in SemaBuiltinARMMemoryTaggingCall() 11449 Context.typesAreCompatible(SizeOfArgTy, DestTy)) { in CheckMemaccessArguments()
|
| H A D | SemaOpenMP.cpp | 4693 Context.typesAreCompatible(ThisTy, ThisCapture->getType())) in tryCaptureOpenMPLambdas() 20193 !Context.typesAreCompatible(DSAStack->getOMPDependT(), Depobj->getType(), in ActOnOpenMPDepobjClause() 23347 Context.typesAreCompatible(AllocatorExpr->getType(), in ActOnOpenMPUsesAllocatorClause() 23406 Context.typesAreCompatible(TraitTy, DSAStack->getOMPAlloctraitT(), in ActOnOpenMPUsesAllocatorClause()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | ASTContext.h | 2816 bool typesAreCompatible(QualType T1, QualType T2,
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ASTContext.cpp | 10020 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS, in typesAreCompatible() function in ASTContext 10029 return typesAreCompatible(LHS, RHS); in propertyTypesAreCompatible()
|