HomeSort by relevance Sort by last modified time
    Searched refs:is_null (Results 1 - 25 of 321) 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/process/
process_info_unittest.cc 16 ASSERT_FALSE(creation_time.is_null());
process_info_linux.cc 24 if (boot_time.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 63 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...]
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 71 DCHECK(!callback.is_null());
86 return callback_.is_null();
92 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())
  /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/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/mojo/public/cpp/bindings/
map_data_view.h 28 bool is_null() const { function in class:mojo::MapDataView
29 DCHECK_EQ(keys_.is_null(), values_.is_null());
30 return keys_.is_null();
string_data_view.h 22 bool is_null() const { return !data_; } function in class:mojo::StringDataView
struct_ptr.h 64 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() ? InlinedStructPtr() : value_.Clone()
    [all...]
native_struct_data_view.h 22 bool is_null() const { return !data_; } function in class:mojo::NativeStructDataView
  /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 31 DCHECK(!task.is_null()) << from_here.ToString();
40 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/libmojo/base/message_loop/
message_pump_android.cc 81 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());

Completed in 629 milliseconds

1 2 3 4 5 6 7 8 91011>>