Home | History | Annotate | Download | only in Analysis

Lines Matching defs:TransferFunctions

420   // when TransferFunctions visits it. A compound-assignment does not affect
490 class TransferFunctions : public StmtVisitor<TransferFunctions> {
500 TransferFunctions(CFGBlockValues &vals, const CFG &cfg,
677 void TransferFunctions::reportUse(const Expr *ex, const VarDecl *vd) {
683 void TransferFunctions::VisitObjCForCollectionStmt(ObjCForCollectionStmt *FS) {
692 void TransferFunctions::VisitBlockExpr(BlockExpr *be) {
706 void TransferFunctions::VisitCallExpr(CallExpr *ce) {
729 void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *dr) {
745 void TransferFunctions::VisitBinaryOperator(BinaryOperator *BO) {
753 void TransferFunctions::VisitDeclStmt(DeclStmt *DS) {
789 void TransferFunctions::VisitObjCMessageExpr(ObjCMessageExpr *ME) {
821 TransferFunctions tf(vals, cfg, block, ac, classification, handler);