/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeVisitor.java | 54 boolean isNil = adaptor.isNil(t); in visit() 55 if ( action!=null && !isNil ) { in visit() 66 if ( action!=null && !isNil ) t = action.post(t); in visit()
|
D | BaseTree.java | 96 if ( childTree.isNil() ) { // t is an empty node possibly with children in addChild() 143 if ( t.isNil() ) { in setChild() 195 if ( newTree.isNil() ) { in replaceChildren() 247 public boolean isNil() { in isNil() method in BaseTree 347 if ( !isNil() ) { in toStringTree() 359 if ( !isNil() ) { in toStringTree()
|
D | BaseTreeAdaptor.java | 69 public boolean isNil(Object tree) { in isNil() method in BaseTreeAdaptor 70 return ((Tree)tree).isNil(); in isNil() 145 if ( newRootTree.isNil() ) { in becomeRoot() 164 if ( r!=null && r.isNil() ) { in rulePostProcessing()
|
D | CommonTree.java | 74 public boolean isNil() { in isNil() method in CommonTree 174 if ( isNil() ) { in toString()
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | BaseTree.js | 55 if ( childTree.isNil() ) { // t is an empty node possibly with children 102 if ( t.isNil() ) { 140 if ( newTree.isNil() ) { 192 isNil: function() { 257 if ( !this.isNil() ) { 269 if ( !this.isNil() ) {
|
D | BaseTreeAdaptor.js | 27 isNil: function(tree) { method 28 return tree.isNil(); 106 if ( newRootTree.isNil() ) { 125 if ( r && r.isNil() ) {
|
D | CommonTree.js | 43 isNil: function() { method 120 if ( this.isNil() ) {
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | TreeVisitor.cs | 61 bool isNil = adaptor.IsNil(t); in Visit() 62 if (action != null && !isNil) in Visit() 71 if (action != null && !isNil) in Visit()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeVisitor.cs | 63 bool isNil = adaptor.IsNil( t ); in Visit() 64 if ( action != null && !isNil ) in Visit() 73 if ( action != null && !isNil ) in Visit()
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | tree.py | 200 def isNil(self): member in Tree 342 def isNil(self, tree): member in TreeAdaptor 743 if childTree.isNil(): 773 if t.isNil(): 809 if newTree.isNil(): 839 def isNil(self): member in BaseTree 928 if not self.isNil(): 938 if not self.isNil(): 989 def isNil(self, tree): member in BaseTreeAdaptor 990 return tree.isNil() [all …]
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/ |
D | TestBitSet.as | 15 assertTrue(bitSet.isNil); 22 assertFalse(bitSet.isNil);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRTreeVisitor.m | 86 BOOL isNil = [adaptor isNil:t]; 87 if ( action != nil && !isNil ) { 98 if ( action != nil && !isNil ) t = [action post:(ANTLRTreeVisitorAction *)t];
|
D | ANTLRBaseTree.m | 156 * and child isNil then this routine moves children to t via 169 if ( [childTree isNil] ) { // t is an empty node possibly with children 218 if ( [t isNil] ) { 266 if ( [newTree isNil] ) { 319 - (BOOL) isNil 506 if ( ![self isNil] ) { 518 if ( ![self isNil] ) {
|
D | ANTLRBaseTree.h | 61 - (BOOL) isNil; 137 - (BOOL) isNil;
|
D | ANTLRBaseTreeAdaptor.m | 96 - (BOOL) isNil:(id) tree 98 return [(id)tree isNil]; 134 * and child isNil then you can decide it is ok to move children to t via 158 * If oldRoot was null, it's ok, just return newRoot (even if isNil). 181 if ( [newRootTree isNil] ) { 201 if ( r != nil && [r isNil] ) {
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
D | LookaheadSet.java | 82 public boolean isNil() { in isNil() method in LookaheadSet 83 return tokenTypeSet.isNil(); in isNil()
|
D | Label.java | 250 return !getSet().and(set).isNil(); in matches() 369 !edgeLabel.getSet().and(label.getSet()).isNil() ) { in intersect()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | BaseTree.as | 79 * and child isNil then this routine moves children to t via 87 if ( childTree.isNil ) { // t is an empty node possibly with children 133 if ( t.isNil ) { 168 if ( newTree.isNil ) { 214 public function get isNil():Boolean { 300 if ( !isNil ) { 312 if ( !isNil ) {
|
D | BaseTreeAdaptor.as | 40 public function isNil(tree:Object):Boolean { 41 return Tree(tree).isNil; 71 * and child isNil then you can decide it is ok to move children to t via 94 * If oldRoot was null, it's ok, just return newRoot (even if isNil). 120 if ( newRootTree.isNil ) { 138 if ( r!=null && r.isNil ) {
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRBaseTree.h | 59 - (BOOL) isNil; 133 - (BOOL) isNil;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRBaseTree.h | 59 - (BOOL) isNil; 133 - (BOOL) isNil;
|
D | ANTLRCommonErrorNode.h | 55 - (BOOL) isNil;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRBaseTree.h | 59 - (BOOL) isNil; 133 - (BOOL) isNil;
|
D | ANTLRCommonErrorNode.h | 55 - (BOOL) isNil;
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
D | IntSet.java | 68 boolean isNil(); in isNil() method
|