Home
last modified time | relevance | path

Searched refs:lhsType (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/Sema/
DSemaObjCProperty.cpp1198 QualType lhsType =Context.getCanonicalType(PropertyIvarType).getUnqualifiedType(); in ActOnPropertyImplDecl() local
1200 if (lhsType != rhsType && in ActOnPropertyImplDecl()
1201 lhsType->isArithmeticType()) { in ActOnPropertyImplDecl()
1515 QualType lhsType = Context.getCanonicalType(PropertyRValueType); in DiagnosePropertyAccessorMismatch() local
1517 if (lhsType != rhsType && lhsType->isArithmeticType()) in DiagnosePropertyAccessorMismatch()
DSemaChecking.cpp6504 CheckReturnStackAddr(Sema &S, Expr *RetValExp, QualType lhsType, in CheckReturnStackAddr() argument
6512 if (lhsType->isPointerType() || in CheckReturnStackAddr()
6513 (!S.getLangOpts().ObjCAutoRefCount && lhsType->isBlockPointerType())) { in CheckReturnStackAddr()
6515 } else if (lhsType->isReferenceType()) { in CheckReturnStackAddr()
6538 S.Diag(diagLoc, diag::warn_ret_stack_addr_ref) << lhsType->isReferenceType() in CheckReturnStackAddr()
6546 << lhsType->isReferenceType() << diagRange; in CheckReturnStackAddr()
6888 Sema::CheckReturnValExpr(Expr *RetValExp, QualType lhsType, in CheckReturnValExpr() argument
6893 CheckReturnStackAddr(*this, RetValExp, lhsType, ReturnLoc); in CheckReturnValExpr()
6897 (!isObjCMethod && isNonNullType(Context, lhsType))) && in CheckReturnValExpr()
/external/clang/include/clang/Sema/
DSema.h9454 void CheckReturnValExpr(Expr *RetValExp, QualType lhsType,