/external/chromium/base/ |
D | callback_unittest.cc | 86 EXPECT_TRUE(c0.is_null()); in TEST_F() 87 EXPECT_TRUE(c1.is_null()); in TEST_F() 88 EXPECT_TRUE(c2.is_null()); in TEST_F() 89 EXPECT_TRUE(c3.is_null()); in TEST_F() 90 EXPECT_TRUE(c4.is_null()); in TEST_F() 91 EXPECT_TRUE(c5.is_null()); in TEST_F() 92 EXPECT_TRUE(c6.is_null()); in TEST_F() 96 EXPECT_TRUE(null_callback_.is_null()); in TEST_F() 97 EXPECT_FALSE(callback_a_.is_null()); in TEST_F() 98 EXPECT_FALSE(callback_b_.is_null()); in TEST_F() [all …]
|
D | nullable_string16.h | 17 explicit NullableString16(bool is_null) : is_null_(is_null) { } in NullableString16() argument 18 NullableString16(const string16& string, bool is_null) in NullableString16() argument 19 : string_(string), is_null_(is_null) { in NullableString16() 23 bool is_null() const { return is_null_; } in is_null() function
|
D | message_loop.cc | 430 if (!pending_task.delayed_run_time.is_null()) { in DeletePendingTasks() 484 if (high_resolution_timer_expiration_.is_null()) { in PostTask_Helper() 504 if (!high_resolution_timer_expiration_.is_null()) { in PostTask_Helper() 572 if (!pending_task.delayed_run_time.is_null()) { in DoWork()
|
D | callback_internal.cc | 10 bool CallbackBase::is_null() const { in is_null() function in base::internal::CallbackBase
|
D | message_pump_default.cc | 41 if (delayed_work_time_.is_null()) { in Run()
|
D | message_pump_win.cc | 65 if (delayed_work_time_.is_null()) in GetCurrentDelay() 213 if (more_work_is_plausible && delayed_work_time_.is_null()) in DoRunLoop() 312 if (!delayed_work_time_.is_null()) { in HandleTimerMessage()
|
D | callback_internal.h | 60 bool is_null() const;
|
/external/v8/src/ |
D | compiler.cc | 105 closure_.is_null() && in DisableOptimization() 122 (shared_info().is_null() || !shared_info()->optimization_disabled()); in ShouldSelfOptimize() 308 if (!optimized_code.is_null()) { in MakeCrankshaftCode() 348 if (!info->shared_info().is_null()) { in MakeCodeForLiveEdit() 362 ASSERT(!isolate->global_context().is_null()); in MakeFunctionInfo() 417 ASSERT(!info->code().is_null()); in MakeFunctionInfo() 498 if (result.is_null()) { in Compile() 513 if (!script_name.is_null()) { in Compile() 519 script->set_data(script_data.is_null() ? HEAP->undefined_value() in Compile() 531 if (extension == NULL && !result.is_null()) { in Compile() [all …]
|
D | compiler.h | 141 return !closure().is_null() && (closure()->context()->global() != NULL); in has_global_object() 191 ASSERT(!script_.is_null()); in Initialize() 195 if (!shared_info_.is_null()) { in Initialize()
|
D | messages.cc | 82 Handle<Object> stack_trace_handle = stack_trace.is_null() in MakeMessageObject() 86 Handle<Object> stack_frames_handle = stack_frames.is_null() in MakeMessageObject()
|
D | json-parser.h | 183 if (result.is_null() || c0_ != kEndOfString) { in ParseJson() 299 if (key.is_null() || c0_ != ':') return ReportUnexpectedCharacter(); in ParseJsonObject() 302 if (value.is_null()) return ReportUnexpectedCharacter(); in ParseJsonObject() 333 if (element.is_null()) return ReportUnexpectedCharacter(); in ParseJsonArray()
|
D | ic.cc | 730 if (code.is_null()) return; in UpdateCaches() 830 if (!stub.is_null()) { in Load() 854 if (!stub.is_null()) { in Load() 875 if (!stub.is_null()) { in Load() 1087 ASSERT(!code.is_null()); in Load() 1099 ASSERT(!code.is_null()); in Load() 1113 ASSERT(!code.is_null()); in Load() 1184 if (!stub.is_null()) set_target(*stub); in Load() 1488 ASSERT(!new_receiver_map.is_null()); in AddOneReceiverMapIfMissing() 1490 if (!receiver_maps->at(current).is_null() && in AddOneReceiverMapIfMissing() [all …]
|
/external/v8/test/cctest/ |
D | test-compiler.cc | 138 if (fun.is_null()) return -1; in Inc() 157 if (fun.is_null()) return -1; in Add() 178 if (fun.is_null()) return -1; in Abs() 199 if (fun.is_null()) return -1; in Sum() 222 if (fun.is_null()) return; in TEST() 255 CHECK(!fun.is_null()); in TEST() 270 CHECK(!fun.is_null()); in TEST() 293 CHECK(!fun0.is_null()); in TEST()
|
/external/chromium/chrome/browser/net/ |
D | load_timing_observer.cc | 183 if (!it->second.connect_start.is_null()) { in OnAddURLRequestEntry() 187 if (!it->second.connect_end.is_null()) in OnAddURLRequestEntry() 189 if (!it->second.dns_start.is_null()) in OnAddURLRequestEntry() 191 if (!it->second.dns_end.is_null()) in OnAddURLRequestEntry() 193 if (!it->second.ssl_start.is_null()) in OnAddURLRequestEntry() 195 if (!it->second.ssl_end.is_null()) in OnAddURLRequestEntry() 263 !last_connect_job_record_.dns_start.is_null()) { in OnAddHTTPStreamJobEntry() 279 !socket_it->second.ssl_start.is_null()) { in OnAddHTTPStreamJobEntry()
|
D | pref_proxy_config_service_unittest.cc | 273 is_null = other.is_null; in operator =() 290 bool is_null; member 331 if (GetParam().is_null) { in TEST_P()
|
/external/chromium/net/socket_stream/ |
D | socket_stream_metrics.cc | 37 if (!wait_start_time_.is_null()) in OnStartConnection() 73 if (!connect_establish_time_.is_null()) { in OnClose()
|
/external/chromium/base/files/ |
D | file_path_watcher_win.cc | 142 if (file_exists && (last_modified_.is_null() || in OnObjectSignaled() 147 } else if (file_exists && !first_notification_.is_null()) { in OnObjectSignaled() 168 } else if (!file_exists && !last_modified_.is_null()) { in OnObjectSignaled()
|
/external/chromium/base/metrics/ |
D | stats_counters.cc | 96 return Enabled() && !start_time_.is_null() && stop_time_.is_null(); in Running()
|
/external/chromium/chrome/browser/extensions/ |
D | extension_bookmark_helpers.cc | 35 if (!t.is_null()) in GetNodeDictionary() 41 if (!node->date_added().is_null()) { in GetNodeDictionary()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebString.h | 130 if (s.is_null()) in WebString() 138 if (s.is_null())
|
/external/chromium/chrome/browser/policy/ |
D | cloud_policy_controller.cc | 253 !cache_->last_policy_refresh_time().is_null()) { in SendPolicyRequest() 307 if (last_refresh.is_null()) in SetState() 368 if (!refresh_at.is_null()) { in SetState()
|
/external/chromium/chrome/browser/prerender/ |
D | prerender_observer.cc | 49 if (!pplt_load_start_.is_null()) { in DidStopLoading()
|
/external/chromium/chrome/browser/webdata/ |
D | logins_table.cc | 221 delete_end.is_null() ? in RemoveLoginsCreatedBetween() 235 delete_end.is_null() ? in RemoveLoginsCreatedBetween()
|
/external/chromium/chrome/browser/sync/notifier/ |
D | registration_manager.cc | 34 DCHECK(!last_registration_request.is_null()); in DoRegister() 180 DCHECK(!status->last_registration_request.is_null()); in TryRegisterType()
|
/external/chromium/net/spdy/ |
D | spdy_stream.cc | 588 if (send_time_.is_null() || recv_first_byte_time_.is_null() || in UpdateHistograms() 589 recv_last_byte_time_.is_null()) in UpdateHistograms()
|