Home
last modified time | relevance | path

Searched refs:nothing_ (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/tools/aapt2/util/
DMaybe.h106 bool nothing_; variable
112 Maybe<T>::Maybe() : nothing_(true) {} in Maybe()
116 if (!nothing_) { in ~Maybe()
122 Maybe<T>::Maybe(const Maybe& rhs) : nothing_(rhs.nothing_) { in Maybe()
123 if (!rhs.nothing_) { in Maybe()
130 Maybe<T>::Maybe(const Maybe<U>& rhs) : nothing_(rhs.nothing_) { in Maybe()
131 if (!rhs.nothing_) { in Maybe()
137 Maybe<T>::Maybe(Maybe&& rhs) noexcept : nothing_(rhs.nothing_) { in Maybe()
138 if (!rhs.nothing_) { in Maybe()
139 rhs.nothing_ = true; in Maybe()
[all …]