Lines Matching refs:PreferencesValue
176 static PreferencesValue CValueTypeToNativeValue(const ValueType &value)
178 NativePreferences::PreferencesValue preferencesValue = NativePreferences::PreferencesValue(-1);
181 preferencesValue = NativePreferences::PreferencesValue(value.integer);
185 preferencesValue = NativePreferences::PreferencesValue(value.float64);
189 preferencesValue = NativePreferences::PreferencesValue(std::string(value.string));
193 preferencesValue = NativePreferences::PreferencesValue(value.boolean);
201 preferencesValue = NativePreferences::PreferencesValue(bools);
209 preferencesValue = NativePreferences::PreferencesValue(doubles);
217 preferencesValue = NativePreferences::PreferencesValue(strings);
221 preferencesValue = NativePreferences::PreferencesValue(-1);
335 static ValueType NativeValueToCValueType(const PreferencesValue &pValue, int32_t &code)
376 static ValueTypes NativeValuesToCValueTypes(const std::map<std::string, PreferencesValue> &objects, int32_t &code)
423 PreferencesValue p = CValueTypeToNativeValue(defValue);