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

1 2

  /external/libmojo/mojo/public/cpp/bindings/
string_data_view.h 22 bool is_null() const { return !data_; } function in class:mojo::StringDataView
native_struct_data_view.h 22 bool is_null() const { return !data_; } function in class:mojo::NativeStructDataView
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();
array_data_view.h 205 bool is_null() const { return !this->data_; } function in class:mojo::ArrayDataView
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...]
  /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();
  /external/libchrome/base/profiler/
tracked_time.cc 66 bool TrackedTime::is_null() const { return ms_ == 0; } function in class:tracked_objects::TrackedTime
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.partitions/
stable_partition.pass.cpp 287 struct is_null struct
299 Iter r = std::stable_partition(Iter(array), Iter(array+size), is_null());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.modifying.operations/alg.partitions/
stable_partition.pass.cpp 287 struct is_null struct
299 Iter r = std::stable_partition(Iter(array), Iter(array+size), is_null());
  /external/libchrome/base/
callback_internal.h 106 bool is_null() const { return !bind_state_; } function in class:base::internal::CallbackBase
107 explicit operator bool() const { return !is_null(); }
  /external/libchrome/base/threading/
platform_thread.h 68 bool is_null() const { function in class:base::PlatformThreadRef
92 bool is_null() const { function in class:base::PlatformThreadHandle
  /external/libmojo/base/android/
scoped_java_ref.h 61 bool is_null() const { return obj_ == nullptr; } function in class:base::android::JavaRef
  /external/libmojo/mojo/public/cpp/bindings/lib/
bindings_internal.h 121 bool is_null() const { return offset == 0; } function in struct:mojo::internal::Pointer
  /external/tensorflow/tensorflow/stream_executor/
device_memory.h 58 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/
handles.h 46 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/
time.h 326 bool is_null() const { function in class:base::time_internal::TimeBase
  /external/python/cpython2/Lib/plat-mac/
gensuitemodule.py 727 has_arg = (not is_null(accepts))
752 if not is_null(returns):
1147 def is_null(data): function
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
gensuitemodule.py 727 has_arg = (not is_null(accepts))
752 if not is_null(returns):
1147 def is_null(data): function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
gensuitemodule.py 727 has_arg = (not is_null(accepts))
752 if not is_null(returns):
1147 def is_null(data): function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
libpython.py 144 if self.is_null():
195 def is_null(self): member in class:PyObjectPtr
572 if pyop_m_self.is_null():
622 if not pyop_value.is_null():
813 if not pyop_value.is_null():
    [all...]
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 711 inline bool is_null (void) const { return 0 == *this; } function in struct:OT::Offset
  /external/python/cpython2/Tools/gdb/
libpython.py 176 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():
    [all...]
  /external/python/cpython3/Tools/gdb/
libpython.py 207 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():
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 803 (** [is_null v] returns [true] if the value [v] is the null (zero) value.
805 val is_null : llvalue -> bool var
    [all...]
  /external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
llvm.mli 659 (** [is_null v] returns [true] if the value [v] is the null (zero) value.
661 val is_null : llvalue -> bool var
    [all...]

Completed in 2412 milliseconds

1 2