Home
last modified time | relevance | path

Searched refs:typesAreCompatible (Results 1 – 10 of 10) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DCheckObjCInstMethSignature.cpp37 return C.typesAreCompatible(Derived, Ancestor); in AreTypesCompatible()
/external/clang/lib/Sema/
DSemaInit.cpp39 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()
DSemaExpr.cpp1479 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 …]
DSemaExprCXX.cpp3166 return Context.typesAreCompatible(Context.getWideCharType(), in IsStringLiteralToNonConstPointerConversion()
4518 return Self.Context.typesAreCompatible(LhsT.getUnqualifiedType(), in EvaluateBinaryTypeTrait()
DSemaOverload.cpp1719 S.Context.typesAreCompatible(ToType, FromType)) { in IsStandardConversion()
2199 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion()
2482 if (Context.typesAreCompatible(FromPointee, ToPointee)) in isObjCWritebackConversion()
DSemaDeclObjC.cpp4182 if (!Context.typesAreCompatible(T1, T2)) { in CheckObjCMethodOverrides()
DSemaDecl.cpp3120 Context.typesAreCompatible(OldQType, NewQType)) { in MergeFunctionDecl()
3184 if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl()
3187 } else if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl()
DSemaChecking.cpp6225 Context.typesAreCompatible(SizeOfArgTy, DestTy)) { in CheckMemaccessArguments()
/external/clang/include/clang/AST/
DASTContext.h2232 bool typesAreCompatible(QualType T1, QualType T2,
/external/clang/lib/AST/
DASTContext.cpp7387 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS, in typesAreCompatible() function in ASTContext
7396 return typesAreCompatible(LHS, RHS); in propertyTypesAreCompatible()