Home
last modified time | relevance | path

Searched refs:toExpressionValue (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Dvalue.hpp65 static Value toExpressionValue(const T& value) { in toExpressionValue() function
77 static Value toExpressionValue(const Value& value) { return value; } in toExpressionValue() function
83 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() function
128 return ValueConverter<T>::toExpressionValue(value); in toExpressionValue()
H A Dexpression.hpp89 Result(toExpressionValue(arr)) in EvaluationResult()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dvalue.cpp82 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::Value
150 Value ValueConverter<float>::toExpressionValue(const float value) { in toExpressionValue() function in mbgl::style::expression::ValueConverter
166 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::array
199 Value ValueConverter<std::vector<T>>::toExpressionValue(const std::vector<T>& value) { in toExpressionValue() function in mbgl::style::expression::ValueConverter::vector
222 Value ValueConverter<Position>::toExpressionValue(const mbgl::style::Position& value) { in toExpressionValue() function in mbgl::style::expression::ValueConverter
223 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
H A Dcompound_expression.cpp226 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()
H A Dliteral.cpp61 return optional<Value>(toExpressionValue(*v)); in parseValue()