Lines Matching refs:value

44     bool operator==(const BigInt &value) const
46 return sign_ == value.sign_ && words_ == value.words_;
79 * This constructor is used to convert the int input parameter to a value of type PreferencesValue.
81 * @param value Indicates an int input parameter.
83 PREF_API_EXPORT PreferencesValue(int value);
88 * This constructor is used to convert the int64_t input parameter to a value of type PreferencesValue.
90 * @param value Indicates a int64_t input parameter.
92 PREF_API_EXPORT PreferencesValue(int64_t value);
97 * This constructor is used to convert the int64_t input parameter to a value of type PreferencesValue.
99 * @param value Indicates a int64_t input parameter.
101 PREF_API_EXPORT PreferencesValue(float value);
106 * This constructor is used to convert the double input parameter to a value of type PreferencesValue.
108 * @param value Indicates a double input parameter.
110 PREF_API_EXPORT PreferencesValue(double value);
115 * This constructor is used to convert the bool input parameter to a value of type PreferencesValue.
117 * @param value Indicates a bool input parameter.
119 PREF_API_EXPORT PreferencesValue(bool value);
124 * This constructor is used to convert the string input parameter to a value of type PreferencesValue.
126 * @param value Indicates string input parameter.
128 PREF_API_EXPORT PreferencesValue(std::string value);
133 * This constructor is used to convert the char input parameter to a value of type PreferencesValue.
135 * @param value Indicates a char input parameter.
137 PREF_API_EXPORT PreferencesValue(const char *value);
142 * This constructor is used to convert the vector<double> input parameter to a value of type PreferencesValue.
144 * @param value Indicates a vector<double> input parameter.
146 PREF_API_EXPORT PreferencesValue(std::vector<double> value);
151 * This constructor is used to convert the vector<std::string> input parameter to a value of type PreferencesValue.
153 * @param value Indicates a vector<std::string> input parameter.
155 PREF_API_EXPORT PreferencesValue(std::vector<std::string> value);
160 * This constructor is used to convert the vector<bool> input parameter to a value of type PreferencesValue.
162 * @param value Indicates a vector<bool> input parameter.
164 PREF_API_EXPORT PreferencesValue(std::vector<bool> value);
169 * This constructor is used to convert the vector<uint8_t> input parameter to a value of type PreferencesValue.
171 * @param value Indicates a vector<uint8_t> input parameter.
173 PREF_API_EXPORT PreferencesValue(std::vector<uint8_t> value);
175 PREF_API_EXPORT PreferencesValue(Object value);
180 * This constructor is used to convert the BigInt input parameter to a value of type PreferencesValue.
182 * @param value Indicates a vector<uint8_t> input parameter.
184 PREF_API_EXPORT PreferencesValue(BigInt value);
357 * This function is used to determine whether the input value is equal to the current PreferencesValue.
359 * @param value Indicates a PreferencesValue.
361 * @return Returning true means the input value is equal to the current PreferencesValue, false means it isn't.
363 PREF_API_EXPORT bool operator==(const PreferencesValue &value);