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

1 2

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITree.cs 113 bool IsNil {
TreeVisitor.cs 61 bool isNil = adaptor.IsNil(t);
62 if (action != null && !isNil)
71 if (action != null && !isNil)
BaseTree.cs 103 public virtual bool IsNil {
164 * and child isNil then this routine moves children to t via
174 if (t.IsNil) {
230 if (t.IsNil) {
287 if (newTree.IsNil) {
420 if (!IsNil) {
432 if (!IsNil) {
CommonTree.cs 105 public override bool IsNil {
215 if (IsNil) {
BaseTreeAdaptor.cs 77 public virtual bool IsNil(object tree) {
78 return ((ITree)tree).IsNil;
111 * and child isNil then you can decide it is ok to move children to t via
138 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
161 if (newRootTree.IsNil) {
181 if (r != null && r.IsNil) {
RewriteRuleSubtreeStream.cs 80 while (adaptor.IsNil(tree) && adaptor.GetChildCount(tree) == 1)
CommonErrorNode.cs 62 public override bool IsNil {
ITreeAdaptor.cs 100 bool IsNil(object tree);
105 * and child isNil then you can decide it is ok to move children to t via
128 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
CommonTreeNodeStream.cs 147 if (_level == 0 && TreeAdaptor.IsNil(t)) {
TreeWizard.cs 283 tpattern.IsNil ||
367 tpattern.IsNil ||
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITree.cs 118 bool IsNil
TreeVisitor.cs 63 bool isNil = adaptor.IsNil( t );
64 if ( action != null && !isNil )
73 if ( action != null && !isNil )
BaseTree.cs 123 public virtual bool IsNil
195 * and child isNil then this routine moves children to t via
207 if ( t.IsNil )
276 if ( t.IsNil )
338 if ( newTree.IsNil )
503 if ( !IsNil )
518 if ( !IsNil )
CommonTree.cs 120 public override bool IsNil
284 if (IsNil)
RewriteRuleSubtreeStream.cs 87 while (adaptor.IsNil(tree) && adaptor.GetChildCount(tree) == 1)
BaseTreeAdaptor.cs 82 public virtual bool IsNil( object tree )
84 return ( (ITree)tree ).IsNil;
143 * and child isNil then you can decide it is ok to move children to t via
172 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
197 if ( newRootTree.IsNil )
220 if ( r != null && r.IsNil )
CommonErrorNode.cs 66 public override bool IsNil
ITreeAdaptor.cs 156 bool IsNil( object tree );
161 * and child isNil then you can decide it is ok to move children to t via
184 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
CommonTreeNodeStream.cs 170 if ( _level == 0 && TreeAdaptor.IsNil( t ) )
TreeWizard.cs 324 tpattern.IsNil ||
422 tpattern.IsNil ||
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs 88 bool IsNil(T tree);
93 * and child isNil then you can decide it is ok to move children to t via
116 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
  /external/chromium/third_party/libjingle/source/talk/base/
socketaddress.h 65 bool IsNil() const;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs 112 public virtual bool IsNil(object tree) {
113 return adaptor.IsNil(tree);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 145 public virtual bool IsNil( object tree )
147 return adaptor.IsNil( tree );
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 248 public bool IsNil() {

Completed in 431 milliseconds

1 2