Lines Matching refs:preferencesValue
20 PreferencesValue::PreferencesValue(const PreferencesValue &preferencesValue)
22 if (this == &preferencesValue) {
25 value_ = preferencesValue.value_;
28 PreferencesValue::PreferencesValue(PreferencesValue &&preferencesValue) noexcept
30 if (this == &preferencesValue) {
33 value_ = std::move(preferencesValue.value_);
101 PreferencesValue &PreferencesValue::operator=(PreferencesValue &&preferencesValue) noexcept
103 if (this == &preferencesValue) {
106 value_ = std::move(preferencesValue.value_);
110 PreferencesValue &PreferencesValue::operator=(const PreferencesValue &preferencesValue)
112 if (this == &preferencesValue) {
115 value_ = preferencesValue.value_;