/external/libchrome/base/ |
D | callback_unittest.cc | 93 EXPECT_TRUE(c0.is_null()); in TEST_F() 94 EXPECT_TRUE(c1.is_null()); in TEST_F() 95 EXPECT_TRUE(c2.is_null()); in TEST_F() 96 EXPECT_TRUE(c3.is_null()); in TEST_F() 97 EXPECT_TRUE(c4.is_null()); in TEST_F() 98 EXPECT_TRUE(c5.is_null()); in TEST_F() 99 EXPECT_TRUE(c6.is_null()); in TEST_F() 103 EXPECT_TRUE(null_callback_.is_null()); in TEST_F() 104 EXPECT_FALSE(callback_a_.is_null()); in TEST_F() 105 EXPECT_FALSE(callback_b_.is_null()); in TEST_F() [all …]
|
D | callback_list.h | 91 if (!list_->removal_callback_.is_null()) in ~Subscription() 107 DCHECK(!cb.is_null()); in Add() 147 while ((list_iter_ != list_->callbacks_.end()) && list_iter_->is_null()) in GetNext() 182 if ((*it).is_null()) { in Compact() 190 if (updated && !removal_callback_.is_null()) in Compact()
|
D | callback_helpers.cc | 19 if (!closure_.is_null()) in ~ScopedClosureRunner() 25 if (!old_closure.is_null()) in Reset() 32 if (!old_closure.is_null()) in Reset()
|
D | cancelable_callback.h | 67 DCHECK(!callback.is_null()); in CancelableCallback() 82 return callback_.is_null(); in IsCancelled() 88 DCHECK(!callback.is_null()); in Reset()
|
/external/libweave/third_party/chromium/base/ |
D | callback_unittest.cc | 94 EXPECT_TRUE(c0.is_null()); in TEST_F() 95 EXPECT_TRUE(c1.is_null()); in TEST_F() 96 EXPECT_TRUE(c2.is_null()); in TEST_F() 97 EXPECT_TRUE(c3.is_null()); in TEST_F() 98 EXPECT_TRUE(c4.is_null()); in TEST_F() 99 EXPECT_TRUE(c5.is_null()); in TEST_F() 100 EXPECT_TRUE(c6.is_null()); in TEST_F() 104 EXPECT_TRUE(null_callback_.is_null()); in TEST_F() 105 EXPECT_FALSE(callback_a_.is_null()); in TEST_F() 106 EXPECT_FALSE(callback_b_.is_null()); in TEST_F() [all …]
|
D | callback_list.h | 91 if (!list_->removal_callback_.is_null()) in ~Subscription() 107 DCHECK(!cb.is_null()); in Add() 147 while ((list_iter_ != list_->callbacks_.end()) && list_iter_->is_null()) in GetNext() 182 if ((*it).is_null()) { in Compact() 190 if (updated && !removal_callback_.is_null()) in Compact()
|
/external/v8/src/ |
D | prototype.h | 40 CHECK(!handle_.is_null()); in did_jump_to_prototype_chain_() 73 DCHECK(!handle_.is_null()); in HasAccess() 83 DCHECK(handle_.is_null()); in GetCurrent() 89 DCHECK(!iterator.handle_.is_null()); in GetCurrent() 95 if (handle_.is_null() && object_->IsJSProxy()) { in Advance() 99 } else if (!handle_.is_null() && handle_->IsJSProxy()) { in Advance() 110 if (handle_.is_null()) { in AdvanceIgnoringProxies() 116 if (handle_.is_null()) { in AdvanceIgnoringProxies() 128 DCHECK(!(handle_.is_null() && object_->IsJSProxy())); in AdvanceFollowingProxies() 134 if (handle_.is_null() || !handle_->IsJSProxy()) { in AdvanceFollowingProxies() [all …]
|
D | allocation-site-scopes.cc | 13 if (top().is_null()) { in EnterNewScope() 23 DCHECK(!current().is_null()); in EnterNewScope() 34 DCHECK(!scope_site.is_null()); in EnterNewScope() 42 if (!object.is_null()) { in ExitScope() 43 bool top_level = !scope_site.is_null() && in ExitScope()
|
D | property-descriptor.cc | 171 if (!enumerable.is_null()) { in ToPropertyDescriptor() 183 if (!configurable.is_null()) { in ToPropertyDescriptor() 194 if (!value.is_null()) desc->set_value(value); in ToPropertyDescriptor() 204 if (!writable.is_null()) desc->set_writable(writable->BooleanValue()); in ToPropertyDescriptor() 212 if (!getter.is_null()) { in ToPropertyDescriptor() 229 if (!setter.is_null()) { in ToPropertyDescriptor()
|
D | property-descriptor.h | 76 bool has_value() const { return !value_.is_null(); } in has_value() 87 bool has_get() const { return !get_.is_null(); } in has_get() 91 bool has_set() const { return !set_.is_null(); } in has_set()
|
D | compiler.cc | 103 return parse_info_ && !parse_info_->shared_info().is_null(); in has_shared_info() 108 return parse_info_ && !parse_info_->context().is_null(); in has_context() 238 if (feedback_vector_.is_null()) { in EnsureFeedbackVector() 462 if (!info()->code().is_null()) { in CreateGraph() 545 if (!info()->code().is_null()) { in OptimizeGraph() 622 if (!info()->code().is_null()) { in GenerateCode() 646 if (optimized_code.is_null()) { in GenerateCode() 798 if (info->closure().is_null()) { in UseIgnition() 920 if (!shared_info.is_null()) { in Renumber() 1181 if (GetUnoptimizedCodeCommon(info).is_null()) { in CompileForDebugging() [all …]
|
/external/libchrome/base/strings/ |
D | nullable_string16.h | 21 NullableString16(const string16& string, bool is_null) in NullableString16() argument 22 : string_(string), is_null_(is_null) { in NullableString16() 26 bool is_null() const { return is_null_; } in is_null() function 34 return a.is_null() == b.is_null() && a.string() == b.string();
|
/external/llvm/test/CodeGen/X86/ |
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/libchrome/base/profiler/ |
D | tracked_time_unittest.cc | 25 EXPECT_FALSE(some.is_null()); in TEST() 56 EXPECT_FALSE(ticks_before.is_null()); in TEST() 63 EXPECT_FALSE(ticks_after.is_null()); in TEST() 78 EXPECT_TRUE(track_now.is_null()); in TEST() 87 EXPECT_FALSE(ticks_before.is_null()); in TEST() 96 EXPECT_FALSE(ticks_after.is_null()); in TEST()
|
/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/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/libweave/src/ |
D | access_black_list_manager_impl_unittest.cc | 46 if (!callback.is_null()) in SetUp() 82 if (!callback.is_null()) in TEST_F() 99 if (!callback.is_null()) in TEST_F() 119 if (!callback.is_null()) in TEST_F() 145 if (!callback.is_null()) in SetUp()
|
D | access_black_list_manager_impl.cc | 61 if (!callback.is_null()) in Save() 96 if (!callback.is_null()) { in Block() 105 if (!callback.is_null()) { in Block() 122 if (!callback.is_null()) { in Unblock()
|
/external/v8/src/wasm/ |
D | wasm-module.cc | 73 if (function_code_[index].is_null()) { in GetFunctionCode() 99 if (functions && !function_table.is_null()) { in Link() 248 if (memory.is_null() && min_mem_size_log2 > kMaxMemSize) { in Instantiate() 270 if (!memory.is_null()) { in Instantiate() 341 if (!ffi.is_null()) { in Instantiate() 343 if (!result.is_null()) { in Instantiate() 366 if (code.is_null()) { in Instantiate() 375 if (!code.is_null()) { in Instantiate() 474 if (!code.is_null()) { in CompileAndRunWasmModule() 483 if (!main_code.is_null()) { in CompileAndRunWasmModule()
|
/external/v8/src/debug/ |
D | debug-evaluate.cc | 81 if (!maybe_result.is_null() && !FLAG_debug_eval_readonly_locals) { in Local() 236 if (innermost_context_.is_null()) { in ContextBuilder() 239 DCHECK(!innermost_context_.is_null()); in ContextBuilder() 247 if (!element.original_context.is_null() && in UpdateValues() 248 !element.cloned_context.is_null()) { in UpdateValues() 255 if (!element.materialized_object.is_null()) { in UpdateValues() 285 if (!inner_context->is_null()) { in RecordContextsInChain() 322 if (holder.is_null()) return MaybeHandle<Object>(); in LoadFromContext() 364 if (holder.is_null()) return; in StoreToContext()
|
/external/libchrome/base/files/ |
D | file_path_watcher_fsevents.cc | 89 DCHECK(!callback.is_null()); in Watch() 90 DCHECK(callback_.is_null()); in Watch() 162 DCHECK(callback_.is_null()) in ~FilePathWatcherFSEvents() 181 if (is_cancelled() || callback_.is_null()) { in DispatchEvents() 263 if (!callback_.is_null()) { in ReportError()
|
/external/libchrome/base/synchronization/ |
D | lock.cc | 19 DCHECK(owning_thread_ref_.is_null()); in ~Lock() 32 DCHECK(owning_thread_ref_.is_null()); in CheckUnheldAndMark()
|
/external/llvm/test/Transforms/CorrelatedValuePropagation/ |
D | non-null.ll | 109 %is_null = icmp eq i8* %arg1, null 110 br i1 %is_null, label %null, label %non_null 127 %is_null = icmp eq i8* %arg1, null 128 br i1 %is_null, label %null, label %non_null 148 %is_null = icmp eq i8* %arg1, null 149 br i1 %is_null, label %null, label %non_null
|
/external/libchrome/base/message_loop/ |
D | message_loop_task_runner.cc | 29 DCHECK(!task.is_null()) << from_here.ToString(); in PostDelayedTask() 37 DCHECK(!task.is_null()) << from_here.ToString(); in PostNonNestableDelayedTask()
|