OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DupNode
(Results
1 - 19
of
19
) sorted by null
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ParseTree.cs
85
public override ITree
DupNode
() {
CommonTreeAdaptor.cs
45
* create(Token), errorNode(), and to be safe, YourTreeClass.
dupNode
().
46
*
dupNode
is called to duplicate nodes during rewrite operations.
60
public override object
DupNode
(object t) {
64
return ((ITree)t).
DupNode
();
CommonTree.cs
184
public override ITree
DupNode
() {
ITree.cs
137
ITree
DupNode
();
BaseTree.cs
442
public abstract ITree
DupNode
();
BaseTreeAdaptor.cs
95
object newTree =
DupNode
(t);
306
public abstract object
DupNode
(object treeNode);
ITreeAdaptor.cs
66
object
DupNode
(object treeNode);
68
/** <summary>Duplicate tree recursively, using
dupNode
() for each node</summary> */
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ParseTree.cs
100
public override ITree
DupNode
()
CommonTree.cs
240
public override ITree
DupNode
()
ITree.cs
145
ITree
DupNode
();
BaseTree.cs
529
public abstract ITree
DupNode
();
BaseTreeAdaptor.cs
87
public virtual object
DupNode
(int type, object treeNode)
89
object t =
DupNode
(treeNode);
94
public virtual object
DupNode
(object treeNode, string text)
96
object t =
DupNode
(treeNode);
101
public virtual object
DupNode
(int type, object treeNode, string text)
103
object t =
DupNode
(treeNode);
126
object newTree =
DupNode
( t );
405
public virtual object
DupNode
(object treeNode)
411
return tree.
DupNode
();
ITreeAdaptor.cs
116
object
DupNode
(object treeNode);
118
object
DupNode
(int type, object treeNode);
120
object
DupNode
(object treeNode, string text);
122
object
DupNode
(int type, object treeNode, string text);
124
/** <summary>Duplicate tree recursively, using
dupNode
() for each node</summary> */
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs
100
public virtual object
DupNode
(object treeNode) {
101
object d = adaptor.
DupNode
(treeNode);
RemoteDebugEventSocketListener.cs
229
public override ITree
DupNode
() {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs
110
public virtual object
DupNode
( object treeNode )
112
object d = adaptor.
DupNode
( treeNode );
117
public object
DupNode
(int type, object treeNode)
119
object d = adaptor.
DupNode
(type, treeNode);
124
public object
DupNode
(object treeNode, string text)
126
object d = adaptor.
DupNode
(treeNode, text);
131
public object
DupNode
(int type, object treeNode, string text)
133
object d = adaptor.
DupNode
(type, treeNode, text);
RemoteDebugEventSocketListener.cs
279
public override ITree
DupNode
()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs
54
T
DupNode
(T treeNode);
56
/** <summary>Duplicate tree recursively, using
dupNode
() for each node</summary> */
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas
77
function
DupNode
(const TreeNode: IANTLRInterface): IANTLRInterface;
79
/// <summary>Duplicate tree recursively, using
DupNode
() for each node </summary>
484
function
DupNode
: ITree;
570
function
DupNode
: ITree;
[
all
...]
Completed in 644 milliseconds