Lines Matching refs:PreferencesValue
20 PreferencesValue::PreferencesValue(const PreferencesValue &preferencesValue)
28 PreferencesValue::PreferencesValue(PreferencesValue &&preferencesValue) noexcept
36 PreferencesValue::PreferencesValue(int value)
41 PreferencesValue::PreferencesValue(int64_t value)
46 PreferencesValue::PreferencesValue(float value)
51 PreferencesValue::PreferencesValue(double value)
56 PreferencesValue::PreferencesValue(bool value)
61 PreferencesValue::PreferencesValue(const char *value)
66 PreferencesValue::PreferencesValue(std::string value)
71 PreferencesValue::PreferencesValue(std::vector<double> value)
76 PreferencesValue::PreferencesValue(std::vector<std::string> value)
81 PreferencesValue::PreferencesValue(std::vector<bool> value)
86 PreferencesValue::PreferencesValue(std::vector<uint8_t> value)
91 PreferencesValue::PreferencesValue(Object value)
96 PreferencesValue::PreferencesValue(BigInt value)
101 PreferencesValue &PreferencesValue::operator=(PreferencesValue &&preferencesValue) noexcept
110 PreferencesValue &PreferencesValue::operator=(const PreferencesValue &preferencesValue)
119 bool PreferencesValue::IsInt() const
124 bool PreferencesValue::IsLong() const
129 bool PreferencesValue::IsFloat() const
134 bool PreferencesValue::IsDouble() const
139 bool PreferencesValue::IsBool() const
144 bool PreferencesValue::IsString() const
149 bool PreferencesValue::IsDoubleArray() const
154 bool PreferencesValue::IsUint8Array() const
159 bool PreferencesValue::IsObject() const
164 bool PreferencesValue::IsStringArray() const
169 bool PreferencesValue::IsBoolArray() const
174 bool PreferencesValue::IsBigInt() const
179 PreferencesValue::operator int() const
184 PreferencesValue::operator int64_t() const
189 PreferencesValue::operator float() const
194 PreferencesValue::operator double() const
199 PreferencesValue::operator bool() const
204 PreferencesValue::operator std::string() const
209 PreferencesValue::operator std::vector<double>() const
214 PreferencesValue::operator std::vector<bool>() const
219 PreferencesValue::operator std::vector<std::string>() const
224 PreferencesValue::operator std::vector<uint8_t>() const
229 PreferencesValue::operator Object() const
234 PreferencesValue::operator BigInt() const
239 bool PreferencesValue::operator==(const PreferencesValue &value)