HomeSort by: relevance | last modified time | path
    Searched refs:typesAreCompatible (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckObjCInstMethSignature.cpp 36 return C.typesAreCompatible(Derived, Ancestor);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp 41 if (Context.typesAreCompatible(Context.getWideCharType(), T))
44 return Context.typesAreCompatible(Context.Char16Ty, T) ||
45 Context.typesAreCompatible(Context.Char32Ty, T);
109 if (Context.typesAreCompatible(Context.Char16Ty, ElemTy))
117 if (Context.typesAreCompatible(Context.Char32Ty, ElemTy))
125 if (Context.typesAreCompatible(Context.getWideCharType(), ElemTy))
SemaExpr.cpp 1664 Context.typesAreCompatible(Types[i]->getType(),
1695 else if (Context.typesAreCompatible(ControllingExpr->getType(),
8910 if (!S.Context.typesAreCompatible(ltrans, rtrans)) {
9057 if (S.Context.typesAreCompatible(LHSType, RHSType))
9141 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) {
9409 if (Context.typesAreCompatible(LHSType, RHSType)) {
10789 if (!Context.typesAreCompatible(
11824 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
11948 !Context.typesAreCompatible(lpointee, rpointee)) {
11990 !Context.typesAreCompatible(LHSType, RHSType))
    [all...]
SemaChecking.cpp 6026 Context.typesAreCompatible(ED->getPromotionType(), Type));
6884 if (!Context.typesAreCompatible(
10169 Context.typesAreCompatible(SizeOfArgTy, DestTy)) {
SemaExprCXX.cpp 3943 return Context.typesAreCompatible(Context.getWideCharType(),
5389 return Self.Context.typesAreCompatible(Lhs, Rhs);
SemaDecl.cpp 3690 Context.typesAreCompatible(OldQType, NewQType)) {
3759 if (Context.typesAreCompatible(OldParm->getType(),
3762 } else if (Context.typesAreCompatible(OldParm->getType(),
14828 !Context.typesAreCompatible(
SemaDeclObjC.cpp 4506 if (!Context.typesAreCompatible(T1, T2)) {
SemaOpenMP.cpp 4414 Context.typesAreCompatible(ThisTy, ThisCapture->getType()))
17744 !Context.typesAreCompatible(DSAStack->getOMPDependT(), Depobj->getType(),
20746 Context.typesAreCompatible(AllocatorExpr->getType(),
20805 Context.typesAreCompatible(TraitTy, DSAStack->getOMPAlloctraitT(),
SemaOverload.cpp 1923 S.Context.typesAreCompatible(ToType, FromType)) {
2446 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) {
2729 if (Context.typesAreCompatible(FromPointee, ToPointee))
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 2661 bool typesAreCompatible(QualType T1, QualType T2,
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 9355 /// typesAreCompatible - C99 6.7.3p9: For two qualified types to be compatible,
9359 bool ASTContext::typesAreCompatible(QualType LHS, QualType RHS,
9368 return typesAreCompatible(LHS, RHS);

Completed in 152 milliseconds