HomeSort by relevance Sort by last modified time
    Searched refs:isNil (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeVisitor.java 54 boolean isNil = adaptor.isNil(t);
55 if ( action!=null && !isNil ) {
66 if ( action!=null && !isNil ) t = action.post(t);
RewriteRuleSubtreeStream.java 78 while (adaptor.isNil(tree) && adaptor.getChildCount(tree) == 1)
Tree.java 96 boolean isNil();
BaseTree.java 86 * 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() {
347 if ( !isNil() ) {
359 if ( !isNil() ) {
CommonTree.java 74 public boolean isNil() {
174 if ( isNil() ) {
BaseTreeAdaptor.java 69 public boolean isNil(Object tree) {
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() ) {
CommonErrorNode.java 59 public boolean isNil() {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeVisitor.cs 61 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/
TreeVisitor.cs 63 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/
IntSet.java 68 boolean isNil();
  /external/chromium_org/third_party/ocmock/OCMock/
OCMArg.h 14 + (id)isNil;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LookaheadSet.java 82 public boolean isNil() {
83 return tokenTypeSet.isNil();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterRedEye.java 38 public boolean isNil() {
39 return mParameters.isNil();
FilterPointRepresentation.java 51 public boolean isNil() {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
BaseTreeAdaptor.js 27 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() ) {
BaseTree.js 47 * 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() ) {
CommonTree.js 43 isNil: function() {
120 if ( this.isNil() ) {
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonErrorNode.h 55 - (BOOL) isNil;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonErrorNode.h 55 - (BOOL) isNil;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonErrorNode.h 55 - (BOOL) isNil;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
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 ) {
CommonTree.as 76 public override function get isNil():Boolean {
153 if ( isNil ) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonErrorNode.h 57 - (BOOL) isNil;
ANTLRTree.h 92 - (BOOL) isNil;
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py 200 def isNil(self):
342 def isNil(self, tree):
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):
928 if not self.isNil()
    [all...]

Completed in 642 milliseconds

1 2 3 4