OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:is_floating_point
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/cld/base/
type_traits.h
12
//
is_floating_point
60
//
is_floating_point
is false except for the built-in floating-point types.
61
template <class T> struct
is_floating_point
: false_type { };
struct in namespace:base
62
template<> struct
is_floating_point
<float> : true_type { };
struct in namespace:base
63
template<> struct
is_floating_point
<double> : true_type { };
struct in namespace:base
64
template<> struct
is_floating_point
<long double> : true_type { };
struct in namespace:base
82
is_floating_point
<T>::value ||
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
type_traits.h
39
//
is_floating_point
70
template <class T> struct
is_floating_point
;
123
//
is_floating_point
is false except for the built-in floating-point types.
125
template <class T> struct
is_floating_point
: false_type { };
struct in namespace:google::protobuf::internal
126
template<> struct
is_floating_point
<float> : true_type { };
struct in namespace:google::protobuf::internal
127
template<> struct
is_floating_point
<double> : true_type { };
struct in namespace:google::protobuf::internal
128
template<> struct
is_floating_point
<long double> : true_type { };
struct in namespace:google::protobuf::internal
129
template <class T> struct
is_floating_point
<const T>
struct in namespace:google::protobuf::internal
130
:
is_floating_point
<T> { };
131
template <class T> struct
is_floating_point
<volatile T
struct in namespace:google::protobuf::internal
133
template <class T> struct
is_floating_point
<const volatile T>
struct in namespace:google::protobuf::internal
[
all
...]
/external/clang/test/SemaCXX/
type-traits.cpp
360
void
is_floating_point
()
function
[
all
...]
Completed in 858 milliseconds