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

1 2

  /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/
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/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/r11/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.partitions/
stable_partition.pass.cpp 288 struct is_null struct
300 Iter r = std::stable_partition(Iter(array), Iter(array+size), is_null());
  /prebuilts/ndk/r13/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/threading/
platform_thread.h 62 bool is_null() const { function in class:base::PlatformThreadRef
86 bool is_null() const { function in class:base::PlatformThreadHandle
  /external/libmojo/base/android/
scoped_java_ref.h 57 bool is_null() const { return obj_ == NULL; } function in class:base::android::JavaRef
  /external/libmojo/mojo/public/cpp/bindings/
array.h 90 bool is_null() const { return is_null_; } function in class:mojo::Array
180 if (is_null() != other.is_null())
230 if (!input.is_null()) {
259 if (!input.is_null()) {
270 if (a.is_null())
271 return !b.is_null();
272 if (b.is_null())
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())
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...]
wtf_array.h 79 bool is_null() const { function in class:mojo::WTFArray
159 if (is_null() != other.is_null())
wtf_map.h 81 bool is_null() const { return is_null_; } function in class:mojo::WTFMap
168 if (is_null() != other.is_null())
map.h 93 bool is_null() const { return is_null_; } function in class:mojo::Map
205 if (is_null() != other.is_null())
291 if (!input.is_null()) {
  /external/libmojo/mojo/public/cpp/bindings/lib/
bindings_internal.h 108 bool is_null() const { return offset == 0; } function in struct:mojo::internal::Pointer
  /external/v8/src/
handles.h 44 V8_INLINE bool is_null() const { return location_ == nullptr; } function in class:v8::internal::HandleBase
239 bool is_null() const { return location_ == nullptr; } function in class:v8::internal::final
  /external/libchrome/base/time/
time.h 308 bool is_null() const { function in class:base::time_internal::TimeBase
  /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 731 inline bool is_null (void) const { return 0 == *this; } function in struct:OT::Offset
  /art/compiler/optimizing/
code_generator_x86_64.cc 5149 NearLabel is_null; local
    [all...]
code_generator_arm.cc 6344 Label is_null; local
    [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 578 milliseconds

1 2