Searched refs:NumericType (Results 1 – 6 of 6) sorted by relevance
19 template <typename NumericType>21 static const int value = std::numeric_limits<NumericType>::is_iec55922 ? std::numeric_limits<NumericType>::max_exponent23 : (sizeof(NumericType) * 8 + 1 -24 std::numeric_limits<NumericType>::is_signed);
334 template <typename NumericType>337 std::numeric_limits<NumericType>::is_integer339 : (std::numeric_limits<NumericType>::is_iec559 ? NUMERIC_FLOATING
23 template <typename NumericType>25 static const int value = std::numeric_limits<NumericType>::is_iec55926 ? std::numeric_limits<NumericType>::max_exponent27 : (sizeof(NumericType) * 8 + 1 -28 std::numeric_limits<NumericType>::is_signed);
365 template <typename NumericType>368 std::numeric_limits<NumericType>::is_integer370 : (std::numeric_limits<NumericType>::is_iec559 ? NUMERIC_FLOATING
96 class NumericType(SerializableType): class111 class IntegerType(NumericType):115 NumericType.__init__(self, typecode)136 class FloatType(NumericType):
193 template<typename NumericType>194 bool getNumericType(const Dictionary& dictionary, const String& key, NumericType& value) in getNumericType()203 value = static_cast<NumericType>(v8Int32->Value()); in getNumericType()