Searched defs:LHSExp (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Analysis/
H A DThreadSafety.cpp1158 Expr *LHSExp = BO->getLHS()->IgnoreParenCasts();
1161 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(LHSExp)) {
2000 Expr *LHSExp = BO->getLHS()->IgnoreParenCasts(); local
2001 checkAccess(LHSExp, AK_Written);
2002 checkDereference(LHSExp, AK_Written);
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp3838 Expr *LHSExp = CEXPR->getLHS(); local
3839 Stmt *LHSStmt = SynthesizeBlockCall(Exp, LHSExp);
H A DRewriteModernObjC.cpp4504 Expr *LHSExp = CEXPR->getLHS(); local
4505 Stmt *LHSStmt = SynthesizeBlockCall(Exp, LHSExp);
/external/clang/lib/Sema/
H A DSemaExpr.cpp3239 Expr *LHSExp = Base, *RHSExp = Idx; local
3242 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
3243 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
3250 (LHSExp->getType()->isRecordType() ||
3251 LHSExp->getType()->isEnumeralType() ||
3254 !LHSExp->getType()->isObjCObjectPointerType()) {
3264 Expr *LHSExp = Base; local
3268 if (!LHSExp->getType()->getAs<VectorType>()) {
3269 ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp);
3272 LHSExp
[all...]

Completed in 92 milliseconds