OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BoundNodes
(Results
1 - 7
of
7
) sorted by null
/external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h
73
MatchResult(const
BoundNodes
&Nodes, clang::ASTContext *Context);
78
const
BoundNodes
Nodes;
119
/// Calls 'Action' with the
BoundNodes
on every match.
174
/// Collects the \c
BoundNodes
of all callback invocations when matching
183
SmallVector<
BoundNodes
, 1>
187
SmallVector<
BoundNodes
, 1>
204
selectFirst(StringRef BoundTo, const SmallVectorImpl<
BoundNodes
> &Results) {
205
for (SmallVectorImpl<
BoundNodes
>::const_iterator I = Results.begin(),
220
SmallVector<
BoundNodes
, 1> Nodes;
225
SmallVector<
BoundNodes
, 1
[
all
...]
ASTMatchersInternal.h
59
class
BoundNodes
;
63
/// \brief Internal version of
BoundNodes
. Holds all the bound nodes.
117
/// \brief A visitor interface to visit all
BoundNodes
results for a
126
virtual void visitMatch(const
BoundNodes
& BoundNodesView) = 0;
[
all
...]
ASTMatchers.h
30
// be called with a
BoundNodes
instance that contains a mapping from the
64
/// The instances of
BoundNodes
are created by \c MatchFinder when the user's
66
class
BoundNodes
{
90
/// \brief Create
BoundNodes
from a pre-filled map of bindings.
91
BoundNodes
(internal::BoundNodesMap &MyBoundNodes)
[
all
...]
/external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp
25
ResultVisitor->visitMatch(
BoundNodes
(Bindings[i]));
ASTMatchFinder.cpp
58
BoundNodesTreeBuilder
BoundNodes
;
65
return
BoundNodes
< Other.
BoundNodes
;
385
Key.
BoundNodes
= *Builder;
509
Key.
BoundNodes
= *Builder;
577
virtual void visitMatch(const
BoundNodes
& BoundNodesView) {
771
MatchFinder::MatchResult::MatchResult(const
BoundNodes
&Nodes,
/external/clang/unittests/ASTMatchers/
ASTMatchersTest.h
27
virtual bool run(const
BoundNodes
*
BoundNodes
) = 0;
28
virtual bool run(const
BoundNodes
*
BoundNodes
, ASTContext *Context) = 0;
ASTMatchersTest.cpp
630
// Implements a run method that returns whether
BoundNodes
contains a
661
virtual bool run(const
BoundNodes
*Nodes) {
676
virtual bool run(const
BoundNodes
*Nodes, ASTContext *Context) {
[
all
...]
Completed in 786 milliseconds