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

/external/clang/lib/AST/
H A DExpr.cpp1655 /// isUnusedResultAWarning - Return true if this immediate expression should
1659 bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1, function in class:Expr
1675 isUnusedResultAWarning(Loc, R1, R2, Ctx);
1678 isUnusedResultAWarning(Loc, R1, R2, Ctx);
1702 return UO->getSubExpr()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1722 return BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx);
1726 if (!BO->getLHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx) ||
1727 !BO->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1748 if (!Exp->getRHS()->isUnusedResultAWarning(Loc, R1, R2, Ctx))
1752 return Exp->getLHS()->isUnusedResultAWarning(Lo
[all...]

Completed in 73 milliseconds