Lines Matching +full:range +full:- +full:double
8 * http://www.apache.org/licenses/LICENSE-2.0
22 #include <phosphor-logging/lg2.hpp>
47 * to LessThanOperator is out of range.
67 else if (std::holds_alternative<double>(val)) in getDefaultValue()
69 return std::numeric_limits<double>::quiet_NaN(); in getDefaultValue()
87 * With strings values, A - B removes all occurrences of B in A.
96 PropertyVariantType operator()(double val) override in operator ()()
98 return val - std::visit(ToTypeVisitor<double>(), arg); in operator ()()
103 return val - std::visit(ToTypeVisitor<int32_t>(), arg); in operator ()()
108 return val - std::visit(ToTypeVisitor<int64_t>(), arg); in operator ()()
201 lg2::error("No valid range values found in " in LessThanOperator()
213 PropertyVariantType operator()(double val) override in operator ()()
217 if (val < std::visit(ToTypeVisitor<double>(), rangeValue.first)) in operator ()()