Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dmatch.cpp82 const EvaluationResult inputValue = input->evaluate(params); in evaluate() local
83 if (!inputValue) { in evaluate()
84 return inputValue.error(); in evaluate()
87 if (!inputValue->is<std::string>()) { in evaluate()
91 auto it = branches.find(inputValue->get<std::string>()); in evaluate()
100 const EvaluationResult inputValue = input->evaluate(params); in evaluate() local
101 if (!inputValue) { in evaluate()
102 return inputValue.error(); in evaluate()
105 if (!inputValue->is<double>()) { in evaluate()
109 const auto numeric = inputValue->get<double>(); in evaluate()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/
H A Dinterpolate.hpp47 double interpolationFactor(const Range<double>& inputLevels, const double inputValue) const { in interpolationFactor()
49 [&](const auto& interp) { return interp.interpolationFactor(inputLevels, inputValue); } in interpolationFactor()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dproperty_expression.hpp61 float interpolationFactor(const Range<float>& inputLevels, const float inputValue) const { in interpolationFactor()
68 … return z->interpolationFactor(Range<double> { inputLevels.min, inputLevels.max }, inputValue); in interpolationFactor()