Searched refs:typesAreCompatible (Results 1 – 11 of 11) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CheckObjCInstMethSignature.cpp | 36 return C.typesAreCompatible(Derived, Ancestor); in AreTypesCompatible()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaInit.cpp | 49 if (Context.typesAreCompatible(Context.getWideCharType(), T)) in IsWideCharCompatible() 52 return Context.typesAreCompatible(Context.Char16Ty, T) || in IsWideCharCompatible() 53 Context.typesAreCompatible(Context.Char32Ty, T); in IsWideCharCompatible() 127 if (Context.typesAreCompatible(Context.Char16Ty, ElemTy)) in IsStringInit() 135 if (Context.typesAreCompatible(Context.Char32Ty, ElemTy)) in IsStringInit() 143 if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy)) in IsStringInit()
|
| H A D | SemaExpr.cpp | 1785 Context.typesAreCompatible(Types[i]->getType(), in CreateGenericSelectionExpr() 1825 Context.typesAreCompatible( in CreateGenericSelectionExpr() 1830 Context.typesAreCompatible( in CreateGenericSelectionExpr() 9920 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { in checkPointerTypesForAssignment() 10069 if (S.Context.typesAreCompatible(LHSType, RHSType)) in checkObjCPointerTypesForAssignment() 10464 if (Context.typesAreCompatible(LHSType, RHSType)) { in CheckAssignmentConstraints() 12054 if (!Context.typesAreCompatible( in CheckSubtractionOperands() 13375 !Context.typesAreCompatible(lpointee, rpointee)) { in CheckCompareOperands() 13417 !Context.typesAreCompatible(LHSType, RHSType)) { in CheckCompareOperands() 17418 if (Context.typesAreCompatible(PromoteType, UnderlyingType, in BuildVAArgExpr() [all …]
|
| H A D | SemaExprCXX.cpp | 4129 return Context.typesAreCompatible(Context.getWideCharType(), in IsStringLiteralToNonConstPointerConversion() 5779 return Self.Context.typesAreCompatible(Lhs, Rhs); in EvaluateBinaryTypeTrait()
|
| H A D | SemaDecl.cpp | 4252 if (Context.typesAreCompatible(OldQType, NewQType)) { in MergeFunctionDecl() 4320 if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl() 4323 } else if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl() 16489 !Context.typesAreCompatible( in ImplicitlyDefineFunction()
|
| H A D | SemaOverload.cpp | 2152 S.Context.typesAreCompatible(ToType, FromType)) { in IsStandardConversion() 2678 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion() 2961 if (Context.typesAreCompatible(FromPointee, ToPointee)) in isObjCWritebackConversion()
|
| H A D | SemaDeclObjC.cpp | 4525 if (!Context.typesAreCompatible(T1, T2)) { in CheckObjCMethodOverrides()
|
| H A D | SemaChecking.cpp | 9079 Context.typesAreCompatible(ED->getPromotionType(), Type)); in SemaBuiltinVAStart() 10029 if (!Context.typesAreCompatible( in SemaBuiltinARMMemoryTaggingCall() 13509 Context.typesAreCompatible(SizeOfArgTy, DestTy)) { in CheckMemaccessArguments()
|
| H A D | SemaOpenMP.cpp | 4764 Context.typesAreCompatible(ThisTy, ThisCapture->getType())) in tryCaptureOpenMPLambdas() 20841 !Context.typesAreCompatible(DSAStack->getOMPDependT(), Depobj->getType(), in ActOnOpenMPDepobjClause() 24176 Context.typesAreCompatible(AllocatorExprType, OMPAllocatorHandleT); in ActOnOpenMPUsesAllocatorClause() 24234 Context.typesAreCompatible(TraitTy, DSAStack->getOMPAlloctraitT(), in ActOnOpenMPUsesAllocatorClause()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 2854 bool typesAreCompatible(QualType T1, QualType T2,
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 10242 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS, in typesAreCompatible() function in ASTContext 10251 return typesAreCompatible(LHS, RHS); in propertyTypesAreCompatible()
|