Home | History | Annotate | Download | only in bindings

Lines Matching refs:is_null

64   bool is_null() const { return !ptr_; }
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; }
176 return is_null() ? InlinedStructPtr() : value_.Clone();
181 if (is_null() || other.is_null())
182 return is_null() && other.is_null();
188 if (is_null())
193 explicit operator bool() const { return !is_null(); }