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 | 38 if (Context.typesAreCompatible(Context.getWideCharType(), T)) in IsWideCharCompatible() 41 return Context.typesAreCompatible(Context.Char16Ty, T) || in IsWideCharCompatible() 42 Context.typesAreCompatible(Context.Char32Ty, T); in IsWideCharCompatible() 95 if (Context.typesAreCompatible(Context.Char16Ty, ElemTy)) in IsStringInit() 103 if (Context.typesAreCompatible(Context.Char32Ty, ElemTy)) in IsStringInit() 111 if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy)) in IsStringInit()
|
D | SemaExpr.cpp | 1417 Context.typesAreCompatible(Types[i]->getType(), in CreateGenericSelectionExpr() 1448 else if (Context.typesAreCompatible(ControllingExpr->getType(), in CreateGenericSelectionExpr() 6771 if (!S.Context.typesAreCompatible(ltrans, rtrans)) { in checkPointerTypesForAssignment() 6879 if (S.Context.typesAreCompatible(LHSType, RHSType)) in checkObjCPointerTypesForAssignment() 6955 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) { in CheckAssignmentConstraints() 7175 if (Context.typesAreCompatible(LHSType, RHSType)) { in CheckAssignmentConstraints() 8053 if (!Context.typesAreCompatible( in CheckSubtractionOperands() 8778 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), in CheckCompareOperands() 8872 !Context.typesAreCompatible(lpointee, rpointee)) { in CheckCompareOperands() 8914 !Context.typesAreCompatible(LHSType, RHSType)) { in CheckCompareOperands() [all …]
|
D | SemaOverload.cpp | 1653 S.Context.typesAreCompatible(ToType, FromType)) { in IsStandardConversion() 2133 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) { in IsPointerConversion() 2416 if (Context.typesAreCompatible(FromPointee, ToPointee)) in isObjCWritebackConversion()
|
D | SemaDeclObjC.cpp | 4033 if (!Context.typesAreCompatible(T1, T2)) { in CheckObjCMethodOverrides()
|
D | SemaDecl.cpp | 3046 Context.typesAreCompatible(OldQType, NewQType)) { in MergeFunctionDecl() 3110 if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl() 3113 } else if (Context.typesAreCompatible(OldParm->getType(), in MergeFunctionDecl()
|
D | SemaExprCXX.cpp | 4258 return Self.Context.typesAreCompatible(LhsT.getUnqualifiedType(), in EvaluateBinaryTypeTrait()
|
D | SemaChecking.cpp | 5337 Context.typesAreCompatible(SizeOfArgTy, DestTy)) { in CheckMemaccessArguments()
|
/external/clang/include/clang/AST/ |
D | ASTContext.h | 2207 bool typesAreCompatible(QualType T1, QualType T2,
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 7280 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS, in typesAreCompatible() function in ASTContext 7289 return typesAreCompatible(LHS, RHS); in propertyTypesAreCompatible()
|