HomeSort by relevance Sort by last modified time
    Searched refs:__true_type (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
cpp_type_traits.h 82 struct __true_type { }; struct
91 { typedef __true_type __type; };
114 typedef __true_type __type;
129 typedef __true_type __type;
149 typedef __true_type __type;
156 typedef __true_type __type;
163 typedef __true_type __type;
170 typedef __true_type __type;
178 typedef __true_type __type;
187 typedef __true_type __type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
cpp_type_traits.h 82 struct __true_type { }; struct
91 { typedef __true_type __type; };
114 typedef __true_type __type;
129 typedef __true_type __type;
149 typedef __true_type __type;
156 typedef __true_type __type;
163 typedef __true_type __type;
170 typedef __true_type __type;
178 typedef __true_type __type;
187 typedef __true_type __type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
cpp_type_traits.h 82 struct __true_type { }; struct
91 { typedef __true_type __type; };
114 typedef __true_type __type;
129 typedef __true_type __type;
149 typedef __true_type __type;
156 typedef __true_type __type;
163 typedef __true_type __type;
170 typedef __true_type __type;
178 typedef __true_type __type;
187 typedef __true_type __type
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
cpp_type_traits.h 82 struct __true_type { }; struct
91 { typedef __true_type __type; };
114 typedef __true_type __type;
129 typedef __true_type __type;
149 typedef __true_type __type;
156 typedef __true_type __type;
163 typedef __true_type __type;
170 typedef __true_type __type;
178 typedef __true_type __type;
187 typedef __true_type __type
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
type_traits_test.cpp 58 // libstdc++ sometimes exposed its own __true_type type in global
60 # define __true_type std::__true_type macro
64 int type_to_value(__true_type)
120 typedef __true_type has_trivial_default_constructor;
121 typedef __true_type has_trivial_copy_constructor;
122 typedef __true_type has_trivial_assignment_operator;
123 typedef __true_type has_trivial_destructor;
124 typedef __true_type is_POD_type;
174 CPPUNIT_ASSERT( __type2bool<__true_type>::_Ret == 1 )
    [all...]
mvctor_declaration_test.cpp 37 // libstdc++ sometimes exposed its own __true_type in
39 # define __true_type std::__true_type macro
43 static bool type_to_bool(__true_type)
123 typedef __true_type implemented;
128 typedef __true_type implemented;
133 typedef __true_type implemented;
138 typedef __true_type implemented;
143 typedef __true_type implemented;
148 typedef __true_type implemented
    [all...]
uninitialized_test.cpp 61 typedef __true_type has_trivial_copy_constructor;
62 typedef __true_type has_trivial_assignment_operator;
63 typedef __true_type has_trivial_destructor;
70 typedef __true_type has_trivial_default_constructor;
71 typedef __true_type has_trivial_copy_constructor;
72 typedef __true_type has_trivial_assignment_operator;
73 typedef __true_type has_trivial_destructor;
deque_test.cpp 250 typedef __true_type has_trivial_copy_constructor;
251 typedef __true_type has_trivial_assignment_operator;
252 typedef __true_type has_trivial_destructor;
253 typedef __true_type is_POD_type;
  /ndk/tests/device/test-stlport/unit/
type_traits_test.cpp 58 // libstdc++ sometimes exposed its own __true_type type in global
60 # define __true_type std::__true_type macro
64 int type_to_value(__true_type)
120 typedef __true_type has_trivial_default_constructor;
121 typedef __true_type has_trivial_copy_constructor;
122 typedef __true_type has_trivial_assignment_operator;
123 typedef __true_type has_trivial_destructor;
124 typedef __true_type is_POD_type;
174 CPPUNIT_ASSERT( __type2bool<__true_type>::_Ret == 1 )
    [all...]
mvctor_declaration_test.cpp 37 // libstdc++ sometimes exposed its own __true_type in
39 # define __true_type std::__true_type macro
43 static bool type_to_bool(__true_type)
123 typedef __true_type implemented;
128 typedef __true_type implemented;
133 typedef __true_type implemented;
138 typedef __true_type implemented;
143 typedef __true_type implemented;
148 typedef __true_type implemented
    [all...]
uninitialized_test.cpp 61 typedef __true_type has_trivial_copy_constructor;
62 typedef __true_type has_trivial_assignment_operator;
63 typedef __true_type has_trivial_destructor;
70 typedef __true_type has_trivial_default_constructor;
71 typedef __true_type has_trivial_copy_constructor;
72 typedef __true_type has_trivial_assignment_operator;
73 typedef __true_type has_trivial_destructor;
deque_test.cpp 250 typedef __true_type has_trivial_copy_constructor;
251 typedef __true_type has_trivial_assignment_operator;
252 typedef __true_type has_trivial_destructor;
253 typedef __true_type is_POD_type;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
type_manips.h 23 struct __true_type {}; struct
28 using _STLP_STD::__true_type;
36 { typedef __true_type _Ret; };
39 struct __bool2type<1> { typedef __true_type _Ret; };
49 struct __type2bool<__true_type> { enum {_Ret = 1}; };
59 struct _Not<__false_type> { typedef __true_type _Ret; };
66 struct _Land2<__true_type, __true_type> { typedef __true_type _Ret; };
73 struct _Land3<__true_type, __true_type, __true_type> { typedef __true_type _Ret; }
    [all...]
type_traits.h 34 which is either __true_type or __false_type. The argument to
49 template <class T> void copy(T* source, T* destination, int n, __true_type);
84 { typedef __true_type _Ret; };
88 { typedef __true_type _Ret; };
92 { typedef __true_type _Ret; };
96 { typedef __true_type _Ret; };
100 { typedef __true_type _Ret; };
104 { typedef __true_type _Ret; };
107 { typedef __true_type _Ret; };
110 { typedef __true_type _Ret; }
    [all...]
_construct.h 60 inline void __destroy_aux(_Tp*, const __true_type& /*_Trivial_destructor*/) {}
95 inline void _Construct_aux (_T1* __p, const __true_type&) {
123 __attribute__((always_inline)) inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) {
143 __attribute__((always_inline)) inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
167 __attribute__((always_inline)) inline void _Move_Construct_Aux(_T1* __p, _T2& __val, const __true_type& /*_IsPOD*/) {
202 __destroy_range_aux(_ForwardIterator __first, _ForwardIterator __last, _Tp*, const __true_type& /*_Trivial_destructor*/) {
208 __destroy_range_aux(_ForwardIterator, _ForwardIterator, _Tp*, const __true_type& /*_Trivial_destructor*/) {}
254 inline _Tp __default_constructed_aux(_Tp*, const __true_type&) {
_move_construct_fwk.h 130 typedef __true_type implemented;
150 typedef __true_type implemented;
_ptrs_specialize.h 34 # define _STLP_TYPE_TRAITS_POD_SPECIALIZE(_Type) _STLP_TEMPLATE_NULL struct __type_traits<_Type> : __type_traits_aux<__true_type> {};
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
type_manips.h 23 struct __true_type {}; struct
28 using _STLP_STD::__true_type;
36 { typedef __true_type _Ret; };
39 struct __bool2type<1> { typedef __true_type _Ret; };
49 struct __type2bool<__true_type> { enum {_Ret = 1}; };
59 struct _Not<__false_type> { typedef __true_type _Ret; };
66 struct _Land2<__true_type, __true_type> { typedef __true_type _Ret; };
73 struct _Land3<__true_type, __true_type, __true_type> { typedef __true_type _Ret; }
    [all...]
type_traits.h 34 which is either __true_type or __false_type. The argument to
49 template <class T> void copy(T* source, T* destination, int n, __true_type);
84 { typedef __true_type _Ret; };
88 { typedef __true_type _Ret; };
92 { typedef __true_type _Ret; };
96 { typedef __true_type _Ret; };
100 { typedef __true_type _Ret; };
104 { typedef __true_type _Ret; };
107 { typedef __true_type _Ret; };
110 { typedef __true_type _Ret; }
    [all...]
_construct.h 60 inline void __destroy_aux(_Tp*, const __true_type& /*_Trivial_destructor*/) {}
95 inline void _Construct_aux (_T1* __p, const __true_type&) {
123 inline void _Copy_Construct_aux(_Tp* __p, const _Tp& __val, const __true_type&) {
143 inline void _Param_Construct_aux(_T1* __p, const _T2& __val, const __true_type&) {
167 inline void _Move_Construct_Aux(_T1* __p, _T2& __val, const __true_type& /*_IsPOD*/) {
202 __destroy_range_aux(_ForwardIterator __first, _ForwardIterator __last, _Tp*, const __true_type& /*_Trivial_destructor*/) {
208 __destroy_range_aux(_ForwardIterator, _ForwardIterator, _Tp*, const __true_type& /*_Trivial_destructor*/) {}
254 inline _Tp __default_constructed_aux(_Tp*, const __true_type&) {
_move_construct_fwk.h 130 typedef __true_type implemented;
150 typedef __true_type implemented;
_ptrs_specialize.h 34 # define _STLP_TYPE_TRAITS_POD_SPECIALIZE(_Type) _STLP_TEMPLATE_NULL struct __type_traits<_Type> : __type_traits_aux<__true_type> {};
  /external/pcre/dist/
pcre_stringpiece.h 168 typedef __true_type has_trivial_default_constructor;
169 typedef __true_type has_trivial_copy_constructor;
170 typedef __true_type has_trivial_assignment_operator;
171 typedef __true_type has_trivial_destructor;
172 typedef __true_type is_POD_type;
  /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 55 char _UseVoidPtrStorageType(const __true_type& /*POD*/, ...);
56 char* _UseVoidPtrStorageType(const __true_type& /*POD*/, _VoidPointerShim);
60 char _UseConstVoidPtrStorageType(const __true_type& /*POD*/, ...);
61 char* _UseConstVoidPtrStorageType(const __true_type& /*POD*/, _ConstVoidPointerShim);
65 char _UseVolatileVoidPtrStorageType(const __true_type& /*POD*/, ...);
66 char* _UseVolatileVoidPtrStorageType(const __true_type& /*POD*/, _VolatileVoidPointerShim);
70 char _UseConstVolatileVoidPtrStorageType(const __true_type& /*POD*/, ...);
71 char* _UseConstVolatileVoidPtrStorageType(const __true_type& /*POD*/, _ConstVolatileVoidPointerShim);
93 enum { use_void_ptr = (sizeof(_STLP_PRIV _UseVoidPtrStorageType(__true_type(),
104 enum { use_void_ptr = (sizeof(_STLP_PRIV _UseConstVoidPtrStorageType(__true_type(),
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/pointers/
_tools.h 55 char _UseVoidPtrStorageType(const __true_type& /*POD*/, ...);
56 char* _UseVoidPtrStorageType(const __true_type& /*POD*/, _VoidPointerShim);
60 char _UseConstVoidPtrStorageType(const __true_type& /*POD*/, ...);
61 char* _UseConstVoidPtrStorageType(const __true_type& /*POD*/, _ConstVoidPointerShim);
65 char _UseVolatileVoidPtrStorageType(const __true_type& /*POD*/, ...);
66 char* _UseVolatileVoidPtrStorageType(const __true_type& /*POD*/, _VolatileVoidPointerShim);
70 char _UseConstVolatileVoidPtrStorageType(const __true_type& /*POD*/, ...);
71 char* _UseConstVolatileVoidPtrStorageType(const __true_type& /*POD*/, _ConstVolatileVoidPointerShim);
93 enum { use_void_ptr = (sizeof(_STLP_PRIV _UseVoidPtrStorageType(__true_type(),
104 enum { use_void_ptr = (sizeof(_STLP_PRIV _UseConstVoidPtrStorageType(__true_type(),
    [all...]

Completed in 999 milliseconds

1 2 3 4 5