/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/ |
D | types.pass.cpp | 39 typedef std::unordered_map<char, short> C; in main() typedef 40 static_assert((std::is_same<C::key_type, char>::value), ""); in main() 41 static_assert((std::is_same<C::mapped_type, short>::value), ""); in main() 42 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), ""); in main() 43 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), ""); in main() 44 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), ""); in main() 45 …static_assert((std::is_same<C::value_type, std::pair<const C::key_type, C::mapped_type> >::value),… in main() 46 static_assert((std::is_same<C::reference, C::value_type&>::value), ""); in main() 47 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), ""); in main() 48 static_assert((std::is_same<C::pointer, C::value_type*>::value), ""); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/ |
D | types.pass.cpp | 39 typedef std::unordered_multimap<char, short> C; in main() typedef 40 static_assert((std::is_same<C::key_type, char>::value), ""); in main() 41 static_assert((std::is_same<C::mapped_type, short>::value), ""); in main() 42 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), ""); in main() 43 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), ""); in main() 44 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), ""); in main() 45 …static_assert((std::is_same<C::value_type, std::pair<const C::key_type, C::mapped_type> >::value),… in main() 46 static_assert((std::is_same<C::reference, C::value_type&>::value), ""); in main() 47 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), ""); in main() 48 static_assert((std::is_same<C::pointer, C::value_type*>::value), ""); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/ |
D | types.pass.cpp | 38 typedef std::unordered_set<short> C; in main() typedef 39 static_assert((std::is_same<C::value_type, short>::value), ""); in main() 40 static_assert((std::is_same<C::key_type, short>::value), ""); in main() 41 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), ""); in main() 42 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), ""); in main() 43 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), ""); in main() 44 static_assert((std::is_same<C::reference, C::value_type&>::value), ""); in main() 45 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), ""); in main() 46 static_assert((std::is_same<C::pointer, C::value_type*>::value), ""); in main() 47 static_assert((std::is_same<C::const_pointer, const C::value_type*>::value), ""); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/ |
D | types.pass.cpp | 38 typedef std::unordered_multiset<short> C; in main() typedef 39 static_assert((std::is_same<C::value_type, short>::value), ""); in main() 40 static_assert((std::is_same<C::key_type, short>::value), ""); in main() 41 static_assert((std::is_same<C::hasher, std::hash<C::key_type> >::value), ""); in main() 42 static_assert((std::is_same<C::key_equal, std::equal_to<C::key_type> >::value), ""); in main() 43 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), ""); in main() 44 static_assert((std::is_same<C::reference, C::value_type&>::value), ""); in main() 45 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), ""); in main() 46 static_assert((std::is_same<C::pointer, C::value_type*>::value), ""); in main() 47 static_assert((std::is_same<C::const_pointer, const C::value_type*>::value), ""); in main() [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/detail/ |
D | bool_trait_def.hpp | 43 # define BOOST_TT_AUX_BOOL_TRAIT_VALUE_DECL(C) \ argument 44 typedef ::boost::integral_constant<bool,C> type; \ 47 # define BOOST_TT_AUX_BOOL_C_BASE(C) argument 51 # define BOOST_TT_AUX_BOOL_TRAIT_VALUE_DECL(C) \ argument 52 typedef ::boost::integral_constant<bool,C> base_; \ 59 # define BOOST_TT_AUX_BOOL_TRAIT_VALUE_DECL(C) /**/ argument 63 # define BOOST_TT_AUX_BOOL_C_BASE(C) : public ::boost::integral_constant<bool,C> argument 67 #define BOOST_TT_AUX_BOOL_TRAIT_DEF1(trait,T,C) \ argument 69 BOOST_TT_AUX_BOOL_C_BASE(C) \ 72 BOOST_TT_AUX_BOOL_TRAIT_VALUE_DECL(C) \ [all …]
|
D | size_t_trait_def.hpp | 22 # define BOOST_TT_AUX_SIZE_T_BASE(C) public ::boost::integral_constant<std::size_t,C> argument 23 # define BOOST_TT_AUX_SIZE_T_TRAIT_VALUE_DECL(C) /**/ argument 25 # define BOOST_TT_AUX_SIZE_T_BASE(C) public ::boost::mpl::size_t<C> argument 26 # define BOOST_TT_AUX_SIZE_T_TRAIT_VALUE_DECL(C) \ argument 27 typedef ::boost::mpl::size_t<C> base_; \ 33 #define BOOST_TT_AUX_SIZE_T_TRAIT_DEF1(trait,T,C) \ argument 35 : BOOST_TT_AUX_SIZE_T_BASE(C) \ 38 BOOST_TT_AUX_SIZE_T_TRAIT_VALUE_DECL(C) \ 45 #define BOOST_TT_AUX_SIZE_T_TRAIT_SPEC1(trait,spec,C) \ argument 47 : BOOST_TT_AUX_SIZE_T_BASE(C) \ [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
D | foreach.hpp | 81 template<typename C> 82 inline is_const<C> 83 is_const_coll( C& ) in is_const_coll() argument 85 return is_const<C>(); in is_const_coll() 94 template<typename C> 95 inline static_any<BOOST_DEDUCED_TYPENAME C::iterator> 96 begin( C& t, mpl::false_ ) in begin() 98 return static_any<BOOST_DEDUCED_TYPENAME C::iterator>( t.begin() ); in begin() 103 template<typename C> 104 inline static_any<BOOST_DEDUCED_TYPENAME C::const_iterator> [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/ |
D | types.pass.cpp | 36 typedef std::array<T, 10> C; in main() typedef 37 static_assert((std::is_same<C::reference, T&>::value), ""); in main() 38 static_assert((std::is_same<C::const_reference, const T&>::value), ""); in main() 39 static_assert((std::is_same<C::iterator, T*>::value), ""); in main() 40 static_assert((std::is_same<C::const_iterator, const T*>::value), ""); in main() 41 static_assert((std::is_same<C::pointer, T*>::value), ""); in main() 42 static_assert((std::is_same<C::const_pointer, const T*>::value), ""); in main() 43 static_assert((std::is_same<C::size_type, std::size_t>::value), ""); in main() 44 static_assert((std::is_same<C::difference_type, std::ptrdiff_t>::value), ""); in main() 45 …static_assert((std::is_same<C::reverse_iterator, std::reverse_iterator<C::iterator> >::value), ""); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/ |
D | iterators.pass.cpp | 35 typedef std::vector<T> C; in main() typedef 36 C c; in main() 37 C::iterator i = c.begin(); in main() 38 C::iterator j = c.end(); in main() 44 typedef std::vector<T> C; in main() typedef 45 const C c; in main() 46 C::const_iterator i = c.begin(); in main() 47 C::const_iterator j = c.end(); in main() 53 typedef std::vector<T> C; in main() typedef 54 C c; in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/ |
D | types.pass.cpp | 44 typedef std::deque<T, Allocator> C; in test() typedef 46 static_assert((std::is_same<typename C::value_type, T>::value), ""); in test() 47 … static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), ""); in test() 48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), ""); in test() 49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), ""); in test() 50 …static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::val… in test() 51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), ""); in test() 52 …static_assert((std::is_same<typename C::const_reference, typename Allocator::const_reference>::val… in test() 53 static_assert((std::is_same<typename C::pointer, typename Allocator::pointer>::value), ""); in test() 54 …static_assert((std::is_same<typename C::const_pointer, typename Allocator::const_pointer>::value),… in test() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/ |
D | iterators.pass.cpp | 35 typedef std::list<T> C; in main() typedef 36 C c; in main() 37 C::iterator i = c.begin(); in main() 38 C::iterator j = c.end(); in main() 44 typedef std::list<T> C; in main() typedef 45 const C c; in main() 46 C::const_iterator i = c.begin(); in main() 47 C::const_iterator j = c.end(); in main() 53 typedef std::list<T> C; in main() typedef 54 C c; in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.modifiers/ |
D | insert_iter_iter.pass.cpp | 23 template <class C> 24 C 35 C c(init, 0); in make() 45 template <class C> 47 test(int P, C& c1, const C& c2) in test() 49 typedef typename C::iterator I; in test() 50 typedef typename C::const_iterator CI; in test() 66 template <class C> 70 typedef typename C::iterator I; in testN() 71 typedef typename C::const_iterator CI; in testN() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.iter/ |
D | iterators.pass.cpp | 29 typedef std::forward_list<T> C; in main() typedef 30 C c; in main() 31 C::iterator i = c.begin(); in main() 32 C::iterator j = c.end(); in main() 38 typedef std::forward_list<T> C; in main() typedef 39 const C c; in main() 40 C::const_iterator i = c.begin(); in main() 41 C::const_iterator j = c.end(); in main() 47 typedef std::forward_list<T> C; in main() typedef 48 C c; in main() [all …]
|
D | before_begin.pass.cpp | 26 typedef std::forward_list<T> C; in main() typedef 27 C c; in main() 28 C::iterator i = c.before_begin(); in main() 33 typedef std::forward_list<T> C; in main() typedef 34 const C c; in main() 35 C::const_iterator i = c.before_begin(); in main() 40 typedef std::forward_list<T> C; in main() typedef 41 const C c; in main() 42 C::const_iterator i = c.cbefore_begin(); in main() 48 typedef std::forward_list<T> C; in main() typedef [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/ |
D | value_wknd.hpp | 44 # define BOOST_MPL_AUX_VALUE_WKND(C) \ argument 45 ::BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE::aux::value_wknd< C > \ 47 # define BOOST_MPL_AUX_MSVC_VALUE_WKND(C) BOOST_MPL_AUX_VALUE_WKND(C) argument 49 # define BOOST_MPL_AUX_VALUE_WKND(C) C argument 50 # define BOOST_MPL_AUX_MSVC_VALUE_WKND(C) \ argument 51 ::boost::mpl::aux::value_wknd< C > \ 57 # define BOOST_MPL_AUX_VALUE_WKND(C) C argument 58 # define BOOST_MPL_AUX_MSVC_VALUE_WKND(C) C argument 63 # define BOOST_MPL_AUX_NESTED_VALUE_WKND(T, C) \ argument 64 BOOST_MPL_AUX_STATIC_CAST(T, C::value) \ [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/ |
D | thousands_sep.pass.cpp | 26 typedef char C; in main() typedef 27 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 31 typedef wchar_t C; in main() typedef 32 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 39 typedef char C; in main() typedef 40 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 44 typedef wchar_t C; in main() typedef 45 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 52 typedef char C; in main() typedef 53 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() [all …]
|
D | grouping.pass.cpp | 26 typedef char C; in main() typedef 27 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 31 typedef wchar_t C; in main() typedef 32 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 39 typedef char C; in main() typedef 40 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 44 typedef wchar_t C; in main() typedef 45 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 52 typedef char C; in main() typedef 53 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() [all …]
|
D | decimal_point.pass.cpp | 26 typedef char C; in main() typedef 27 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 31 typedef wchar_t C; in main() typedef 32 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 39 typedef char C; in main() typedef 40 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 44 typedef wchar_t C; in main() typedef 45 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() 52 typedef char C; in main() typedef 53 const std::numpunct<C>& np = std::use_facet<std::numpunct<C> >(l); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/ |
D | iterators.pass.cpp | 29 typedef std::vector<T> C; in main() typedef 30 C c; in main() 31 C::iterator i = c.begin(); in main() 32 C::iterator j = c.end(); in main() 38 typedef std::vector<T> C; in main() typedef 39 const C c; in main() 40 C::const_iterator i = c.begin(); in main() 41 C::const_iterator j = c.end(); in main() 47 typedef std::vector<T> C; in main() typedef 48 C c; in main() [all …]
|
D | construct_size.pass.cpp | 21 template <class C> 23 test2(typename C::size_type n, typename C::allocator_type const& a = typename C::allocator_type ()) in test2() 26 C c(n, a); in test2() 31 for (typename C::const_iterator i = c.cbegin(), e = c.cend(); i != e; ++i) in test2() 32 assert(*i == typename C::value_type()); in test2() 37 template <class C> 39 test1(typename C::size_type n) in test1() 41 C c(n); in test1() 44 assert(c.get_allocator() == typename C::allocator_type()); in test1() 45 for (typename C::const_iterator i = c.cbegin(), e = c.cend(); i != e; ++i) in test1() [all …]
|
/ndk/sources/android/support/src/musl-multibyte/ |
D | internal.c | 9 #define C(x) ( x<2 ? -1 : ( R(0x80,0xc0) | x ) ) macro 10 #define D(x) C((x+16)) 25 C(0x2),C(0x3),C(0x4),C(0x5),C(0x6),C(0x7), 26 C(0x8),C(0x9),C(0xa),C(0xb),C(0xc),C(0xd),C(0xe),C(0xf),
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/ |
D | remove_if.pass.cpp | 29 typedef std::forward_list<T> C; in main() typedef 32 C c1(std::begin(t1), std::end(t1)); in main() 33 C c2(std::begin(t2), std::end(t2)); in main() 39 typedef std::forward_list<T> C; in main() typedef 41 C c1(std::begin(t1), std::end(t1)); in main() 42 C c2; in main() 48 typedef std::forward_list<T> C; in main() typedef 51 C c1(std::begin(t1), std::end(t1)); in main() 52 C c2(std::begin(t2), std::end(t2)); in main() 58 typedef std::forward_list<T> C; in main() typedef [all …]
|
D | remove.pass.cpp | 24 typedef std::forward_list<T> C; in main() typedef 27 C c1(std::begin(t1), std::end(t1)); in main() 28 C c2(std::begin(t2), std::end(t2)); in main() 34 typedef std::forward_list<T> C; in main() typedef 36 C c1(std::begin(t1), std::end(t1)); in main() 37 C c2; in main() 43 typedef std::forward_list<T> C; in main() typedef 46 C c1(std::begin(t1), std::end(t1)); in main() 47 C c2(std::begin(t2), std::end(t2)); in main() 53 typedef std::forward_list<T> C; in main() typedef [all …]
|
D | unique.pass.cpp | 24 typedef std::forward_list<T> C; in main() typedef 27 C c1(std::begin(t1), std::end(t1)); in main() 28 C c2(std::begin(t2), std::end(t2)); in main() 34 typedef std::forward_list<T> C; in main() typedef 37 C c1(std::begin(t1), std::end(t1)); in main() 38 C c2(std::begin(t2), std::end(t2)); in main() 44 typedef std::forward_list<T> C; in main() typedef 47 C c1(std::begin(t1), std::end(t1)); in main() 48 C c2(std::begin(t2), std::end(t2)); in main() 54 typedef std::forward_list<T> C; in main() typedef [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/ |
D | assign_iter_iter.pass.cpp | 21 template <class C> 22 C 33 C c(init, 0); in make() 43 template <class C> 45 test(C& c1, const C& c2) in test() 53 template <class C> 57 typedef typename C::iterator I; in testN() 58 typedef typename C::const_iterator CI; in testN() 59 C c1 = make<C>(N, start); in testN() 60 C c2 = make<C>(M); in testN() [all …]
|