OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:is_integral
(Results
1 - 3
of
3
) sorted by null
/external/astl/include/
type_traits.h
84
//
is_integral
85
template<typename> struct
is_integral
: public false_type { };
struct in namespace:std
88
template<> struct
is_integral
<_Type>: public true_type { }; \
89
template<> struct
is_integral
<_Type const>: public true_type { }; \
90
template<> struct
is_integral
<_Type volatile>: public true_type { }; \
91
template<> struct
is_integral
<_Type const volatile>: public true_type { };
139
struct is_arithmetic : public integral_constant<bool, (
is_integral
<_T>::value || is_floating_point<_T>::value)> { };
/external/stlport/stlport/stl/
boost_type_traits.h
27
#include <boost/type_traits/
is_integral
.hpp>
59
enum {
is_integral
= ::boost::
is_integral
<_Tp>::value };
enumerator in enum:_IsIntegral::__anon7556
60
typedef typename __bool2type<
is_integral
>::_Ret _Ret;
122
enum {
is_integral
= ::boost::
is_integral
<_Tp>::value };
enumerator in enum:_DefaultZeroValue::__anon7567
123
typedef typename __bool2type<
is_integral
>::_Ret _IsIntegral;
/ndk/sources/cxx-stl/stlport/stlport/stl/
boost_type_traits.h
27
#include <boost/type_traits/
is_integral
.hpp>
59
enum {
is_integral
= ::boost::
is_integral
<_Tp>::value };
enumerator in enum:_IsIntegral::__anon11121
60
typedef typename __bool2type<
is_integral
>::_Ret _Ret;
122
enum {
is_integral
= ::boost::
is_integral
<_Tp>::value };
enumerator in enum:_DefaultZeroValue::__anon11132
123
typedef typename __bool2type<
is_integral
>::_Ret _IsIntegral;
Completed in 270 milliseconds