OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:childTree
(Results
1 - 15
of
15
) sorted by null
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTree.java
95
BaseTree
childTree
= (BaseTree)t;
96
if (
childTree
.isNil() ) { // t is an empty node possibly with children
97
if ( this.children!=null && this.children ==
childTree
.children ) {
100
// just add all of
childTree
's children to this
101
if (
childTree
.children!=null ) {
103
int n =
childTree
.children.size();
105
Tree c = (Tree)
childTree
.children.get(i);
115
this.children =
childTree
.children;
125
childTree
.setParent(this);
126
childTree
.setChildIndex(children.size()-1)
[
all
...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
BaseTree.js
54
var
childTree
= t, n, i, c;
55
if (
childTree
.isNil() ) { // t is an empty node possibly with children
56
if ( this.children && this.children ==
childTree
.children ) {
59
// just add all of
childTree
's children to this
60
if (
childTree
.children ) {
62
n =
childTree
.children.length;
64
c =
childTree
.children[i];
74
this.children =
childTree
.children;
84
childTree
.setParent(this);
85
childTree
.setChildIndex(this.children.length-1)
[
all
...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as
86
var
childTree
:BaseTree = BaseTree(t);
87
if (
childTree
.isNil ) { // t is an empty node possibly with children
88
if ( this._children!=null && this._children ==
childTree
._children ) {
91
// just add all of
childTree
's children to this
92
if (
childTree
._children!=null ) {
94
var n:int =
childTree
._children.length;
96
var c:Tree = Tree(
childTree
._children[i]);
106
this._children =
childTree
.children;
116
childTree
.parent = this;
117
childTree
.childIndex = children.length-1
[
all
...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTree.cs
261
foreach (ITree
childTree
in Children)
263
CommonTree commonTree =
childTree
as CommonTree;
BaseTree.cs
210
BaseTree
childTree
= t as BaseTree;
211
if (
childTree
!= null && this.Children != null && this.Children ==
childTree
.Children )
215
// just add all of
childTree
's children to this
218
if ( this.Children != null ||
childTree
== null )
238
this.Children =
childTree
.Children;
BaseTreeAdaptor.cs
323
ITree
childTree
= GetTree(child);
324
tree.SetChild(i,
childTree
);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTree.cs
176
BaseTree
childTree
= t as BaseTree;
177
if (
childTree
!= null && this.children != null && this.children ==
childTree
.children) {
180
// just add all of
childTree
's children to this
182
if (this.children != null ||
childTree
== null) {
198
this.children =
childTree
.children;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py
729
def addChild(self,
childTree
):
740
if
childTree
is None:
743
if
childTree
.isNil():
746
if self.children is
childTree
.children:
750
for idx, child in enumerate(
childTree
.children):
754
self.children +=
childTree
.children
758
self.children.append(
childTree
)
759
childTree
.parent = self
760
childTree
.childIndex = len(self.children) - 1
[
all
...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas
[
all
...]
/external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar
/prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar
/prebuilts/misc/common/antlr/
antlr-3.4-complete.jar
/prebuilts/misc/common/jython/
jython.jar
/prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar
/prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar
Completed in 299 milliseconds