Home
last modified time | relevance | path

Searched refs:PropertyExpression (Results 1 – 17 of 17) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Ddata_driven_property_value.hpp16 PropertyExpression<T>>;
33 DataDrivenPropertyValue(PropertyExpression<T> v) : value(std::move(v)) {} in DataDrivenPropertyValue()
43 [] (const PropertyExpression<T>& fn) { return !fn.isFeatureConstant(); } in isDataDriven()
51 [] (const PropertyExpression<T>& fn) { return fn.isZoomConstant(); } in isZoomConstant()
56 …const PropertyExpression<T>& asExpression() const { return value.template get<PropertyExpression<T… in asExpression()
H A Dproperty_value.hpp13 using Value = variant<Undefined, T, PropertyExpression<T>>;
31 PropertyValue(PropertyExpression<T> expression) in PropertyValue()
42 …const PropertyExpression<T>& asExpression() const { return value.template get<PropertyExpression<T… in asExpression()
H A Dproperty_expression.hpp15 class PropertyExpression { class
18PropertyExpression(std::unique_ptr<expression::Expression> expression_, optional<T> defaultValue_ … in PropertyExpression() function in mbgl::style::PropertyExpression
105 friend bool operator==(const PropertyExpression& lhs, in operator ==()
106 const PropertyExpression& rhs) { in operator ==()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/conversion/
H A Ddata_driven_property_value.hpp26 optional<PropertyExpression<T>> expression; in operator ()()
35 expression = PropertyExpression<T>(std::move(*parsed)); in operator ()()
71 ? DataDrivenPropertyValue<T>(PropertyExpression<T>(convertTokenStringToExpression(t))) in maybeConvertTokens()
H A Dfunction.hpp19 optional<PropertyExpression<T>> convertFunctionToExpression(const Convertible& value, Error& error,… in convertFunctionToExpression()
36 return PropertyExpression<T>(std::move(*expression), defaultValue); in convertFunctionToExpression()
H A Dproperty_value.hpp30 optional<PropertyExpression<T>> expression; in operator ()()
39 expression = PropertyExpression<T>(std::move(*parsed)); in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dsymbol_program.hpp145 …ConstantSymbolSizeBinder(const float tileZoom, const style::PropertyExpression<float>& expression_… in ConstantSymbolSizeBinder()
183 optional<style::PropertyExpression<float>> expression;
192 …SourceFunctionSymbolSizeBinder(const float /*tileZoom*/, style::PropertyExpression<float> expressi… in SourceFunctionSymbolSizeBinder()
207 style::PropertyExpression<float> expression;
214 …CompositeFunctionSymbolSizeBinder(const float tileZoom, style::PropertyExpression<float> expressio… in CompositeFunctionSymbolSizeBinder()
238 style::PropertyExpression<float> expression;
H A Dsymbol_program.cpp26 … [&] (const style::PropertyExpression<float>& expression) -> std::unique_ptr<SymbolSizeBinder> { in create()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dpaint_property_binder.hpp133 SourceFunctionPaintPropertyBinder(style::PropertyExpression<T> expression_, T defaultValue_) in SourceFunctionPaintPropertyBinder()
173 style::PropertyExpression<T> expression;
190 …CompositeFunctionPaintPropertyBinder(style::PropertyExpression<T> expression_, float zoom, T defau… in CompositeFunctionPaintPropertyBinder()
238 style::PropertyExpression<T> expression;
252 …[&] (const style::PropertyExpression<T>& expression) -> std::unique_ptr<PaintPropertyBinder<T, A>>… in create()
H A Dpossibly_evaluated_property_value.hpp14 style::PropertyExpression<T>>;
47 [&] (const style::PropertyExpression<T>& expression) { in evaluate()
H A Dproperty_evaluator.hpp19 T operator()(const style::PropertyExpression<T>& fn) const { return fn.evaluate(parameters.z); } in operator ()()
H A Dcross_faded_property_evaluator.hpp30 Faded<T> operator()(const style::PropertyExpression<T>&) const;
H A Ddata_driven_property_evaluator.hpp26 ResultType operator()(const style::PropertyExpression<T>& expression) const { in operator ()()
H A Dcross_faded_property_evaluator.cpp19 Faded<T> CrossFadedPropertyEvaluator<T>::operator()(const style::PropertyExpression<T>& expression)… in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dstringify.hpp141 void stringify(Writer& writer, const PropertyExpression<T>& fn) { in stringify()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dproperties.hpp157 [&] (const PropertyExpression<T>& t) { in evaluate()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dannotation_manager.cpp166 …layer->setIconImage(PropertyExpression<std::string>(concat(vec(literal(SourceID + "."), toString(g… in updateStyle()