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

1 2 3

  /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).
  /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).
  /external/webrtc/webrtc/p2p/base/
teststunserver.h 43 if (fake_stun_addr_.IsNil()) {
  /external/webrtc/webrtc/base/
physicalsocketserver_unittest.cc 154 EXPECT_TRUE(accept_addr.IsNil());
158 EXPECT_FALSE(client1->GetLocalAddress().IsNil());
172 ASSERT_TRUE(accept_addr.IsNil());
177 EXPECT_TRUE(accept_addr.IsNil());
181 EXPECT_FALSE(client2->GetLocalAddress().IsNil());
194 EXPECT_FALSE(accept_addr.IsNil());
socketaddress.h 51 bool IsNil() const;
firewallsocketserver.cc 164 if ((r.src.ipaddr() != src.ipaddr()) && !r.src.IsNil())
168 if ((r.dst.ipaddr() != dst.ipaddr()) && !r.dst.IsNil())
natsocketfactory.cc 119 result = socket_->Connect(server_addr_.IsNil() ? addr : server_addr_);
140 if (server_addr_.IsNil() || type_ == SOCK_STREAM) {
164 if (server_addr_.IsNil() || type_ == SOCK_STREAM) {
236 if (server_addr_.IsNil()) {
246 if (type_ == SOCK_STREAM && !server_addr_.IsNil() && !connected_) {
socket_unittest.cc 214 EXPECT_TRUE(accept_addr.IsNil());
218 EXPECT_FALSE(client->GetLocalAddress().IsNil());
230 EXPECT_FALSE(accept_addr.IsNil());
279 EXPECT_FALSE(accept_addr.IsNil());
320 EXPECT_TRUE(client->GetRemoteAddress().IsNil());
362 EXPECT_TRUE(client->GetRemoteAddress().IsNil());
366 EXPECT_TRUE(accept_addr.IsNil());
409 EXPECT_FALSE(accept_addr.IsNil());
549 EXPECT_TRUE(accepted->GetRemoteAddress().IsNil());
558 EXPECT_TRUE(client->GetRemoteAddress().IsNil());
    [all...]
virtualsocketserver.cc 126 if (!alternative_local_addr_.IsNil())
144 if (!local_addr_.IsNil()) {
168 if (!local_addr_.IsNil() && bound_) {
314 if (local_addr_.IsNil()) {
430 if (!remote_addr_.IsNil()) {
434 if (local_addr_.IsNil()) {
474 if (local_addr_.IsNil()) {
    [all...]
  /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/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);

Completed in 900 milliseconds

1 2 3