Home
last modified time | relevance | path

Searched refs:isNil (Results 1 – 25 of 89) sorted by relevance

1234

/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DTreeVisitor.java54 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()
DBaseTree.java99 if ( childTree.isNil() ) { // t is an empty node possibly with children in addChild()
147 if ( t.isNil() ) { in setChild()
208 if ( newTree.isNil() ) { in replaceChildren()
261 public boolean isNil() { in isNil() method in BaseTree
370 if ( !isNil() ) { in toStringTree()
382 if ( !isNil() ) { in toStringTree()
DBaseTreeAdaptor.java72 public boolean isNil(Object tree) { in isNil() method in BaseTreeAdaptor
73 return ((Tree)tree).isNil(); in isNil()
151 if ( newRootTree.isNil() ) { in becomeRoot()
171 if ( r!=null && r.isNil() ) { in rulePostProcessing()
DCommonTree.java76 public boolean isNil() { in isNil() method in CommonTree
189 if ( isNil() ) { in toString()
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
DBaseTree.js55 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() ) {
DBaseTreeAdaptor.js27 isNil: function(tree) { method
28 return tree.isNil();
106 if ( newRootTree.isNil() ) {
125 if ( r && r.isNil() ) {
DCommonTree.js43 isNil: function() { method
120 if ( this.isNil() ) {
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeVisitor.cs61 bool isNil = adaptor.IsNil(t); in Visit()
62 if (action != null && !isNil) in Visit()
71 if (action != null && !isNil) in Visit()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DTreeVisitor.cs63 bool isNil = adaptor.IsNil( t ); in Visit()
64 if ( action != null && !isNil ) in Visit()
73 if ( action != null && !isNil ) in Visit()
/external/antlr/runtime/Python3/antlr3/
Dtree.py200 def isNil(self): member in Tree
342 def isNil(self, tree): member in TreeAdaptor
739 if childTree.isNil():
769 if t.isNil():
804 if newTree.isNil():
834 def isNil(self): member in BaseTree
921 if not self.isNil():
931 if not self.isNil():
982 def isNil(self, tree): member in BaseTreeAdaptor
983 return tree.isNil()
[all …]
/external/antlr/runtime/Python/antlr3/
Dtree.py200 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/runtime/ActionScript/project/test/org/antlr/runtime/test/
DTestBitSet.as15 assertTrue(bitSet.isNil);
22 assertFalse(bitSet.isNil);
/external/antlr/runtime/ObjC/Framework/
DTreeVisitor.m86 BOOL isNil = [adaptor isNil:t];
87 if ( action != nil && !isNil ) {
98 if ( action != nil && !isNil ) t = [action post:(id<BaseTree>)t];
DBaseTree.m161 * and child isNil then this routine moves children to t via
174 if ( [childTree isNil] ) { // t is an empty node possibly with children
223 if ( [t isNil] ) {
271 if ( [newTree isNil] ) {
324 - (BOOL) isNil
511 if ( ![self isNil] ) {
523 if ( ![self isNil] ) {
DBaseTree.h61 - (BOOL) isNil;
137 - (BOOL) isNil;
DBaseTreeAdaptor.m96 - (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/tool/src/main/java/org/antlr/analysis/
DLookaheadSet.java82 public boolean isNil() { in isNil() method in LookaheadSet
83 return tokenTypeSet.isNil(); in isNil()
DLabel.java251 return !getSet().and(set).isNil(); in matches()
374 !edgeLabel.getSet().and(label.getSet()).isNil() ) { in intersect()
DDFAState.java348 if ( !existingMinusNewElements.isNil() ) { in addReachableLabel()
362 if ( remainder.isNil() ) { in addReachableLabel()
368 if ( !remainder.isNil() ) { in addReachableLabel()
/external/golang-protobuf/proto/
Dtable_merge.go105 if dst.isNil() {
108 if src.isNil() {
123 if fi.isPointer && sfp.getPointer().isNil() { // Could be slice or string
543 if !sp.isNil() {
559 if !sp.isNil() {
561 if dp.isNil() {
Ddiscard.go110 if src.isNil() {
182 if !sp.isNil() {
191 if !sp.isNil() {
Dtable_marshal.go119 if ptr.isNil() {
135 if ptr.isNil() {
179 if f.isPointer && ptr.offset(f.field).getPointer().isNil() {
257 if ptr.offset(f.field).getPointer().isNil() {
266 if f.isPointer && ptr.offset(f.field).getPointer().isNil() {
2161 if p.isNil() {
2168 if p.isNil() {
2186 if v.isNil() {
2198 if v.isNil() {
2220 if p.isNil() {
[all …]
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
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 ) {
DBaseTreeAdaptor.as40 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/tool/src/main/java/org/antlr/misc/
DIntSet.java68 boolean isNil(); in isNil() method

1234