Searched refs:is_null_ (Results 1 – 3 of 3) sorted by relevance
/external/libchrome/base/ |
D | optional.h | 42 : is_null_(false), value_(value) {} in OptionalStorage() 46 : is_null_(false), value_(std::move(value)) {} in OptionalStorage() 51 : is_null_(false), value_(std::forward<Args>(args)...) {} in OptionalStorage() 56 if (!is_null_) in ~OptionalStorage() 60 bool is_null_ = true; member 77 : is_null_(false), value_(value) {} 81 : is_null_(false), value_(std::move(value)) {} 86 : is_null_(false), value_(std::forward<Args>(args)...) {} 93 bool is_null_ = true; 128 if (!other.storage_.is_null_) [all …]
|
/external/pdfium/third_party/base/ |
D | optional.h | 41 : is_null_(false), value_(value) {} in OptionalStorage() 45 : is_null_(false), value_(std::move(value)) {} in OptionalStorage() 50 : is_null_(false), value_(std::forward<Args>(args)...) {} in OptionalStorage() 55 if (!is_null_) in ~OptionalStorage() 59 bool is_null_ = true; member 76 : is_null_(false), value_(value) {} 80 : is_null_(false), value_(std::move(value)) {} 85 : is_null_(false), value_(std::forward<Args>(args)...) {} 92 bool is_null_ = true; 128 if (!other.storage_.is_null_) [all …]
|
/external/libchrome/base/strings/ |
D | nullable_string16.h | 20 NullableString16() : is_null_(true) { } in NullableString16() 22 : string_(string), is_null_(is_null) { in NullableString16() 26 bool is_null() const { return is_null_; } in is_null() 30 bool is_null_; variable
|