Home
last modified time | relevance | path

Searched refs:NumericType (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/base/numerics/
Dsafe_conversions_impl.h19 template <typename NumericType>
21 static const int value = std::numeric_limits<NumericType>::is_iec559
22 ? std::numeric_limits<NumericType>::max_exponent
23 : (sizeof(NumericType) * 8 + 1 -
24 std::numeric_limits<NumericType>::is_signed);
Dsafe_math_impl.h334 template <typename NumericType>
337 std::numeric_limits<NumericType>::is_integer
339 : (std::numeric_limits<NumericType>::is_iec559 ? NUMERIC_FLOATING
/external/chromium_org/v8/src/base/
Dsafe_conversions_impl.h23 template <typename NumericType>
25 static const int value = std::numeric_limits<NumericType>::is_iec559
26 ? std::numeric_limits<NumericType>::max_exponent
27 : (sizeof(NumericType) * 8 + 1 -
28 std::numeric_limits<NumericType>::is_signed);
Dsafe_math_impl.h365 template <typename NumericType>
368 std::numeric_limits<NumericType>::is_integer
370 : (std::numeric_limits<NumericType>::is_iec559 ? NUMERIC_FLOATING
/external/chromium_org/mojo/public/python/mojo/bindings/
Ddescriptor.py96 class NumericType(SerializableType): class
111 class IntegerType(NumericType):
115 NumericType.__init__(self, typecode)
136 class FloatType(NumericType):
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DDictionaryHelperForCore.cpp193 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()