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

1 2 3 4 5 6 7 8 91011>>

  /external/libchrome/base/strings/
nullable_string16.h 21 NullableString16(const string16& string, bool is_null)
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();
nullable_string16.cc 14 return value.is_null() ? out << "(null)" : out << UTF16ToUTF8(value.string());
nullable_string16_unittest.cc 13 EXPECT_TRUE(s.is_null());
  /external/libchrome/base/synchronization/
lock.cc 19 DCHECK(owning_thread_ref_.is_null());
32 DCHECK(owning_thread_ref_.is_null());
  /external/libchrome/base/
callback_unittest.cc 70 EXPECT_TRUE(c0.is_null());
71 EXPECT_TRUE(c1.is_null());
72 EXPECT_TRUE(c2.is_null());
73 EXPECT_TRUE(c3.is_null());
74 EXPECT_TRUE(c4.is_null());
75 EXPECT_TRUE(c5.is_null());
76 EXPECT_TRUE(c6.is_null());
80 EXPECT_TRUE(null_callback_.is_null());
81 EXPECT_FALSE(callback_a_.is_null());
82 EXPECT_FALSE(callback_b_.is_null());
    [all...]
callback_helpers.cc 17 if (!closure_.is_null())
32 if (!old_closure.is_null())
tracking_info.h 39 return delayed_run_time.is_null()
cancelable_callback.h 69 DCHECK(!callback.is_null());
84 return callback_.is_null();
90 DCHECK(!callback.is_null());
callback_list.h 90 if (!list_->removal_callback_.is_null())
106 DCHECK(!cb.is_null());
146 while ((list_iter_ != list_->callbacks_.end()) && list_iter_->is_null())
181 if ((*it).is_null()) {
189 if (updated && !removal_callback_.is_null())
callback_internal.h 66 bool is_null() const { return bind_state_.get() == NULL; } function in class:base::internal::CallbackBase
67 explicit operator bool() const { return !is_null(); }
  /external/v8/src/
allocation-site-scopes.cc 16 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() &&
prototype.h 41 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_->IsJSProxy())
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
struct_ptr.h 62 bool is_null() const { return ptr_ == nullptr; } function in class:mojo::StructPtr
79 StructPtr Clone() const { return is_null() ? StructPtr() : ptr_->Clone(); }
82 if (is_null() || other.is_null())
83 return is_null() && other.is_null();
152 bool is_null() const { return is_null_; } function in class:mojo::InlinedStructPtr
170 return is_null() ? InlinedStructPtr() : value_.Clone();
173 if (is_null() || other.is_null())
    [all...]
string.h 84 bool is_null() const { return is_null_; } function in class:mojo::String
128 return a.is_null() == b.is_null() && a.get() == b.get();
131 return !b.is_null() && a == b.get();
134 return !a.is_null() && a.get() == b;
151 if (a.is_null())
152 return !b.is_null();
153 if (b.is_null())
string_traits_standard.h 15 static bool IsNull(const String& input) { return input.is_null(); }
  /external/libmojo/mojo/public/cpp/bindings/tests/
string_unittest.cc 17 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/
swaptest.cc 27 if (!render_func_.is_null())
glinterfacetest.h 23 virtual bool IsDrawTest() const { return !render_func_.is_null(); }
  /external/libmojo/base/message_loop/
message_pump_android.cc 64 if (!next_delayed_work_time.is_null()) {
107 DCHECK(system_message_handler_obj_.is_null());
118 if (!system_message_handler_obj_.is_null()) {
135 DCHECK(!system_message_handler_obj_.is_null());
145 DCHECK(!system_message_handler_obj_.is_null());
  /external/libchrome/base/profiler/
tracked_time_unittest.cc 25 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/
message_loop_task_runner.cc 29 DCHECK(!task.is_null()) << from_here.ToString();
37 DCHECK(!task.is_null()) << from_here.ToString();
  /external/libmojo/base/android/
context_utils.cc 30 DCHECK(g_application_context.Get().is_null());
37 DCHECK(!g_application_context.Get().is_null());
  /external/libbrillo/brillo/dbus/
dbus_method_invoker.cc 12 if (!callback.is_null()) {
  /external/libchrome/base/threading/
thread_checker_impl.cc 29 if (valid_thread_id_.is_null()) {
post_task_and_reply_impl.cc 79 CHECK(!task.is_null()) << from_here.ToString();
80 CHECK(!reply.is_null()) << from_here.ToString();

Completed in 385 milliseconds

1 2 3 4 5 6 7 8 91011>>