Home
last modified time | relevance | path

Searched refs:expression_ (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dsymbol_program.hpp145 …zeBinder(const float tileZoom, const style::PropertyExpression<float>& expression_, const float /*… in ConstantSymbolSizeBinder() argument
146 : layoutSize(expression_.evaluate(tileZoom + 1)), in ConstantSymbolSizeBinder()
147 expression(expression_) { in ConstantSymbolSizeBinder()
148 const Range<float> zoomLevels = expression_.getCoveringStops(tileZoom, tileZoom + 1); in ConstantSymbolSizeBinder()
151 … Range<float> { expression_.evaluate(zoomLevels.min), expression_.evaluate(zoomLevels.max) } in ConstantSymbolSizeBinder()
192 …lSizeBinder(const float /*tileZoom*/, style::PropertyExpression<float> expression_, const float de… in SourceFunctionSymbolSizeBinder() argument
193 : expression(std::move(expression_)), in SourceFunctionSymbolSizeBinder()
214 …ymbolSizeBinder(const float tileZoom, style::PropertyExpression<float> expression_, const float de… in CompositeFunctionSymbolSizeBinder() argument
215 : expression(std::move(expression_)), in CompositeFunctionSymbolSizeBinder()
/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() argument
134 : expression(std::move(expression_)), in SourceFunctionPaintPropertyBinder()
190 …CompositeFunctionPaintPropertyBinder(style::PropertyExpression<T> expression_, float zoom, T defau… in CompositeFunctionPaintPropertyBinder() argument
191 : expression(std::move(expression_)), in CompositeFunctionPaintPropertyBinder()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dproperty_expression.hpp18 …PropertyExpression(std::unique_ptr<expression::Expression> expression_, optional<T> defaultValue_ … in PropertyExpression() argument
19 : expression(std::move(expression_)),