Searched defs:IsNil (Results 1 - 19 of 19) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonErrorNode.cs62 public override bool IsNil { property in class:Antlr.Runtime.Tree.CommonErrorNode
H A DCommonTree.cs105 public override bool IsNil { property in class:Antlr.Runtime.Tree.CommonTree
215 if (IsNil) {
H A DITree.cs113 bool IsNil { property in interface:Antlr.Runtime.Tree.ITree
H A DBaseTree.cs103 public virtual bool IsNil { property in class:Antlr.Runtime.Tree.BaseTree
174 if (t.IsNil) {
230 if (t.IsNil) {
287 if (newTree.IsNil) {
420 if (!IsNil) {
432 if (!IsNil) {
H A DBaseTreeAdaptor.cs77 public virtual bool IsNil(object tree) { method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
78 return ((ITree)tree).IsNil;
161 if (newRootTree.IsNil) {
181 if (r != null && r.IsNil) {
H A DITreeAdaptor.cs100 bool IsNil(object tree); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonErrorNode.cs66 public override bool IsNil property in class:Antlr.Runtime.Tree.CommonErrorNode
H A DCommonTree.cs120 public override bool IsNil property in class:Antlr.Runtime.Tree.CommonTree
284 if (IsNil)
H A DBaseTree.cs123 public virtual bool IsNil property in class:Antlr.Runtime.Tree.BaseTree
207 if ( t.IsNil )
276 if ( t.IsNil )
338 if ( newTree.IsNil )
503 if ( !IsNil )
518 if ( !IsNil )
H A DITree.cs118 bool IsNil property in interface:Antlr.Runtime.Tree.ITree
H A DBaseTreeAdaptor.cs82 public virtual bool IsNil( object tree ) method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
84 return ( (ITree)tree ).IsNil;
197 if ( newRootTree.IsNil )
220 if ( r != null && r.IsNil )
H A DITreeAdaptor.cs156 bool IsNil( object tree ); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBitSet.cs248 public bool IsNil() { method in class:Antlr.Runtime.BitSet
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBitSet.cs292 public bool IsNil() method in class:Antlr.Runtime.BitSet
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeAdaptor.cs112 public virtual bool IsNil(object tree) { method in class:Antlr.Runtime.Debug.DebugTreeAdaptor
113 return adaptor.IsNil(tree);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTreeAdaptor.cs145 public virtual bool IsNil( object tree ) method in class:Antlr.Runtime.Debug.DebugTreeAdaptor
147 return adaptor.IsNil( tree );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs88 bool IsNil(T tree); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
/external/chromium_org/third_party/webrtc/base/
H A Dsocketaddress.cc72 bool SocketAddress::IsNil() const { function in class:rtc::SocketAddress
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas111 function IsNil(const Tree: IANTLRInterface): Boolean;
504 property IsNil: Boolean read GetIsNil;
1276 function IsNil(const Tree: IANTLRInterface): Boolean; virtual; function
2141 if ChildTree.IsNil then // t is an empty node possibly with children
2294 if (NewTree.IsNil) then
2389 if T.IsNil then
2697 if (NewRootTree.IsNil) then
2835 function TBaseTreeAdaptor.IsNil(const Tree: IANTLRInterface): Boolean;
2837 Result := (Tree as ITree).IsNil;
2846 if Assigned(R) and (R.IsNil) the
[all...]

Completed in 937 milliseconds