OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ITree
(Results
1 - 2
of
2
) sorted by null
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITree.cs
50
public interface
ITree
{
52
ITree
GetChild(int i);
60
ITree
Parent {
69
ITree
GetAncestor(int ttype);
76
IList<
ITree
> GetAncestors();
92
void AddChild(
ITree
t);
95
void SetChild(int i,
ITree
t);
137
ITree
DupNode();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITree.cs
51
public interface
ITree
54
ITree
GetChild( int i );
63
ITree
Parent
73
ITree
GetAncestor( int ttype );
80
IList<
ITree
> GetAncestors();
97
void AddChild(
ITree
t );
100
void SetChild( int i,
ITree
t );
145
ITree
DupNode();
Completed in 589 milliseconds