Lines Matching refs:Current
36 const Expr *Current = &E;
38 while (Current != Last) {
39 Last = Current;
40 if (auto *EWC = dyn_cast<ExprWithCleanups>(Current)) {
41 Current = EWC->getSubExpr();
42 assert(Current != nullptr);
44 if (auto *CE = dyn_cast<ConstantExpr>(Current)) {
45 Current = CE->getSubExpr();
46 assert(Current != nullptr);
48 Current = Current->IgnoreParens();
49 assert(Current != nullptr);
51 return *Current;