/external/libchrome/base/ |
D | callback_unittest.cc | 63 EXPECT_TRUE(c0.is_null()); in TEST_F() 64 EXPECT_TRUE(c1.is_null()); in TEST_F() 65 EXPECT_TRUE(c2.is_null()); in TEST_F() 66 EXPECT_TRUE(c3.is_null()); in TEST_F() 67 EXPECT_TRUE(c4.is_null()); in TEST_F() 68 EXPECT_TRUE(c5.is_null()); in TEST_F() 69 EXPECT_TRUE(c6.is_null()); in TEST_F() 73 EXPECT_TRUE(null_callback_.is_null()); in TEST_F() 74 EXPECT_FALSE(callback_a_.is_null()); in TEST_F() 75 EXPECT_FALSE(callback_b_.is_null()); in TEST_F() [all …]
|
D | callback_list.h | 88 if (!list_->removal_callback_.is_null()) in ~Subscription() 104 DCHECK(!cb.is_null()); in Add() 144 while ((list_iter_ != list_->callbacks_.end()) && list_iter_->is_null()) in GetNext() 179 if ((*it).is_null()) { in Compact() 187 if (updated && !removal_callback_.is_null()) in Compact()
|
/external/llvm/test/CodeGen/X86/ |
D | implicit-null-checks.mir | 10 br i1 undef, label %is_null, label %not_null, !make.implicit !0 12 is_null: 29 br i1 undef, label %is_null, label %not_null, !make.implicit !0 31 is_null: 48 br i1 undef, label %is_null, label %not_null, !make.implicit !0 50 is_null: 67 br i1 undef, label %is_null, label %not_null, !make.implicit !0 69 is_null: 96 # CHECK-NEXT: %eax = FAULTING_LOAD_OP %bb.3.is_null, {{[0-9]+}}, killed %eax, killed %rdi, 1, _,… 101 successors: %bb.3.is_null, %bb.1.not_null [all …]
|
D | implicit-null-check-negative.ll | 13 br i1 %c, label %is_null, label %not_null, !make.implicit !0 15 is_null: 27 br i1 %c, label %is_null, label %not_null, !make.implicit !0 29 is_null: 44 br i1 %c, label %is_null, label %not_null 46 is_null: 58 br i1 %c, label %is_null, label %not_null, !make.implicit !0 60 is_null: 84 br i1 %c, label %is_null, label %not_null, !make.implicit !0 86 is_null:
|
D | implicit-null-check.ll | 24 br i1 %c, label %is_null, label %not_null, !make.implicit !0 26 is_null: 45 br i1 %c, label %is_null, label %not_null, !make.implicit !0 47 is_null: 68 br i1 %c, label %is_null, label %not_null, !make.implicit !0 70 is_null: 92 br i1 %c, label %is_null, label %not_null, !make.implicit !0 94 is_null: 120 br i1 %c, label %is_null, label %not_null, !make.implicit !0 122 is_null:
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | implicit-null-checks.mir | 10 br i1 undef, label %is_null, label %not_null, !make.implicit !0 12 is_null: 29 br i1 undef, label %is_null, label %not_null, !make.implicit !0 31 is_null: 48 br i1 undef, label %is_null, label %not_null, !make.implicit !0 50 is_null: 67 br i1 undef, label %is_null, label %not_null, !make.implicit !0 69 is_null: 85 br i1 undef, label %is_null, label %not_null, !make.implicit !0 87 is_null: [all …]
|
D | implicit-null-check-negative.ll | 13 br i1 %c, label %is_null, label %not_null, !make.implicit !0 15 is_null: 27 br i1 %c, label %is_null, label %not_null, !make.implicit !0 29 is_null: 43 br i1 %c, label %is_null, label %not_null, !make.implicit !0 45 is_null: 60 br i1 %c, label %is_null, label %not_null 62 is_null: 74 br i1 %c, label %is_null, label %not_null, !make.implicit !0 76 is_null: [all …]
|
D | implicit-null-check.ll | 24 br i1 %c, label %is_null, label %not_null, !make.implicit !0 26 is_null: 45 br i1 %c, label %is_null, label %not_null, !make.implicit !0 47 is_null: 68 br i1 %c, label %is_null, label %not_null, !make.implicit !0 70 is_null: 92 br i1 %c, label %is_null, label %not_null, !make.implicit !0 94 is_null: 120 br i1 %c, label %is_null, label %not_null, !make.implicit !0 122 is_null: [all …]
|
D | implicit-null-chk-reg-rewrite.mir | 6 br i1 undef, label %is_null, label %not_null, !make.implicit !0 8 is_null: 46 bb.2.is_null:
|
/external/libchrome/mojo/public/cpp/bindings/ |
D | struct_ptr.h | 64 bool is_null() const { return !ptr_; } in is_null() function 81 StructPtr Clone() const { return is_null() ? StructPtr() : ptr_->Clone(); } in Clone() 87 if (is_null() || other.is_null()) in Equals() 88 return is_null() && other.is_null(); in Equals() 94 if (is_null()) in Hash() 99 explicit operator bool() const { return !is_null(); } 163 bool is_null() const { return state_ == NIL; } in is_null() function 181 return is_null() ? InlinedStructPtr() : value_.Clone(); in Clone() 186 if (is_null() || other.is_null()) in Equals() 187 return is_null() && other.is_null(); in Equals() [all …]
|
D | map_data_view.h | 28 bool is_null() const { in is_null() function 29 DCHECK_EQ(keys_.is_null(), values_.is_null()); in is_null() 30 return keys_.is_null(); in is_null()
|
/external/libchrome/mojo/public/cpp/bindings/tests/ |
D | data_view_unittest.cc | 71 ASSERT_FALSE(string_data_view.is_null()); in TEST_F() 87 ASSERT_FALSE(struct_data_view.is_null()); in TEST_F() 105 ASSERT_FALSE(data_data_view.is_null()); in TEST_F() 123 ASSERT_FALSE(array_data_view.is_null()); in TEST_F() 139 ASSERT_FALSE(array_data_view.is_null()); in TEST_F() 156 ASSERT_FALSE(array_data_view.is_null()); in TEST_F() 180 ASSERT_FALSE(array_data_view.is_null()); in TEST_F() 200 ASSERT_FALSE(array_data_view.is_null()); in TEST_F() 205 ASSERT_FALSE(nested_array_data_view.is_null()); in TEST_F() 228 ASSERT_FALSE(array_data_view.is_null()); in TEST_F() [all …]
|
D | struct_unittest.cc | 54 *out_data = writer.is_null() ? nullptr : writer.data(); in SerializeStruct() 99 EXPECT_TRUE(rect.is_null()); in TEST_F() 104 EXPECT_TRUE(rect.is_null()); in TEST_F() 109 EXPECT_FALSE(rect.is_null()); in TEST_F() 114 EXPECT_TRUE(null_rect.is_null()); in TEST_F() 125 EXPECT_TRUE(clone_region.is_null()); in TEST_F() 140 EXPECT_TRUE((*clone_region->rects)[0].is_null()); in TEST_F() 167 EXPECT_TRUE(pair.is_null()); in TEST_F() 170 EXPECT_FALSE(pair.is_null()); in TEST_F() 171 EXPECT_TRUE(pair->first.is_null()); in TEST_F() [all …]
|
/external/v8/src/ |
D | prototype-inl.h | 26 CHECK(!handle_.is_null()); in PrototypeIterator() 74 DCHECK(!handle_.is_null()); in HasAccess() 83 if (handle_.is_null() && object_->IsJSProxy()) { in Advance() 87 } else if (!handle_.is_null() && handle_->IsJSProxy()) { in Advance() 96 Object* object = handle_.is_null() ? object_ : *handle_; in AdvanceIgnoringProxies() 103 if (handle_.is_null()) { in AdvanceIgnoringProxies() 111 DCHECK(!(handle_.is_null() && object_->IsJSProxy())); in AdvanceFollowingProxies() 123 if (handle_.is_null() || !handle_->IsJSProxy()) { in AdvanceFollowingProxiesIgnoringAccessChecks()
|
D | optimized-compilation-info.cc | 101 if (!shared_info_.is_null()) { in ReopenHandlesInNewHandleScope() 104 if (!closure_.is_null()) { in ReopenHandlesInNewHandleScope() 110 if (!shared_info().is_null()) { in GetDebugName() 142 return !closure().is_null(); in has_context() 150 return !closure().is_null() && (closure()->native_context() != nullptr); in has_native_context()
|
/external/llvm/test/Transforms/JumpThreading/ |
D | thread-cmp.ll | 12 br i1 %cmp, label %is_null, label %not_null 13 is_null: 39 br i1 %cmp, label %is_null, label %not_null 40 is_null: 60 br i1 %cmp, label %is_null, label %not_null 61 is_null:
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/JumpThreading/ |
D | thread-cmp.ll | 12 br i1 %cmp, label %is_null, label %not_null 13 is_null: 39 br i1 %cmp, label %is_null, label %not_null 40 is_null: 60 br i1 %cmp, label %is_null, label %not_null 61 is_null:
|
/external/libchrome/base/strings/ |
D | nullable_string16.cc | 15 NullableString16::NullableString16(const string16& string, bool is_null) { in NullableString16() argument 16 if (!is_null) in NullableString16() 30 return value.is_null() ? out << "(null)" : out << value.string(); in operator <<()
|
/external/libchrome/mojo/public/cpp/bindings/lib/ |
D | scoped_interface_endpoint_handle.cc | 45 if (!association_event_handler_.is_null()) { in Close() 102 if (association_event_handler_.is_null()) { in SetAssociationEventHandler() 194 if (!association_event_handler_.is_null()) { in OnAssociated() 207 if (!handler.is_null()) in OnAssociated() 230 if (!association_event_handler_.is_null()) { in OnPeerClosedBeforeAssociation() 244 if (!handler.is_null()) in OnPeerClosedBeforeAssociation() 261 if (!handler.is_null()) in RunAssociationEventHandler()
|
/external/tensorflow/tensorflow/stream_executor/ |
D | device_memory.h | 67 bool is_null() const { return opaque_ == nullptr; } in is_null() function 68 bool operator==(std::nullptr_t other) const { return is_null(); } 69 bool operator!=(std::nullptr_t other) const { return !is_null(); } 246 bool operator==(std::nullptr_t other) const { return wrapped_.is_null(); } 247 bool operator!=(std::nullptr_t other) const { return !wrapped_.is_null(); }
|
/external/libchrome/base/task_scheduler/ |
D | sequence_unittest.cc | 62 EXPECT_FALSE(task->sequenced_time.is_null()); in TEST() 68 EXPECT_FALSE(task->sequenced_time.is_null()); in TEST() 74 EXPECT_FALSE(task->sequenced_time.is_null()); in TEST() 85 EXPECT_FALSE(task->sequenced_time.is_null()); in TEST() 91 EXPECT_FALSE(task->sequenced_time.is_null()); in TEST()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/RewriteStatepointsForGC/ |
D | constants.ll | 60 %is_null = icmp eq i8 addrspace(1)* %p, null 61 br i1 %is_null, label %split, label %join 75 br i1 %is_null, label %early-exit, label %use 127 %is_null = icmp eq i8 addrspace(1)* %p, null 128 br i1 %is_null, label %null.crit-edge, label %not-null 147 br i1 %is_null, label %early-exit, label %use 162 %is_null = icmp eq i8 addrspace(1)* %p, null 163 br i1 %is_null, label %null.crit-edge, label %not-null 181 br i1 %is_null, label %early-exit, label %use 196 %is_null = icmp eq i8 addrspace(1)* %p, null [all …]
|
/external/llvm/test/Transforms/RewriteStatepointsForGC/ |
D | constants.ll | 59 %is_null = icmp eq i8 addrspace(1)* %p, null 60 br i1 %is_null, label %split, label %join 74 br i1 %is_null, label %early-exit, label %use 126 %is_null = icmp eq i8 addrspace(1)* %p, null 127 br i1 %is_null, label %null.crit-edge, label %not-null 146 br i1 %is_null, label %early-exit, label %use 161 %is_null = icmp eq i8 addrspace(1)* %p, null 162 br i1 %is_null, label %null.crit-edge, label %not-null 180 br i1 %is_null, label %early-exit, label %use 195 %is_null = icmp eq i8 addrspace(1)* %p, null [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SimplifyCFG/ |
D | preserve-make-implicit-on-switch-to-br.ll | 15 ; CHECK: br i1 %cond, label %is_null, label %default, !make.implicit !0 17 i64 0, label %is_null 24 is_null:
|
/external/llvm/test/Transforms/SimplifyCFG/ |
D | preserve-make-implicit-on-switch-to-br.ll | 15 ; CHECK: br i1 %cond, label %is_null, label %default, !make.implicit !0 17 i64 0, label %is_null 24 is_null:
|