HomeSort by relevance Sort by last modified time
    Searched refs:is_null_ (Results 1 - 3 of 3) sorted by null

  /external/libchrome/base/strings/
nullable_string16.h 20 NullableString16() : is_null_(true) { }
22 : string_(string), is_null_(is_null) {
26 bool is_null() const { return is_null_; }
30 bool is_null_; member in class:base::NullableString16
  /external/libchrome/base/
optional.h 42 : is_null_(false), value_(value) {}
46 : is_null_(false), value_(std::move(value)) {}
51 : is_null_(false), value_(std::forward<Args>(args)...) {}
56 if (!is_null_)
60 bool is_null_ = true; member in struct:base::internal::OptionalStorage
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; member in struct:base::internal::OptionalStorage
128 if (!other.storage_.is_null_)
    [all...]
  /external/pdfium/third_party/base/
optional.h 41 : is_null_(false), value_(value) {}
45 : is_null_(false), value_(std::move(value)) {}
50 : is_null_(false), value_(std::forward<Args>(args)...) {}
55 if (!is_null_)
59 bool is_null_ = true; member in struct:pdfium::internal::OptionalStorage
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; member in struct:pdfium::internal::OptionalStorage
128 if (!other.storage_.is_null_)
    [all...]

Completed in 86 milliseconds