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

1 2 3 4 5

  /build/blueprint/proptools/
typeequal.go 32 if v1.IsNil() != v2.IsNil() {
35 if v1.IsNil() {
49 if v1.IsNil() != v2.IsNil() {
52 if v1.IsNil() {
clone.go 52 if !srcFieldValue.IsNil() {
66 if srcFieldValue.IsNil() {
82 if dstFieldValue.IsNil() || dstFieldValue.Elem().Type() != srcFieldValue.Type() {
94 if srcFieldValue.IsNil() {
103 if !dstFieldValue.IsNil() {
146 if fieldValue.IsNil() {
165 if fieldValue.IsNil() {
209 if srcFieldValue.IsNil() {
231 if srcFieldValue.IsNil() {
extend.go 204 if dstFieldValue.IsNil() != srcFieldValue.IsNil() {
207 if dstFieldValue.IsNil() {
232 if dstFieldValue.IsNil() != srcFieldValue.IsNil() {
235 if dstFieldValue.IsNil() {
294 if srcFieldValue.IsNil() {
309 if srcFieldValue.IsNil() {
316 if dstFieldValue.IsNil() {
325 if dstFieldValue.IsNil() {
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
deepequal.go 72 if v1.IsNil() != v2.IsNil() {
88 if v1.IsNil() || v2.IsNil() {
89 return v1.IsNil() == v2.IsNil()
102 if v1.IsNil() != v2.IsNil() {
118 if v1.IsNil() && v2.IsNil() {
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
deepequal.go 72 if v1.IsNil() != v2.IsNil() {
88 if v1.IsNil() || v2.IsNil() {
89 return v1.IsNil() == v2.IsNil()
102 if v1.IsNil() != v2.IsNil() {
118 if v1.IsNil() && v2.IsNil() {
    [all...]
  /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;
  /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).

Completed in 246 milliseconds

1 2 3 4 5