Searched defs:is_null (Results 1 - 25 of 39) sorted by last modified time

12

/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli755 (** [is_null v] returns [true] if the value [v] is the null (zero) value.
757 val is_null : llvalue -> bool var
/external/lldb/examples/synthetic/
H A Dlibcxx.py166 is_null = property(_isnull_impl,None) variable in class:stdlist_entry
173 if node.is_null:
188 if node != None and node.sbvalue.IsValid() and not(node.is_null):
369 is_null = property(_null_impl,None) variable in class:stdmap_iterator_node
378 if x.is_null:
380 while (not x.left.is_null):
390 if x.is_null:
392 while (not x.right.is_null):
398 if x.is_null:
404 if node.is_null
[all...]
/external/libcxx/test/algorithms/alg.modifying.operations/alg.partitions/
H A Dstable_partition.pass.cpp288 struct is_null struct
300 Iter r = std::stable_partition(Iter(array), Iter(array+size), is_null());
/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh637 inline bool is_null (void) const { return 0 == *this; } function in struct:OT::Offset
/external/chromium_org/v8/src/
H A Dhandles.h66 bool is_null() const { return location_ == NULL; } function in class:v8::internal::MaybeHandle
124 bool is_null() const { return location_ == NULL; } function in class:v8::internal::Handle
/external/chromium_org/tools/gn/
H A Dlabel.h35 // is_null() label and sets the error.
41 bool is_null() const { return dir_.is_null(); } function in class:Label
H A Dsource_dir.h55 bool is_null() const { return value_.empty(); } function in class:SourceDir
H A Dsource_file.h35 bool is_null() const { return value_.empty(); } function in class:SourceFile
/external/chromium_org/ui/gfx/
H A Dgpu_memory_buffer.h51 bool is_null() const { return type == EMPTY_BUFFER; } function in struct:gfx::GpuMemoryBufferHandle
H A Dnative_widget_types.h235 DCHECK(!is_null() || handle == kNullPluginWindow);
239 bool is_null() const { return transport_type == EMPTY; } function in struct:gfx::GLSurfaceHandle
/external/chromium_org/ui/gfx/image/
H A Dimage_skia_rep.h36 bool is_null() const { return bitmap_.isNull(); } function in class:gfx::ImageSkiaRep
/external/chromium_org/third_party/cython/src/Cython/Debugger/
H A Dlibpython.py209 if self.is_null():
256 def is_null(self): member in class:PyObjectPtr
632 if pyop_m_self.is_null():
682 if not pyop_value.is_null():
891 if not pyop_value.is_null():
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-open-type-private.hh637 inline bool is_null (void) const { return 0 == *this; } function in struct:OT::Offset
/external/chromium_org/net/base/
H A Dpriority_queue.h78 bool is_null() const { return priority_ == kNullPriority; } function in class:net::PriorityQueue::Pointer
250 DCHECK(!pointer.is_null());
/external/chromium_org/ppapi/cpp/
H A Ddirectory_entry.h26 /// Default constructor for creating an is_null() <code>DirectoryEntry</code>
62 bool is_null() const { return !data_.file_ref; } function in class:pp::DirectoryEntry
H A Dresource.h45 bool is_null() const { return !pp_resource_; } function in class:pp::Resource
H A Dvar.h113 bool is_null() const { return var_.type == PP_VARTYPE_NULL; } function in class:pp::Var
/external/chromium_org/ppapi/shared_impl/
H A Darray_writer.h28 ArrayWriter(); // Creates an is_null() object
33 bool is_null() const { return !is_valid(); } function in class:ppapi::ArrayWriter
39 // Sets the array output back to its is_null() state.
46 // In either case, the object will become is_null() immediately after the
85 // is_null() immediately after the call since one output function should only
102 // is_null() immediately after the call since one output function should only
H A Dcompositor_layer_data.h99 bool is_null() const { function in struct:ppapi::CompositorLayerData
H A Dhost_resource.h42 bool is_null() const { return !host_resource_; } function in class:ppapi::HostResource
/external/chromium_org/mojo/public/cpp/bindings/
H A Darray.h69 bool is_null() const { return is_null_; } function in class:mojo::Array
138 if (!input.is_null()) {
H A Dcallback.h46 bool is_null() const { function in class:mojo::Callback
87 bool is_null() const { function in class:mojo::Callback
135 bool is_null() const { function in class:mojo::Callback
189 bool is_null() const { function in class:mojo::Callback
248 bool is_null() const { function in class:mojo::Callback
312 bool is_null() const { function in class:mojo::Callback
382 bool is_null() const { function in class:mojo::Callback
457 bool is_null() const { function in class:mojo::Callback
H A Dstring.h63 bool is_null() const { return is_null_; } function in class:mojo::String
97 return a.is_null() == b.is_null() && a.get() == b.get();
100 return !b.is_null() && a == b.get();
103 return !a.is_null() && a.get() == b;
H A Dstruct_ptr.h54 bool is_null() const { return ptr_ == NULL; } function in class:mojo::StructPtr
118 bool is_null() const { return is_null_; } function in class:mojo::InlinedStructPtr
/external/chromium_org/mojo/services/clipboard/
H A Dclipboard_standalone_unittest.cc25 *string_is_null = input.is_null();
26 *output = input.is_null() ? "" : input.To<std::string>();
81 bool is_null = false; local
85 base::Bind(&CopyStringAndEndRunloop, data, &is_null, &run_loop));
87 return !is_null;

Completed in 4053 milliseconds

12