Searched refs:toExpressionValue (Results 1 – 5 of 5) sorted by relevance
65 static Value toExpressionValue(const T& value) { in toExpressionValue() function77 static Value toExpressionValue(const Value& value) { return value; } in toExpressionValue() function83 static Value toExpressionValue(const mbgl::Value& value);90 static Value toExpressionValue(const float value);99 static Value toExpressionValue(const std::array<T, N>& value);108 static Value toExpressionValue(const std::vector<T>& value);115 static Value toExpressionValue(const mbgl::style::Position& value);122 static Value toExpressionValue(const T& value);127 Value toExpressionValue(const T& value) { in toExpressionValue() function128 return ValueConverter<T>::toExpressionValue(value); in toExpressionValue()
89 Result(toExpressionValue(arr)) in EvaluationResult()
82 result.emplace_back(toExpressionValue(item)); in operator ()()91 result.emplace(entry.first, toExpressionValue(entry.second)); in operator ()()108 Value ValueConverter<mbgl::Value>::toExpressionValue(const mbgl::Value& value) { in toExpressionValue() function in mbgl::style::expression::ValueConverter::Value150 Value ValueConverter<float>::toExpressionValue(const float value) { in toExpressionValue() function in mbgl::style::expression::ValueConverter166 result.push_back(ValueConverter<T>::toExpressionValue(item)); in toArrayValue()172 Value ValueConverter<std::array<T, N>>::toExpressionValue(const std::array<T, N>& value) { in toExpressionValue() function in mbgl::style::expression::ValueConverter::array199 Value ValueConverter<std::vector<T>>::toExpressionValue(const std::vector<T>& value) { in toExpressionValue() function in mbgl::style::expression::ValueConverter::vector222 Value ValueConverter<Position>::toExpressionValue(const mbgl::style::Position& value) { in toExpressionValue() function in mbgl::style::expression::ValueConverter223 return ValueConverter<std::array<float, 3>>::toExpressionValue(value.getSpherical()); in toExpressionValue()232 Value ValueConverter<T, std::enable_if_t< std::is_enum<T>::value >>::toExpressionValue(const T& val… in toExpressionValue() function in mbgl::style::expression::ValueConverter::enable_if_t::is_enum::value
226 return toExpressionValue(mbgl::Value(idid)); in featureIdAsExpressionValue()233 return property ? toExpressionValue(*property) : optional<Value>(); in featurePropertyAsExpressionValue()374 return Value(toExpressionValue(*propertyValue)); in initializeDefinitions()392 result[entry.first] = toExpressionValue(entry.second); in initializeDefinitions()429 return toExpressionValue(mbgl::Value(idValue)); in initializeDefinitions()
61 return optional<Value>(toExpressionValue(*v)); in parseValue()