Searched refs:typesAreCompatible (Results 1 – 13 of 13) sorted by relevance
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CheckObjCInstMethSignature.cpp | 36 return C.typesAreCompatible(Derived, Ancestor); in AreTypesCompatible()
|
| /src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaInit.cpp | 52 if (Context.typesAreCompatible(Context.getWideCharType(), T)) in IsWideCharCompatible() 55 return Context.typesAreCompatible(Context.Char16Ty, T) || in IsWideCharCompatible() 56 Context.typesAreCompatible(Context.Char32Ty, T); in IsWideCharCompatible() 130 if (Context.typesAreCompatible(Context.Char16Ty, ElemTy)) in IsStringInit() 138 if (Context.typesAreCompatible(Context.Char32Ty, ElemTy)) in IsStringInit() 146 if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy)) in IsStringInit() 2021 Context.typesAreCompatible(InitElementTy, EmbedExprElementTy) || in canInitializeArrayWithEmbedDataString()
|
| H A D | SemaARM.cpp | 153 if (!Context.typesAreCompatible( in BuiltinARMMemoryTaggingCall()
|
| H A D | SemaExpr.cpp | 1770 Context.typesAreCompatible(Types[i]->getType(), in CreateGenericSelectionExpr() 1810 Context.typesAreCompatible( in CreateGenericSelectionExpr() 1815 Context.typesAreCompatible( in CreateGenericSelectionExpr() 8924 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { in checkPointerTypesForAssignment() 9073 if (S.Context.typesAreCompatible(LHSType, RHSType)) in checkObjCPointerTypesForAssignment() 9166 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) { in CheckAssignmentConstraints() 9468 if (Context.typesAreCompatible(LHSType, RHSType)) { in CheckAssignmentConstraints() 11073 if (!Context.typesAreCompatible( in CheckSubtractionOperands() 12216 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), in CheckCompareOperands() 12355 !Context.typesAreCompatible(lpointee, rpointee)) { in CheckCompareOperands() [all …]
|
| H A D | SemaObjC.cpp | 1363 if (Context.typesAreCompatible(FromPointee, ToPointee)) in isObjCWritebackConversion()
|
| H A D | SemaExprCXX.cpp | 4124 return Context.typesAreCompatible(Context.getWideCharType(), in IsStringLiteralToNonConstPointerConversion() 6038 return Self.Context.typesAreCompatible(Lhs, Rhs); in EvaluateBinaryTypeTrait()
|
| H A D | SemaDecl.cpp | 4142 if (Context.typesAreCompatible(OldQType, NewQType)) { in MergeFunctionDecl() 4210 if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl() 4213 } else if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl() 16283 !Context.typesAreCompatible( in ImplicitlyDefineFunction()
|
| H A D | SemaDeclObjC.cpp | 4533 if (!Context.typesAreCompatible(T1, T2)) { in CheckObjCMethodOverrides()
|
| H A D | SemaOpenMP.cpp | 4554 if (!ThisTy.isNull() && getASTContext().typesAreCompatible( in tryCaptureOpenMPLambdas() 19654 (OMPDependTFound && !getASTContext().typesAreCompatible( in ActOnOpenMPDepobjClause() 23030 Context.typesAreCompatible(AllocatorExprType, OMPAllocatorHandleT); in ActOnOpenMPUsesAllocatorClause() 23088 Context.typesAreCompatible(TraitTy, DSAStack->getOMPAlloctraitT(), in ActOnOpenMPUsesAllocatorClause()
|
| H A D | SemaChecking.cpp | 4723 Context.typesAreCompatible(ED->getPromotionType(), Type)); in BuiltinVAStart() 8744 Context.typesAreCompatible(SizeOfArgTy, DestTy)) { in CheckMemaccessArguments()
|
| H A D | SemaOverload.cpp | 2303 S.Context.typesAreCompatible(ToType, FromType)) { in IsStandardConversion() 2816 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
|
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ASTContext.h | 2943 bool typesAreCompatible(QualType T1, QualType T2,
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 10692 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS, in typesAreCompatible() function in ASTContext 10701 return typesAreCompatible(LHS, RHS); in propertyTypesAreCompatible()
|