Searched refs:is_null (Results 1 - 25 of 295) sorted by relevance

1234567891011>>

/external/libchrome/base/strings/
H A Dnullable_string16.h21 NullableString16(const string16& string, bool is_null) argument
22 : string_(string), is_null_(is_null) {
26 bool is_null() const { return is_null_; } function in class:base::NullableString16
34 return a.is_null() == b.is_null() && a.string() == b.string();
H A Dnullable_string16.cc14 return value.is_null() ? out << "(null)" : out << UTF16ToUTF8(value.string());
H A Dnullable_string16_unittest.cc13 EXPECT_TRUE(s.is_null());
/external/libchrome/base/process/
H A Dprocess_info_unittest.cc16 ASSERT_FALSE(creation_time.is_null());
H A Dprocess_info_linux.cc24 if (boot_time.is_null())
/external/libchrome/base/synchronization/
H A Dlock.cc19 DCHECK(owning_thread_ref_.is_null());
32 DCHECK(owning_thread_ref_.is_null());
/external/libchrome/base/
H A Dcallback_unittest.cc63 EXPECT_TRUE(c0.is_null());
64 EXPECT_TRUE(c1.is_null());
65 EXPECT_TRUE(c2.is_null());
66 EXPECT_TRUE(c3.is_null());
67 EXPECT_TRUE(c4.is_null());
68 EXPECT_TRUE(c5.is_null());
69 EXPECT_TRUE(c6.is_null());
73 EXPECT_TRUE(null_callback_.is_null());
74 EXPECT_FALSE(callback_a_.is_null());
75 EXPECT_FALSE(callback_b_.is_null());
[all...]
H A Dcallback_helpers.cc17 if (!closure_.is_null())
32 if (!old_closure.is_null())
H A Dtracking_info.h39 return delayed_run_time.is_null()
H A Dcancelable_callback.h71 DCHECK(!callback.is_null());
86 return callback_.is_null();
92 DCHECK(!callback.is_null());
/external/v8/src/
H A Dallocation-site-scopes.cc16 if (top().is_null()) {
26 DCHECK(!current().is_null());
37 DCHECK(!scope_site.is_null());
45 if (!object.is_null()) {
46 bool top_level = !scope_site.is_null() &&
H A Dprototype.h41 CHECK(!handle_.is_null());
91 DCHECK(!handle_.is_null());
101 DCHECK(handle_.is_null());
107 DCHECK(!iterator.handle_.is_null());
113 if (handle_.is_null() && object_->IsJSProxy()) {
117 } else if (!handle_.is_null() && handle_->IsJSProxy()) {
126 Object* object = handle_.is_null() ? object_ : *handle_;
134 if (handle_.is_null()) {
144 DCHECK(!(handle_.is_null() && object_->IsJSProxy()));
155 if (handle_.is_null() || !handle
[all...]
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dstring_unittest.cc17 EXPECT_FALSE(s.is_null());
22 EXPECT_TRUE(s.is_null());
28 EXPECT_TRUE(s.is_null());
33 EXPECT_FALSE(s.is_null());
35 EXPECT_TRUE(s.is_null());
40 EXPECT_FALSE(s.is_null());
52 EXPECT_FALSE(t.is_null());
54 EXPECT_FALSE(s.is_null());
104 EXPECT_TRUE(str1.is_null());
117 EXPECT_TRUE(str1.is_null());
[all...]
/external/autotest/client/deps/glbench/src/
H A Dswaptest.cc27 if (!render_func_.is_null())
H A Dglinterfacetest.h23 virtual bool IsDrawTest() const { return !render_func_.is_null(); }
/external/libmojo/mojo/public/cpp/bindings/
H A Dmap_data_view.h28 bool is_null() const { function in class:mojo::MapDataView
29 DCHECK_EQ(keys_.is_null(), values_.is_null());
30 return keys_.is_null();
H A Dstring_data_view.h22 bool is_null() const { return !data_; } function in class:mojo::StringDataView
H A Dstruct_ptr.h64 bool is_null() const { return !ptr_; } function in class:mojo::StructPtr
81 StructPtr Clone() const { return is_null() ? StructPtr() : ptr_->Clone(); }
86 if (is_null() || other.is_null())
87 return is_null() && other.is_null();
93 if (is_null())
98 explicit operator bool() const { return !is_null(); }
158 bool is_null() const { return state_ == NIL; } function in class:mojo::InlinedStructPtr
176 return is_null()
[all...]
H A Dnative_struct_data_view.h22 bool is_null() const { return !data_; } function in class:mojo::NativeStructDataView
/external/libchrome/base/profiler/
H A Dtracked_time_unittest.cc25 EXPECT_FALSE(some.is_null());
56 EXPECT_FALSE(ticks_before.is_null());
63 EXPECT_FALSE(ticks_after.is_null());
78 EXPECT_TRUE(track_now.is_null());
87 EXPECT_FALSE(ticks_before.is_null());
96 EXPECT_FALSE(ticks_after.is_null());
/external/libchrome/base/message_loop/
H A Dmessage_loop_task_runner.cc31 DCHECK(!task.is_null()) << from_here.ToString();
40 DCHECK(!task.is_null()) << from_here.ToString();
/external/libmojo/base/android/
H A Dcontext_utils.cc30 DCHECK(g_application_context.Get().is_null());
37 DCHECK(!g_application_context.Get().is_null());
/external/libbrillo/brillo/dbus/
H A Ddbus_method_invoker.cc12 if (!callback.is_null()) {
/external/libmojo/base/message_loop/
H A Dmessage_pump_android.cc81 if (!next_delayed_work_time.is_null()) {
127 DCHECK(system_message_handler_obj_.is_null());
151 if (!system_message_handler_obj_.is_null()) {
168 DCHECK(!system_message_handler_obj_.is_null());
177 DCHECK(!system_message_handler_obj_.is_null());
/external/libchrome/base/threading/
H A Dthread_checker_impl.cc49 if (!thread_id_.is_null())

Completed in 444 milliseconds

1234567891011>>