Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Head

85     const Stmt *Head = WorkList.front();
88 if (const Expr *Ex = dyn_cast<Expr>(Head))
89 Head = Ex->IgnoreParenCasts();
91 switch (Head->getStmtClass()) {
94 const BinaryOperator *BO = cast<BinaryOperator>(Head);
139 const UnaryOperator *UO = cast<UnaryOperator>(Head);
172 const DeclStmt *DS = cast<DeclStmt>(Head);
202 const DeclRefExpr *DR = cast<DeclRefExpr>(Head);
213 const BlockExpr *B = cast<BlockExpr>(Head);
221 } // switch (head->getStmtClass())
224 for (Stmt::const_child_range I = Head->children(); I; ++I)