Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:Callback

11 //  over the AST and invokes a given callback on every match.
14 // subtree match on the AST. Next, a callback that is executed every time the
17 // be accessed from the registered callback. The callback can than use the
193 /// \brief Registers a callback to notify the end of parsing.
226 /// Collects the \c BoundNodes of all callback invocations when matching
245 /// \p Context and collects the \c BoundNodes of all callback invocations.
283 internal::CollectMatchesCallback Callback;
285 Finder.addMatcher(Matcher, &Callback);
287 return std::move(Callback.Nodes);
299 internal::CollectMatchesCallback Callback;
301 Finder.addMatcher(Matcher, &Callback);
303 return std::move(Callback.Nodes);