HomeSort by relevance Sort by last modified time
    Searched refs:ParenExpr (Results 1 - 25 of 44) 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 262 return ClassifyInternal(Ctx, cast<ParenExpr>(E)->getSubExpr());
StmtProfile.cpp 438 void StmtProfiler::VisitParenExpr(const ParenExpr *S) {
    [all...]
ASTImporter.cpp 176 Expr *VisitParenExpr(ParenExpr *E);
    [all...]
  /external/lldb/include/lldb/Core/
ClangForward.h 94 class ParenExpr;
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocSizeofChecker.cpp 83 TypeCallPair VisitParenExpr(const ParenExpr *E) {
125 void VisitParenExpr(const ParenExpr *E) {
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 260 while (OuterS && (isa<ParenExpr>(OuterS) ||
443 if (ParenExpr *parenE = dyn_cast_or_null<ParenExpr>(parent))
TransUnbridgedCasts.cpp 241 if (isa<ParenExpr>(E->getSubExpr())) {
266 if (isa<ParenExpr>(WrapE)) {
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 86 isa<ParenExpr>(FullExpr) ||
SemaPseudoObject.cpp 62 if (ParenExpr *parens = dyn_cast<ParenExpr>(e)) {
64 return new (S.Context) ParenExpr(parens->getLParen(),
    [all...]
SemaExprObjC.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 171 if (const ParenExpr *PE = dyn_cast<ParenExpr>(S))
ThreadSafety.cpp 437 } else if (const ParenExpr *PE = dyn_cast<ParenExpr>(Exp)) {
    [all...]
ThreadSafetyCommon.cpp 135 return translate(cast<ParenExpr>(S)->getSubExpr(), Ctx);
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 904 isa<ParenExpr>(FullExpr) ||
    [all...]
  /external/clang/unittests/Tooling/
RecursiveASTVisitorTest.cpp 90 bool VisitParenExpr(ParenExpr *Parens) {
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 577 VISIT(ParenExpr);
723 DECL_VISIT_EXPR(ParenExpr) {
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp     [all...]
CGExprComplex.cpp 102 ComplexPairTy VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr());}
    [all...]
  /external/clang/include/clang/AST/
Expr.h 695 /// IgnoreParens - Ignore parentheses. If this Expr is a ParenExpr, return
696 /// its subexpression. If that subexpression is also a ParenExpr,
701 /// IgnoreParenCasts - Ignore parentheses and casts. Strip off any ParenExpr
709 /// any ParenExpr or ImplicitCastExprs, returning their operand.
724 /// Ignore parentheses and lvalue casts. Strip off any ParenExpr and
734 /// ParenExpr or CastExprs, returning their operand.
    [all...]
DataRecursiveASTVisitor.h     [all...]

Completed in 191 milliseconds

1 2