Searched defs:is_null (Results 1 - 21 of 21) sorted by relevance

/external/libmojo/mojo/public/cpp/bindings/
H A Dnative_struct_data_view.h22 bool is_null() const { return !data_; } function in class:mojo::NativeStructDataView
H A Dstring_data_view.h22 bool is_null() const { return !data_; } function in class:mojo::StringDataView
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 Darray_data_view.h205 bool is_null() const { return !this->data_; } function in class:mojo::ArrayDataView
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...]
/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();
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/
H A Dstable_partition.pass.cpp287 struct is_null struct
299 Iter r = std::stable_partition(Iter(array), Iter(array+size), is_null());
/external/libchrome/base/
H A Dcallback_internal.h106 bool is_null() const { return !bind_state_; } function in class:base::internal::CallbackBase
107 explicit operator bool() const { return !is_null(); }
/external/libchrome/base/profiler/
H A Dtracked_time.cc66 bool TrackedTime::is_null() const { return ms_ == 0; } function in class:tracked_objects::TrackedTime
/external/libchrome/base/threading/
H A Dplatform_thread.h68 bool is_null() const { function in class:base::PlatformThreadRef
92 bool is_null() const { function in class:base::PlatformThreadHandle
/external/libmojo/base/android/
H A Dscoped_java_ref.h61 bool is_null() const { return obj_ == nullptr; } function in class:base::android::JavaRef
/external/libmojo/mojo/public/cpp/bindings/lib/
H A Dbindings_internal.h121 bool is_null() const { return offset == 0; } function in struct:mojo::internal::Pointer
/external/tensorflow/tensorflow/stream_executor/
H A Ddevice_memory.h58 bool is_null() const { return opaque_ == nullptr; } function in class:perftools::gputools::DeviceMemoryBase
59 bool operator==(std::nullptr_t other) const { return is_null(); }
60 bool operator!=(std::nullptr_t other) const { return !is_null(); }
237 bool operator==(std::nullptr_t other) const { return wrapped_.is_null(); }
238 bool operator!=(std::nullptr_t other) const { return !wrapped_.is_null(); }
/external/v8/src/
H A Dhandles.h46 V8_INLINE bool is_null() const { return location_ == nullptr; } function in class:v8::internal::HandleBase
240 bool is_null() const { return location_ == nullptr; } function in class:v8::internal::final
/external/libchrome/base/time/
H A Dtime.h326 bool is_null() const { function in class:base::time_internal::TimeBase
/external/python/cpython2/Lib/plat-mac/
H A Dgensuitemodule.py727 has_arg = (not is_null(accepts))
752 if not is_null(returns):
1147 def is_null(data): function
/external/python/cpython2/Tools/gdb/
H A Dlibpython.py176 if self.is_null():
227 def is_null(self): member in class:PyObjectPtr
608 if pyop_m_self.is_null():
658 if not pyop_value.is_null():
855 if not pyop_value.is_null():
/external/python/cpython3/Tools/gdb/
H A Dlibpython.py207 if self.is_null():
254 def is_null(self): member in class:PyObjectPtr
620 if pyop_m_self.is_null():
676 if not pyop_value.is_null():
865 if not pyop_value.is_null():
/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh711 inline bool is_null (void) const { return 0 == *this; } function in struct:OT::Offset
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli803 (** [is_null v] returns [true] if the value [v] is the null (zero) value.
805 val is_null : llvalue -> bool var
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
H A Dllvm.mli659 (** [is_null v] returns [true] if the value [v] is the null (zero) value.
661 val is_null : llvalue -> bool var

Completed in 569 milliseconds