/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | BaseTree.cs | 103 public virtual bool IsNil { property in Antlr.Runtime.Tree.BaseTree 174 if (t.IsNil) { in AddChild() 230 if (t.IsNil) { in SetChild() 287 if (newTree.IsNil) { in ReplaceChildren() 420 if (!IsNil) { in ToStringTree() 432 if (!IsNil) { in ToStringTree()
|
D | BaseTreeAdaptor.cs | 77 public virtual bool IsNil(object tree) { in IsNil() method in Antlr.Runtime.Tree.BaseTreeAdaptor 78 return ((ITree)tree).IsNil; in IsNil() 161 if (newRootTree.IsNil) { in BecomeRoot() 181 if (r != null && r.IsNil) { in RulePostProcessing()
|
D | CommonTree.cs | 105 public override bool IsNil { property in Antlr.Runtime.Tree.CommonTree 215 if (IsNil) { in ToString()
|
D | ITree.cs | 113 bool IsNil { property
|
D | TreeVisitor.cs | 61 bool isNil = adaptor.IsNil(t); in Visit()
|
D | RewriteRuleSubtreeStream.cs | 80 while (adaptor.IsNil(tree) && adaptor.GetChildCount(tree) == 1) in NextNode()
|
D | ITreeAdaptor.cs | 100 bool IsNil(object tree); in IsNil() method
|
D | CommonErrorNode.cs | 62 public override bool IsNil { property in Antlr.Runtime.Tree.CommonErrorNode
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | BaseTree.cs | 123 public virtual bool IsNil property in Antlr.Runtime.Tree.BaseTree 207 if ( t.IsNil ) in AddChild() 276 if ( t.IsNil ) in SetChild() 338 if ( newTree.IsNil ) in ReplaceChildren() 503 if ( !IsNil ) in ToStringTree() 518 if ( !IsNil ) in ToStringTree()
|
D | BaseTreeAdaptor.cs | 82 public virtual bool IsNil( object tree ) in IsNil() method in Antlr.Runtime.Tree.BaseTreeAdaptor 84 return ( (ITree)tree ).IsNil; in IsNil() 197 if ( newRootTree.IsNil ) in BecomeRoot() 220 if ( r != null && r.IsNil ) in RulePostProcessing()
|
D | CommonTree.cs | 120 public override bool IsNil property in Antlr.Runtime.Tree.CommonTree 284 if (IsNil) in ToString()
|
D | ITree.cs | 118 bool IsNil property
|
D | TreeVisitor.cs | 63 bool isNil = adaptor.IsNil( t ); in Visit()
|
D | RewriteRuleSubtreeStream.cs | 87 while (adaptor.IsNil(tree) && adaptor.GetChildCount(tree) == 1) in NextNode()
|
D | CommonErrorNode.cs | 66 public override bool IsNil property in Antlr.Runtime.Tree.CommonErrorNode
|
/external/webrtc/webrtc/base/ |
D | physicalsocketserver_unittest.cc | 154 EXPECT_TRUE(accept_addr.IsNil()); in ConnectInternalAcceptError() 158 EXPECT_FALSE(client1->GetLocalAddress().IsNil()); in ConnectInternalAcceptError() 172 ASSERT_TRUE(accept_addr.IsNil()); in ConnectInternalAcceptError() 177 EXPECT_TRUE(accept_addr.IsNil()); in ConnectInternalAcceptError() 181 EXPECT_FALSE(client2->GetLocalAddress().IsNil()); in ConnectInternalAcceptError() 194 EXPECT_FALSE(accept_addr.IsNil()); in ConnectInternalAcceptError()
|
D | natsocketfactory.cc | 119 result = socket_->Connect(server_addr_.IsNil() ? addr : server_addr_); in Connect() 140 if (server_addr_.IsNil() || type_ == SOCK_STREAM) { in SendTo() 164 if (server_addr_.IsNil() || type_ == SOCK_STREAM) { in RecvFrom() 236 if (server_addr_.IsNil()) { in OnConnectEvent() 246 if (type_ == SOCK_STREAM && !server_addr_.IsNil() && !connected_) { in OnReadEvent()
|
D | socket_unittest.cc | 214 EXPECT_TRUE(accept_addr.IsNil()); in ConnectInternal() 218 EXPECT_FALSE(client->GetLocalAddress().IsNil()); in ConnectInternal() 230 EXPECT_FALSE(accept_addr.IsNil()); in ConnectInternal() 279 EXPECT_FALSE(accept_addr.IsNil()); in ConnectWithDnsLookupInternal() 320 EXPECT_TRUE(client->GetRemoteAddress().IsNil()); in ConnectFailInternal() 362 EXPECT_TRUE(client->GetRemoteAddress().IsNil()); in ConnectWithDnsLookupFailInternal() 366 EXPECT_TRUE(accept_addr.IsNil()); in ConnectWithDnsLookupFailInternal() 409 EXPECT_FALSE(accept_addr.IsNil()); in ConnectWhileNotClosedInternal() 549 EXPECT_TRUE(accepted->GetRemoteAddress().IsNil()); in ServerCloseInternal() 558 EXPECT_TRUE(client->GetRemoteAddress().IsNil()); in ServerCloseInternal()
|
D | virtualsocketserver.cc | 126 if (!alternative_local_addr_.IsNil()) in GetLocalAddress() 144 if (!local_addr_.IsNil()) { in Bind() 168 if (!local_addr_.IsNil() && bound_) { in Close() 314 if (local_addr_.IsNil()) { in Listen() 430 if (!remote_addr_.IsNil()) { in InitiateConnect() 434 if (local_addr_.IsNil()) { in InitiateConnect() 474 if (local_addr_.IsNil()) { in SendUdp()
|
D | firewallsocketserver.cc | 164 if ((r.src.ipaddr() != src.ipaddr()) && !r.src.IsNil()) in Check() 168 if ((r.dst.ipaddr() != dst.ipaddr()) && !r.dst.IsNil()) in Check()
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.Tree.pas | 111 function IsNil(const Tree: IANTLRInterface): Boolean; 504 property IsNil: Boolean read GetIsNil; property 1276 function IsNil(const Tree: IANTLRInterface): Boolean; virtual; in IsNil() 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; in IsNil() function 2837 Result := (Tree as ITree).IsNil; 2846 if Assigned(R) and (R.IsNil) then [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
D | DebugTreeAdaptor.cs | 112 public virtual bool IsNil(object tree) { in IsNil() method in Antlr.Runtime.Debug.DebugTreeAdaptor 113 return adaptor.IsNil(tree); in IsNil()
|
/external/webrtc/webrtc/p2p/base/ |
D | teststunserver.h | 43 if (fake_stun_addr_.IsNil()) { in OnBindingRequest()
|
D | port_unittest.cc | 292 if (!remote_address_.IsNil()) { in OnUnknownAddress() 578 WAIT(!ch2->remote_address().IsNil(), kTimeout); in ConnectStartedChannels() 804 WAIT(!ch2.remote_address().IsNil(), kTimeout); in TestConnectivity() 809 EXPECT_TRUE(ch1.remote_address().IsNil()); in TestConnectivity() 826 EXPECT_TRUE(ch1.remote_address().IsNil()); in TestConnectivity() 827 EXPECT_TRUE(ch2.remote_address().IsNil()); in TestConnectivity() 850 EXPECT_TRUE(ch1.remote_address().IsNil()); in TestConnectivity() 851 EXPECT_TRUE(ch2.remote_address().IsNil()); in TestConnectivity() 856 EXPECT_TRUE_WAIT(!ch2.remote_address().IsNil(), kTimeout); in TestConnectivity() 858 EXPECT_TRUE(ch1.remote_address().IsNil()); in TestConnectivity() [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
D | DebugTreeAdaptor.cs | 145 public virtual bool IsNil( object tree ) in IsNil() method in Antlr.Runtime.Debug.DebugTreeAdaptor 147 return adaptor.IsNil( tree ); in IsNil()
|