Home | History | Annotate | Download | only in processor

Lines Matching defs:Handler

139 // to use a parser/handler pattern for this, as it's not a likely
145 class Handler {
147 Handler() { }
148 virtual ~Handler() { }
158 // Construct a parser which feeds its results to HANDLER.
159 CFIRuleParser(Handler *handler) : handler_(handler) { }
171 // The handler to which the parser reports its findings.
172 Handler *handler_;
178 // A handler for rule set parsing that populates a CFIFrameInfo with
180 class CFIFrameInfoParseHandler: public CFIRuleParser::Handler {