Home
last modified time | relevance | path

Searched refs:IsIntegral (Results 1 – 8 of 8) sorted by relevance

/external/opencv3/modules/cudev/include/opencv2/cudev/util/detail/
Dtype_traits.hpp65 …template <typename T> struct IsIntegral { enum {value = IsSignedIntergral<T>::value || IsUnsignedI… argument
66 template <> struct IsIntegral<char> { enum {value = 1}; }; argument
67 template <> struct IsIntegral<bool> { enum {value = 1}; }; struct
182 enum { value = IsIntegral<T>::value
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/
Dtype_traits_detail.hpp74 …template <typename T> struct IsIntegral { enum {value = IsSignedIntergral<T>::value || IsUnsignedI… argument
75 template <> struct IsIntegral<char> { enum {value = 1}; }; argument
76 template <> struct IsIntegral<bool> { enum {value = 1}; }; argument
/external/opencv3/modules/core/include/opencv2/core/cuda/
Dtype_traits.hpp58 … enum {value = type_traits_detail::IsIntegral<T>::value || type_traits_detail::IsFloat<T>::value ||
78 enum { isIntegral = type_traits_detail::IsIntegral<UnqualifiedType>::value };
/external/opencv3/modules/cudev/include/opencv2/cudev/util/
Dtype_traits.hpp144 enum { is_integral = type_traits_detail::IsIntegral<unqualified_type>::value };
/external/jsoncpp/src/lib_json/
Djson_value.cpp1087 static bool IsIntegral(double d) { in IsIntegral() function
1104 IsIntegral(value_.real_); in isInt()
1119 IsIntegral(value_.real_); in isUInt()
1138 value_.real_ < double(maxInt64) && IsIntegral(value_.real_); in isInt64()
1158 IsIntegral(value_.real_); in isUInt64()
/external/vulkan-validation-layers/libs/vkjson/
Dvkjson.cc47 inline bool IsIntegral(double value) { in IsIntegral() function
482 if (json_value->type != cJSON_Number || !IsIntegral(d) || in AsValue()
499 if (json_value->type != cJSON_Number || !IsIntegral(d) || in AsValue()
/external/clang/include/clang/Basic/
DTokenKinds.def448 TYPE_TRAIT_1(__is_integral, IsIntegral, KEYCXX)
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp1866 TEST(IsIntegral, Matches) { in TEST() argument