Searched refs:isNil (Results 1 - 25 of 82) sorted by relevance

1234

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeVisitor.java54 boolean isNil = adaptor.isNil(t);
55 if ( action!=null && !isNil ) {
66 if ( action!=null && !isNil ) t = action.post(t);
H A DRewriteRuleSubtreeStream.java78 while (adaptor.isNil(tree) && adaptor.getChildCount(tree) == 1)
H A DTree.java96 boolean isNil(); method in interface:Tree
H A DBaseTree.java86 * and child isNil then this routine moves children to t via
96 if ( childTree.isNil() ) { // t is an empty node possibly with children
143 if ( t.isNil() ) {
195 if ( newTree.isNil() ) {
247 public boolean isNil() { method in class:BaseTree
347 if ( !isNil() ) {
359 if ( !isNil() ) {
H A DCommonTree.java74 public boolean isNil() { method in class:CommonTree
174 if ( isNil() ) {
H A DBaseTreeAdaptor.java69 public boolean isNil(Object tree) { method in class:BaseTreeAdaptor
70 return ((Tree)tree).isNil();
100 * and child isNil then you can decide it is ok to move children to t via
123 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
145 if ( newRootTree.isNil() ) {
164 if ( r!=null && r.isNil() ) {
H A DCommonErrorNode.java59 public boolean isNil() { method in class:CommonErrorNode
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeVisitor.cs61 bool isNil = adaptor.IsNil(t);
62 if (action != null && !isNil)
71 if (action != null && !isNil)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeVisitor.cs63 bool isNil = adaptor.IsNil( t );
64 if ( action != null && !isNil )
73 if ( action != null && !isNil )
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntSet.java68 boolean isNil(); method in interface:IntSet
/external/chromium_org/third_party/ocmock/OCMock/
H A DOCMArg.h14 + (id)isNil; variable
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLookaheadSet.java82 public boolean isNil() { method in class:LookaheadSet
83 return tokenTypeSet.isNil();
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.js27 isNil: function(tree) {
28 return tree.isNil();
58 * and child isNil then you can decide it is ok to move children to t via
81 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
106 if ( newRootTree.isNil() ) {
125 if ( r && r.isNil() ) {
H A DCommonTree.js43 isNil: function() {
120 if ( this.isNil() ) {
H A DBaseTree.js47 * and child isNil then this routine moves children to t via
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() ) {
H A DCommonErrorNode.js19 isNil: function() {
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonErrorNode.h55 - (BOOL) isNil;
H A DANTLRTree.h86 - (BOOL) isNil;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonErrorNode.h55 - (BOOL) isNil;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonErrorNode.h55 - (BOOL) isNil;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTree.as79 * 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 ) {
H A DCommonTree.as76 public override function get isNil():Boolean {
153 if ( isNil ) {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRCommonErrorNode.h57 - (BOOL) isNil;
H A DANTLRTree.h92 - (BOOL) isNil;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtree.py200 def isNil(self): member in class:Tree
342 def isNil(self, tree): member in class:TreeAdaptor
352 and child isNil then you can decide it is ok to move children to t via
375 If oldRoot was null, it's ok, just return newRoot (even if isNil).
733 and child isNil then this routine moves children to t via
743 if childTree.isNil():
773 if t.isNil():
809 if newTree.isNil():
839 def isNil(self): member in class:BaseTree
928 if not self.isNil()
989 def isNil(self, tree): member in class:BaseTreeAdaptor
1249 def isNil(self): member in class:CommonTree
1421 def isNil(self): member in class:CommonErrorNode
[all...]

Completed in 5250 milliseconds

1234