Searched refs:typesAreCompatible (Results 1 – 10 of 10) sorted by relevance
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CheckObjCInstMethSignature.cpp | 37 return C.typesAreCompatible(Derived, Ancestor); in AreTypesCompatible()
|
/external/clang/lib/Sema/ |
D | SemaInit.cpp | 39 if (Context.typesAreCompatible(Context.getWideCharType(), T)) in IsWideCharCompatible() 42 return Context.typesAreCompatible(Context.Char16Ty, T) || in IsWideCharCompatible() 43 Context.typesAreCompatible(Context.Char32Ty, T); in IsWideCharCompatible() 96 if (Context.typesAreCompatible(Context.Char16Ty, ElemTy)) in IsStringInit() 104 if (Context.typesAreCompatible(Context.Char32Ty, ElemTy)) in IsStringInit() 112 if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy)) in IsStringInit()
|
D | SemaExpr.cpp | 1479 Context.typesAreCompatible(Types[i]->getType(), in CreateGenericSelectionExpr() 1510 else if (Context.typesAreCompatible(ControllingExpr->getType(), in CreateGenericSelectionExpr() 7174 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { in checkPointerTypesForAssignment() 7282 if (S.Context.typesAreCompatible(LHSType, RHSType)) in checkObjCPointerTypesForAssignment() 7358 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) { in CheckAssignmentConstraints() 7595 if (Context.typesAreCompatible(LHSType, RHSType)) { in CheckAssignmentConstraints() 8489 if (!Context.typesAreCompatible( in CheckSubtractionOperands() 9214 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), in CheckCompareOperands() 9308 !Context.typesAreCompatible(lpointee, rpointee)) { in CheckCompareOperands() 9350 !Context.typesAreCompatible(LHSType, RHSType)) { in CheckCompareOperands() [all …]
|
D | SemaExprCXX.cpp | 3166 return Context.typesAreCompatible(Context.getWideCharType(), in IsStringLiteralToNonConstPointerConversion() 4518 return Self.Context.typesAreCompatible(LhsT.getUnqualifiedType(), in EvaluateBinaryTypeTrait()
|
D | SemaOverload.cpp | 1719 S.Context.typesAreCompatible(ToType, FromType)) { in IsStandardConversion() 2199 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion() 2482 if (Context.typesAreCompatible(FromPointee, ToPointee)) in isObjCWritebackConversion()
|
D | SemaDeclObjC.cpp | 4182 if (!Context.typesAreCompatible(T1, T2)) { in CheckObjCMethodOverrides()
|
D | SemaDecl.cpp | 3120 Context.typesAreCompatible(OldQType, NewQType)) { in MergeFunctionDecl() 3184 if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl() 3187 } else if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl()
|
D | SemaChecking.cpp | 6225 Context.typesAreCompatible(SizeOfArgTy, DestTy)) { in CheckMemaccessArguments()
|
/external/clang/include/clang/AST/ |
D | ASTContext.h | 2232 bool typesAreCompatible(QualType T1, QualType T2,
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 7387 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS, in typesAreCompatible() function in ASTContext 7396 return typesAreCompatible(LHS, RHS); in propertyTypesAreCompatible()
|