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
195 /// \brief Registers a callback to notify the end of parsing.
229 /// Collects the \c BoundNodes of all callback invocations when matching
252 /// \p Context and collects the \c BoundNodes of all callback invocations.
290 internal::CollectMatchesCallback Callback;
292 Finder.addMatcher(Matcher, &Callback);
294 return std::move(Callback.Nodes);
306 internal::CollectMatchesCallback Callback;
308 Finder.addMatcher(Matcher, &Callback);
310 return std::move(Callback.Nodes);