Home
last modified time | relevance | path

Searched refs:IsNil (Results 1 – 25 of 57) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBaseTree.cs103 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()
DBaseTreeAdaptor.cs77 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()
DCommonTree.cs105 public override bool IsNil { property in Antlr.Runtime.Tree.CommonTree
215 if (IsNil) { in ToString()
DITree.cs113 bool IsNil { property
DTreeVisitor.cs61 bool isNil = adaptor.IsNil(t); in Visit()
DRewriteRuleSubtreeStream.cs80 while (adaptor.IsNil(tree) && adaptor.GetChildCount(tree) == 1) in NextNode()
DITreeAdaptor.cs100 bool IsNil(object tree); in IsNil() method
DCommonErrorNode.cs62 public override bool IsNil { property in Antlr.Runtime.Tree.CommonErrorNode
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBaseTree.cs123 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()
DBaseTreeAdaptor.cs82 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()
DCommonTree.cs120 public override bool IsNil property in Antlr.Runtime.Tree.CommonTree
284 if (IsNil) in ToString()
DITree.cs118 bool IsNil property
DTreeVisitor.cs63 bool isNil = adaptor.IsNil( t ); in Visit()
DRewriteRuleSubtreeStream.cs87 while (adaptor.IsNil(tree) && adaptor.GetChildCount(tree) == 1) in NextNode()
DCommonErrorNode.cs66 public override bool IsNil property in Antlr.Runtime.Tree.CommonErrorNode
/external/webrtc/webrtc/base/
Dphysicalsocketserver_unittest.cc154 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()
Dnatsocketfactory.cc119 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()
Dsocket_unittest.cc214 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()
Dvirtualsocketserver.cc126 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()
Dfirewallsocketserver.cc164 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/
DAntlr.Runtime.Tree.pas111 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/
DDebugTreeAdaptor.cs112 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/
Dteststunserver.h43 if (fake_stun_addr_.IsNil()) { in OnBindingRequest()
Dport_unittest.cc292 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/
DDebugTreeAdaptor.cs145 public virtual bool IsNil( object tree ) in IsNil() method in Antlr.Runtime.Debug.DebugTreeAdaptor
147 return adaptor.IsNil( tree ); in IsNil()

123