Lines Matching refs:value
36 PreferencesValue::PreferencesValue(int value)
38 value_ = value;
41 PreferencesValue::PreferencesValue(int64_t value)
43 value_ = value;
46 PreferencesValue::PreferencesValue(float value)
48 value_ = value;
51 PreferencesValue::PreferencesValue(double value)
53 value_ = value;
56 PreferencesValue::PreferencesValue(bool value)
58 value_ = value;
61 PreferencesValue::PreferencesValue(const char *value)
63 value_ = std::string(value);
66 PreferencesValue::PreferencesValue(std::string value)
68 value_ = value;
71 PreferencesValue::PreferencesValue(std::vector<double> value)
73 value_ = value;
76 PreferencesValue::PreferencesValue(std::vector<std::string> value)
78 value_ = value;
81 PreferencesValue::PreferencesValue(std::vector<bool> value)
83 value_ = value;
86 PreferencesValue::PreferencesValue(std::vector<uint8_t> value)
88 value_ = value;
91 PreferencesValue::PreferencesValue(Object value)
93 value_ = value;
96 PreferencesValue::PreferencesValue(BigInt value)
98 value_ = value;
239 bool PreferencesValue::operator==(const PreferencesValue &value)
241 return (this->value_ == value.value_);