Home
last modified time | relevance | path

Searched full:evaluate (Results 1 – 25 of 709) sorted by relevance

12345678910>>...29

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dproperties.hpp40 auto evaluate(const Evaluator& evaluator, TimePoint now) const { in evaluate() function in mbgl::style::Transitioning
41 auto finalValue = value.evaluate(evaluator); in evaluate()
57 return prior->get().evaluate(evaluator, now); in evaluate()
61 return util::interpolate(prior->get().evaluate(evaluator, now), finalValue, in evaluate()
107 you can evaluate a set of unevaluated property values, producing a set of possibly evaluated
111 … Once you also have a particular feature, you can evaluate that set of possibly evaluated values
146 static T evaluate(float, const GeometryTileFeature&, const T& t, const T&) { in evaluate() function in mbgl::style::Properties::PossiblyEvaluated
151 static T evaluate(float z, const GeometryTileFeature& feature, in evaluate() function in mbgl::style::Properties::PossiblyEvaluated
158 return t.evaluate(z, feature, defaultValue); in evaluate()
163 auto evaluate(float z, const GeometryTileFeature& feature) const { in evaluate() function in mbgl::style::Properties::PossiblyEvaluated
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/include/
H A Dfloat.h138 0 evaluate all operations and constants just to the range and
140 1 evaluate operations and constants of type float and double
141 to the range and precision of the double type, evaluate
144 2 evaluate all operations and constants to the range and
150 0 evaluate all operations and constants, whose semantic type has
152 precision of float; evaluate all other operations and constants
154 1 evaluate all operations and constants, whose semantic type has
156 precision of double; evaluate all other operations and constants
158 2 evaluate all operations and constants, whose semantic type has
160 precision of long double; evaluate all other operations and
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/include/
H A Dfloat.h138 0 evaluate all operations and constants just to the range and
140 1 evaluate operations and constants of type float and double
141 to the range and precision of the double type, evaluate
144 2 evaluate all operations and constants to the range and
150 0 evaluate all operations and constants, whose semantic type has
152 precision of float; evaluate all other operations and constants
154 1 evaluate all operations and constants, whose semantic type has
156 precision of double; evaluate all other operations and constants
158 2 evaluate all operations and constants, whose semantic type has
160 precision of long double; evaluate all other operations and
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dproperty_expression.hpp27 T evaluate(float zoom) const { in evaluate() function in mbgl::style::PropertyExpression
30 …const expression::EvaluationResult result = expression->evaluate(expression::EvaluationContext(zoo… in evaluate()
39 T evaluate(const Feature& feature, T finalDefaultValue) const { in evaluate() function in mbgl::style::PropertyExpression
42 …const expression::EvaluationResult result = expression->evaluate(expression::EvaluationContext(&fe… in evaluate()
51 T evaluate(float zoom, const Feature& feature, T finalDefaultValue) const { in evaluate() function in mbgl::style::PropertyExpression
53 …const expression::EvaluationResult result = expression->evaluate(expression::EvaluationContext({zo… in evaluate()
90 Range<T> evaluate(const Range<float>& zoomRange, const Feature& feature, T finalDefaultValue) { in evaluate() function in mbgl::style::PropertyExpression
92 evaluate(zoomRange.min, feature, finalDefaultValue), in evaluate()
93 evaluate(zoomRange.max, feature, finalDefaultValue) in evaluate()
H A Dcolor_ramp_property_value.hpp34 Color evaluate(const Evaluator&, TimePoint = {}) const { return {}; } in evaluate() function in mbgl::style::ColorRampPropertyValue
36 Color evaluate(double rampEvaluationParameter) const { in evaluate() function in mbgl::style::ColorRampPropertyValue
37 …const auto result = value->evaluate(expression::EvaluationContext({}, nullptr, {rampEvaluationPara… in evaluate()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/phoenix/core/detail/cpp03/preprocessed/
H A Dfunction_equal_10.hpp9evaluate( Expr1 const& e1 , Expr1 const& e2 , mpl::long_< 1 > ) const { return function_equal_()( … in evaluate() function
H A Dfunction_equal_20.hpp9evaluate( Expr1 const& e1 , Expr1 const& e2 , mpl::long_< 1 > ) const { return function_equal_()( … in evaluate() function
H A Dfunction_equal_30.hpp9evaluate( Expr1 const& e1 , Expr1 const& e2 , mpl::long_< 1 > ) const { return function_equal_()( … in evaluate() function
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/
H A Dsymbol_layout.cpp57 layout = leader.layout.evaluate(PropertyEvaluationParameters(zoom)); in SymbolLayout()
109 std::string u8string = layout.evaluate<TextField>(zoom, ft); in SymbolLayout()
111 auto textTransform = layout.evaluate<TextTransform>(zoom, ft); in SymbolLayout()
123 FontStack fontStack = layout.evaluate<TextFont>(zoom, ft); in SymbolLayout()
138 ft.icon = layout.evaluate<IconImage>(zoom, ft); in SymbolLayout()
165 FontStack fontStack = layout.evaluate<TextFont>(zoom, feature); in prepare()
185 layout.evaluate<TextMaxWidth>(zoom, feature) * oneEm : 0, in prepare()
187 /* anchor */ layout.evaluate<TextAnchor>(zoom, feature), in prepare()
188 /* justify */ layout.evaluate<TextJustify>(zoom, feature), in prepare()
189 …spacing: ems */ util::i18n::allowsLetterSpacing(*feature.text) ? layout.evaluate<TextLetterSpacing… in prepare()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_circle_layer.cpp34 void RenderCircleLayer::evaluate(const PropertyEvaluationParameters& parameters) { in evaluate() function in mbgl::RenderCircleLayer
35 evaluated = unevaluated.evaluate(parameters); in evaluate()
147 // Evaluate functions in queryIntersectsFeature()
148 auto radius = evaluated.evaluate<style::CircleRadius>(zoom, feature); in queryIntersectsFeature()
149 auto stroke = evaluated.evaluate<style::CircleStrokeWidth>(zoom, feature); in queryIntersectsFeature()
156 …bool alignWithMap = evaluated.evaluate<style::CirclePitchAlignment>(zoom, feature) == AlignmentTyp… in queryIntersectsFeature()
170 auto pitchScale = evaluated.evaluate<style::CirclePitchScale>(zoom, feature); in queryIntersectsFeature()
171 auto pitchAlignment = evaluated.evaluate<style::CirclePitchAlignment>(zoom, feature); in queryIntersectsFeature()
H A Drender_line_layer.cpp36 void RenderLineLayer::evaluate(const PropertyEvaluationParameters& parameters) { in evaluate() function in mbgl::RenderLineLayer
43 unevaluated.evaluate(parameters).concat(extra.evaluate(dashArrayParams))); in evaluate()
195 // Evaluate function in queryIntersectsFeature()
197 … .evaluate(feature, zoom, style::LineOffset::defaultValue()) * pixelsToTileUnits; in queryIntersectsFeature()
212 .evaluate(feature, zoom, style::LineWidth::defaultValue()); in getLineWidth()
214 .evaluate(feature, zoom, style::LineGapWidth::defaultValue()); in getLineWidth()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dselftest.h278 /* Evaluate EXPR and coerce to bool, calling
298 /* Evaluate EXPR and coerce to bool, calling
318 /* Evaluate VAL1 and VAL2 and compare them with ==, calling
337 /* Evaluate VAL1 and VAL2 and compare them with known_eq, calling
356 /* Evaluate VAL1 and VAL2 and compare them with !=, calling
369 /* Evaluate VAL1 and VAL2 and compare them with maybe_ne, calling
388 /* Evaluate LHS and RHS and compare them with >, calling
407 /* Evaluate LHS and RHS and compare them with <, calling
426 /* Evaluate VAL1 and VAL2 and compare them with strcmp, calling
445 /* Evaluate HAYSTACK and NEEDLE and use strstr to determine if NEEDLE
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dselftest.h278 /* Evaluate EXPR and coerce to bool, calling
298 /* Evaluate EXPR and coerce to bool, calling
318 /* Evaluate VAL1 and VAL2 and compare them with ==, calling
337 /* Evaluate VAL1 and VAL2 and compare them with known_eq, calling
356 /* Evaluate VAL1 and VAL2 and compare them with !=, calling
369 /* Evaluate VAL1 and VAL2 and compare them with maybe_ne, calling
388 /* Evaluate LHS and RHS and compare them with >, calling
407 /* Evaluate LHS and RHS and compare them with <, calling
426 /* Evaluate VAL1 and VAL2 and compare them with strcmp, calling
445 /* Evaluate HAYSTACK and NEEDLE and use strstr to determine if NEEDLE
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dcompound_expression.cpp21 The Signature<Fn> structs are wrappers around an "evaluate()" function whose
22 purpose is to extract the necessary Type data from the evaluate function's
26 Wraps a simple evaluate function (const T0&, const T1&, ...) -> Result<U>
29 Wraps an evaluate function that takes an arbitrary number of arguments (via
33 Wraps an evaluate function that needs to access the expression evaluation
38 In each of the above evaluate signatures, T0, T1, etc. are the types of
44 // Simple evaluate function (const T0&, const T1&, ...) -> Result<U>
55 evaluate(evaluate_) {}
67 R (*evaluate)(Params...); member
71 …const std::array<EvaluationResult, sizeof...(I)> evaluated = {{std::get<I>(args)->evaluate(evaluat… in applyImpl()
[all …]
H A Dmatch.cpp81 template<> EvaluationResult Match<std::string>::evaluate(const EvaluationContext& params) const { in evaluate() function in mbgl::style::expression::Match::string
82 const EvaluationResult inputValue = input->evaluate(params); in evaluate()
88 return otherwise->evaluate(params); in evaluate()
93 return (*it).second->evaluate(params); in evaluate()
96 return otherwise->evaluate(params); in evaluate()
99 template<> EvaluationResult Match<int64_t>::evaluate(const EvaluationContext& params) const { in evaluate() function in mbgl::style::expression::Match
100 const EvaluationResult inputValue = input->evaluate(params); in evaluate()
106 return otherwise->evaluate(params); in evaluate()
114 return (*it).second->evaluate(params); in evaluate()
118 return otherwise->evaluate(params); in evaluate()
H A Dinterpolate.cpp22 EvaluationResult evaluate(const EvaluationContext& params) const override { in evaluate() function in mbgl::style::expression::InterpolateImpl
23 const EvaluationResult evaluatedInput = input->evaluate(params); in evaluate()
39 return stops.rbegin()->second->evaluate(params); in evaluate()
41 return stops.begin()->second->evaluate(params); in evaluate()
46 return std::prev(it)->second->evaluate(params); in evaluate()
49 return it->second->evaluate(params); in evaluate()
52 EvaluationResult lower = std::prev(it)->second->evaluate(params); in evaluate()
56 EvaluationResult upper = it->second->evaluate(params); in evaluate()
H A Dboolean_operator.cpp7 EvaluationResult Any::evaluate(const EvaluationContext& params) const { in evaluate() function in mbgl::style::expression::Any
9 const EvaluationResult result = (*it)->evaluate(params); in evaluate()
35 EvaluationResult All::evaluate(const EvaluationContext& params) const { in evaluate() function in mbgl::style::expression::All
37 const EvaluationResult result = (*it)->evaluate(params); in evaluate()
H A Dcase.cpp8 EvaluationResult Case::evaluate(const EvaluationContext& params) const { in evaluate() function in mbgl::style::expression::Case
10 const EvaluationResult evaluatedTest = branch.first->evaluate(params); in evaluate()
15 return branch.second->evaluate(params); in evaluate()
19 return otherwise->evaluate(params); in evaluate()
H A Dlet.cpp9 EvaluationResult Let::evaluate(const EvaluationContext& params) const { in evaluate() function in mbgl::style::expression::Let
10 return result->evaluate(params); in evaluate()
79 EvaluationResult Var::evaluate(const EvaluationContext& params) const { in evaluate() function in mbgl::style::expression::Var
80 return value->evaluate(params); in evaluate()
H A Dcollator_expression.cpp98 EvaluationResult CollatorExpression::evaluate(const EvaluationContext& params) const { in evaluate() function in mbgl::style::expression::CollatorExpression
99 auto caseSensitiveResult = caseSensitive->evaluate(params); in evaluate()
103 auto diacriticSensitiveResult = diacriticSensitive->evaluate(params); in evaluate()
109 auto localeResult = (*locale)->evaluate(params); in evaluate()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A Dintrinsics.hpp26 // BOOST_IS_UNION(T) should evaluate to true if T is a union type
27 // BOOST_IS_POD(T) should evaluate to true if T is a POD type
28 // BOOST_IS_EMPTY(T) should evaluate to true if T is an empty class type (and not a union)
29 // BOOST_HAS_TRIVIAL_CONSTRUCTOR(T) should evaluate to true if "T x;" has no effect
30 // BOOST_HAS_TRIVIAL_COPY(T) should evaluate to true if T(t) <==> memcpy
31 // BOOST_HAS_TRIVIAL_MOVE_CONSTRUCTOR(T) should evaluate to true if T(boost::move(t)) <==> memcpy
32 // BOOST_HAS_TRIVIAL_ASSIGN(T) should evaluate to true if t = u <==> memcpy
33 // BOOST_HAS_TRIVIAL_MOVE_ASSIGN(T) should evaluate to true if t = boost::move(u) <==> memcpy
34 // BOOST_HAS_TRIVIAL_DESTRUCTOR(T) should evaluate to true if ~T() has no effect
35 // BOOST_HAS_NOTHROW_CONSTRUCTOR(T) should evaluate to true if "T x;" can not throw
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/phoenix/core/
H A Dfunction_equal.hpp102 this->evaluate( in operator ()()
116 this->evaluate(
126 evaluate(Expr1 const& /*e1*/, Expr1 const& /*e2*/, index_sequence<>) const
132 evaluate(Expr1 const& e1, Expr1 const& e2, index_sequence<Head, Tail...>) const
136 this->evaluate(
/OK3568_Linux_fs/kernel/drivers/acpi/
H A Dutils.c34 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Evaluate [%s.%s]: %s\n", in acpi_util_eval_error()
316 /* Evaluate object. */ in acpi_evaluate_reference()
417 * acpi_evaluate_ost: Evaluate _OST for hotplug operations
423 * Evaluate _OST for hotplug operations. All ACPI hotplug handlers
562 * acpi_evaluate_ej0: Evaluate _EJ0 method for hotplug operations
565 * Evaluate device's _EJ0 method for hotplug operations.
581 * acpi_evaluate_lck: Evaluate _LCK method to lock/unlock device
585 * Evaluate device's _LCK method if present to lock/unlock device
605 * acpi_evaluate_reg: Evaluate _REG method to register OpRegion presence
611 * Evaluate device's _REG method to register OpRegion presence.
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dcross_faded_property_evaluator.cpp20 return calculate(expression.evaluate(parameters.z - 1.0f), in operator ()()
21 expression.evaluate(parameters.z), in operator ()()
22 expression.evaluate(parameters.z + 1.0f)); in operator ()()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dsymbol_program.hpp146 : layoutSize(expression_.evaluate(tileZoom + 1)), in ConstantSymbolSizeBinder()
151 … Range<float> { expression_.evaluate(zoomLevels.min), expression_.evaluate(zoomLevels.max) } in ConstantSymbolSizeBinder()
174 size = expression->evaluate(currentZoom); in evaluateForZoom()
198 const float size = expression.evaluate(feature, defaultValue); in getVertexSizeData()
223 expression.evaluate(coveringZoomStops.min, feature, defaultValue), in getVertexSizeData()
224 expression.evaluate(coveringZoomStops.max, feature, defaultValue) in getVertexSizeData()

12345678910>>...29