OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ei_cleantype
(Results
1 - 2
of
2
) sorted by null
/external/eigen/Eigen/src/Eigen2Support/
Meta.h
43
template<typename T> struct
ei_cleantype
{ typedef T type; };
struct in namespace:Eigen
44
template<typename T> struct
ei_cleantype
<const T> { typedef typename
ei_cleantype
<T>::type type; };
struct in namespace:Eigen
45
template<typename T> struct
ei_cleantype
<const T&> { typedef typename
ei_cleantype
<T>::type type; };
struct in namespace:Eigen
46
template<typename T> struct
ei_cleantype
<T&> { typedef typename
ei_cleantype
<T>::type type; };
struct in namespace:Eigen
47
template<typename T> struct
ei_cleantype
<const T*> { typedef typename
ei_cleantype
<T>::type type; };
struct in namespace:Eigen
48
template<typename T> struct
ei_cleantype
<T*> { typedef typename ei_cleantype<T>::type type; }
struct in namespace:Eigen
[
all
...]
/external/eigen/test/eigen2/
eigen2_meta.cpp
23
VERIFY(( ei_is_same_type<float,
ei_cleantype
<const float&>::type >::ret));
24
VERIFY(( ei_is_same_type<float,
ei_cleantype
<const float*>::type >::ret));
25
VERIFY(( ei_is_same_type<float,
ei_cleantype
<const float*&>::type >::ret));
26
VERIFY(( ei_is_same_type<float,
ei_cleantype
<float**>::type >::ret));
27
VERIFY(( ei_is_same_type<float,
ei_cleantype
<float**&>::type >::ret));
28
VERIFY(( ei_is_same_type<float,
ei_cleantype
<float* const *&>::type >::ret));
29
VERIFY(( ei_is_same_type<float,
ei_cleantype
<float* const>::type >::ret));
Completed in 68 milliseconds