HomeSort by relevance Sort by last modified time
    Searched refs:ParenExpr (Results 1 - 25 of 37) sorted by null

1 2

  /external/clang/lib/AST/
ParentMap.cpp 60 do { S = getParent(S); } while (S && isa<ParenExpr>(S));
68 while (S && (isa<ParenExpr>(S) || isa<CastExpr>(S)));
83 while (isa<ParenExpr>(S)) {
95 while (P && (isa<ParenExpr>(P) || isa<CastExpr>(P))) {
Expr.cpp     [all...]
ExprClassification.cpp 249 return ClassifyInternal(Ctx, cast<ParenExpr>(E)->getSubExpr());
StmtProfile.cpp 291 void StmtProfiler::VisitParenExpr(const ParenExpr *S) {
ASTImporter.cpp 168 Expr *VisitParenExpr(ParenExpr *E);
    [all...]
StmtPrinter.cpp 825 void StmtPrinter::VisitParenExpr(ParenExpr *Node) {
    [all...]
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 281 if (ParenExpr *parenE = dyn_cast_or_null<ParenExpr>(parent))
TransUnbridgedCasts.cpp 204 if (isa<ParenExpr>(E->getSubExpr())) {
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocSizeofChecker.cpp 82 TypeCallPair VisitParenExpr(const ParenExpr *E) {
130 void VisitParenExpr(const ParenExpr *E) {
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 85 isa<ParenExpr>(FullExpr) ||
SemaPseudoObject.cpp 58 if (ParenExpr *parens = dyn_cast<ParenExpr>(e)) {
60 return new (S.Context) ParenExpr(parens->getLParen(),
    [all...]
SemaExprObjC.cpp     [all...]
SemaExpr.cpp     [all...]
SemaTemplate.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/v8/tools/gcmole/
gcmole.cc 582 VISIT(ParenExpr);
739 DECL_VISIT_EXPR(ParenExpr) {
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp 164 } else if (ParenExpr *PE = dyn_cast<ParenExpr>(Exp)) {
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp     [all...]
CGExprCXX.cpp 87 if (const ParenExpr *PE = dyn_cast<ParenExpr>(E)) {
    [all...]
CGExprComplex.cpp 103 ComplexPairTy VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr());}
CGExprAgg.cpp 102 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
    [all...]
CGExpr.cpp 667 return EmitLValue(cast<ParenExpr>(E)->getSubExpr());
    [all...]
  /external/clang/include/clang/AST/
Expr.h 594 /// IgnoreParens - Ignore parentheses. If this Expr is a ParenExpr, return
595 /// its subexpression. If that subexpression is also a ParenExpr,
600 /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
605 /// any ParenExpr or ImplicitCastExprs, returning their operand.
620 /// Ignore parentheses and lvalue casts. Strip off any ParenExpr and
630 /// ParenExpr or CastExprs, returning their operand.
    [all...]
RecursiveASTVisitor.h     [all...]

Completed in 353 milliseconds

1 2