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

1 2

  /external/clang/lib/AST/
ParentMap.cpp 127 do { S = getParent(S); } while (S && isa<ParenExpr>(S));
135 while (S && (isa<ParenExpr>(S) || isa<CastExpr>(S)));
150 while (isa<ParenExpr>(S)) {
162 while (P && (isa<ParenExpr>(P) || isa<CastExpr>(P) ||
Expr.cpp     [all...]
ExprClassification.cpp 269 return ClassifyInternal(Ctx, cast<ParenExpr>(E)->getSubExpr());
StmtProfile.cpp 661 void StmtProfiler::VisitParenExpr(const ParenExpr *S) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocSizeofChecker.cpp 82 TypeCallPair VisitParenExpr(const ParenExpr *E) {
124 void VisitParenExpr(const ParenExpr *E) {
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 250 while (OuterS && (isa<ParenExpr>(OuterS) ||
433 if (ParenExpr *parenE = dyn_cast_or_null<ParenExpr>(parent))
TransUnbridgedCasts.cpp 241 if (isa<ParenExpr>(E->getSubExpr())) {
266 if (isa<ParenExpr>(WrapE)) {
  /external/clang/unittests/Tooling/
RecursiveASTVisitorTestExprVisitor.cpp 19 bool VisitParenExpr(ParenExpr *Parens) {
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 86 isa<ParenExpr>(FullExpr) ||
SemaPseudoObject.cpp 121 if (ParenExpr *parens = dyn_cast<ParenExpr>(e)) {
123 return new (S.Context) ParenExpr(parens->getLParen(),
    [all...]
SemaExprObjC.cpp     [all...]
SemaExpr.cpp     [all...]
SemaTemplate.cpp     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 171 if (const ParenExpr *PE = dyn_cast<ParenExpr>(S))
ThreadSafety.cpp     [all...]
ThreadSafetyCommon.cpp 237 return translate(cast<ParenExpr>(S)->getSubExpr(), Ctx);
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 904 isa<ParenExpr>(FullExpr) ||
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 577 VISIT(ParenExpr);
723 DECL_VISIT_EXPR(ParenExpr) {
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp     [all...]
CGExprComplex.cpp 107 ComplexPairTy VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr());}
    [all...]
CGExprAgg.cpp 110 void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
    [all...]
CGExprConstant.cpp 617 llvm::Constant *VisitParenExpr(ParenExpr *PE) {
    [all...]
  /external/clang/include/clang/AST/
Expr.h 724 /// IgnoreParens - Ignore parentheses. If this Expr is a ParenExpr, return
725 /// its subexpression. If that subexpression is also a ParenExpr,
730 /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
738 /// any ParenExpr or ImplicitCastExprs, returning their operand.
753 /// Ignore parentheses and lvalue casts. Strip off any ParenExpr and
763 /// ParenExpr or CastExprs, returning their operand.
    [all...]

Completed in 111 milliseconds

1 2