Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaObjCProperty.cpp975 QualType lhsType =Context.getCanonicalType(PropertyIvarType).getUnqualifiedType(); in ActOnPropertyImplDecl() local
977 if (lhsType != rhsType && in ActOnPropertyImplDecl()
978 lhsType->isArithmeticType()) { in ActOnPropertyImplDecl()
1247 QualType lhsType =Context.getCanonicalType(PropertyIvarType).getUnqualifiedType(); in DiagnosePropertyAccessorMismatch() local
1249 if (lhsType != rhsType && lhsType->isArithmeticType()) in DiagnosePropertyAccessorMismatch()
DSemaChecking.cpp3436 Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType, in CheckReturnStackAddr() argument
3444 if (lhsType->isPointerType() || in CheckReturnStackAddr()
3445 (!getLangOpts().ObjCAutoRefCount && lhsType->isBlockPointerType())) { in CheckReturnStackAddr()
3447 } else if (lhsType->isReferenceType()) { in CheckReturnStackAddr()
3469 Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_stack_ref in CheckReturnStackAddr()
3477 Diag(diagLoc, lhsType->isReferenceType() ? diag::warn_ret_local_temp_ref in CheckReturnStackAddr()
/external/clang/include/clang/AST/
DExprCXX.h1986 TypeSourceInfo *lhsType, TypeSourceInfo *rhsType, in BinaryTypeTraitExpr() argument
1989 lhsType->getType()->isDependentType() || in BinaryTypeTraitExpr()
1991 (lhsType->getType()->isInstantiationDependentType() || in BinaryTypeTraitExpr()
1993 (lhsType->getType()->containsUnexpandedParameterPack() || in BinaryTypeTraitExpr()
1996 LhsType(lhsType), RhsType(rhsType) { } in BinaryTypeTraitExpr()
/external/clang/include/clang/Sema/
DSema.h7175 void CheckReturnStackAddr(Expr *RetValExp, QualType lhsType,