/third_party/boost/libs/phoenix/test/container/ |
D | container_tests.hpp | 70 template <typename Container> 71 void test_assign(Container c) in test_assign() 75 typename Container::size_type count = 2; in test_assign() 76 typename Container::const_iterator first = c.begin(); in test_assign() 77 typename Container::const_iterator second = first; in test_assign() 78 typename Container::value_type value = *first; in test_assign() 88 cerr << "Failed " << typeid(Container).name() << " test_assign 1\n"; in test_assign() 93 Container const const_c = c; in test_assign() 98 template <typename Container> 99 void test_assign2(Container c) in test_assign2() [all …]
|
/third_party/boost/boost/spirit/home/x3/support/traits/ |
D | container_traits.hpp | 72 template <typename Container, typename Enable = void> 74 : detail::remove_value_const<typename Container::value_type> 77 template <typename Container> 78 struct container_value<Container const> : container_value<Container> {}; 96 template <typename Container, typename Enable = void> 98 : mpl::identity<typename Container::iterator> {}; 100 template <typename Container> 101 struct container_iterator<Container const> 102 : mpl::identity<typename Container::const_iterator> {}; 113 template <typename Container, typename T> [all …]
|
/third_party/boost/libs/range/test/test_driver/ |
D | range_return_test_driver.hpp | 28 template< class Container, class Iterator > 30 Container& test, in test() 31 Container& reference, in test() 45 template< class Container, class Iterator > 47 Container& test, in test() 48 Container& reference, in test() 66 template< class Container, class Iterator > 68 Container& test, in test() 69 Container& reference, in test() 95 template< class Container, class Iterator > [all …]
|
/third_party/boost/boost/thread/concurrent_queues/ |
D | sync_deque.hpp | 32 template <class ValueType, class Container = csbl::devector<ValueType> > 34 : public detail::sync_queue_base<ValueType, Container > 36 typedef detail::sync_queue_base<ValueType, Container > super; 105 template <class ValueType, class Container> 106 sync_deque<ValueType, Container>::sync_deque() : in sync_deque() 133 template <class ValueType, class Container> 134 sync_deque<ValueType, Container>::~sync_deque() in ~sync_deque() 138 template <class ValueType, class Container> 139 …queue_op_status sync_deque<ValueType, Container>::try_pull_front(ValueType& elem, unique_lock<mute… in try_pull_front() 149 template <class ValueType, class Container> [all …]
|
D | sync_queue.hpp | 32 template <class ValueType, class Container = csbl::devector<ValueType> > 34 : public detail::sync_queue_base<ValueType, Container > 36 typedef detail::sync_queue_base<ValueType, Container > super; 105 template <class ValueType, class Container> 106 sync_queue<ValueType, Container>::sync_queue() : in sync_queue() 133 template <class ValueType, class Container> 134 sync_queue<ValueType, Container>::~sync_queue() in ~sync_queue() 138 template <class ValueType, class Container> 139 …queue_op_status sync_queue<ValueType, Container>::try_pull(ValueType& elem, unique_lock<mutex>& lk) in try_pull() 149 template <class ValueType, class Container> [all …]
|
D | sync_priority_queue.hpp | 36 class Container = csbl::vector<Type>, 42 Container _elements; 46 typedef typename Container::size_type size_type; 95 class Container = csbl::vector<ValueType>, 96 class Compare = std::less<typename Container::value_type> > 98 …: public detail::sync_queue_base<ValueType, boost::detail::priority_queue<ValueType,Container,Comp… 100 …typedef detail::sync_queue_base<ValueType, boost::detail::priority_queue<ValueType,Container,Compa… 172 template <class T, class Container,class Cmp> 173 void sync_priority_queue<T,Container,Cmp>::push(unique_lock<mutex>& lk, const T& elem) in push() 179 template <class T, class Container,class Cmp> [all …]
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | framework_test.dart | 69 Container( 73 Container( 86 '- Container-[<1>]\n' 87 '- Container-[<2>]\n' 99 Container( 102 Container( 105 Container( 114 Container( 118 Container( 132 '- Container-[<1>]\n' [all …]
|
D | list_view_correction_test.dart | 18 Container(height: 400.0, child: const Text('1')), 19 Container(height: 400.0, child: const Text('2')), 20 Container(height: 400.0, child: const Text('3')), 21 Container(height: 400.0, child: const Text('4')), 22 Container(height: 400.0, child: const Text('5')), 23 Container(height: 400.0, child: const Text('6')), 41 Container(height: 200.0, child: const Text('1')), 42 Container(height: 400.0, child: const Text('2')), 43 Container(height: 400.0, child: const Text('3')), 44 Container(height: 400.0, child: const Text('4')), [all …]
|
/third_party/boost/libs/range/test/algorithm_test/ |
D | unique.cpp | 33 template< class Container > 34 BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type 35 test_iter(Container& cont) in test_iter() 45 template< class Container, class Policy > 46 BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type 47 operator()(Policy&, Container& cont) in operator ()() 49 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type result_t; in operator ()() 51 Container cont2(cont); in operator ()() 64 template<typename Container> 73 Container, result_type [all …]
|
D | min_element.cpp | 29 template< class Container > 30 BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type 31 test_iter(Container& cont) in test_iter() 33 typedef BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type iter_t; in test_iter() 42 template< class Container, class Policy > 43 BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type 44 operator()(Policy&, Container& cont) in operator ()() 46 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type result_t; in operator ()() 53 template< class Container > 54 BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type [all …]
|
D | max_element.cpp | 29 template< class Container > 30 BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type 31 test_iter(Container& cont) in test_iter() 33 typedef BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type iter_t; in test_iter() 43 template<class Container, class Policy> 44 BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type 45 operator()(Policy&, Container& cont) in operator ()() 47 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type result_t; in operator ()() 55 template< class Container > 56 BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type [all …]
|
D | upper_bound.cpp | 28 template< class Container > 29 BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type 30 test_iter(Container& cont) in test_iter() 32 typedef BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type iter_t; in test_iter() 41 template<class Container, class Policy> 42 BOOST_DEDUCED_TYPENAME boost::range_return<Container,result_type>::type 43 operator()(Policy&, Container& cont) in operator ()() 45 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,result_type>::type result_t; in operator ()() 52 template< class Container > 53 BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type [all …]
|
D | lower_bound.cpp | 29 template< class Container > 30 BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type 31 test_iter(Container& cont) in test_iter() 33 typedef BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type iter_t; in test_iter() 42 template<class Container, class Policy> 43 BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type 44 operator()(Policy&, Container& cont) in operator ()() 46 … typedef BOOST_DEDUCED_TYPENAME boost::range_return<Container,return_type>::type result_t; in operator ()() 53 template< class Container > 54 BOOST_DEDUCED_TYPENAME boost::range_iterator<Container>::type [all …]
|
D | nth_element.cpp | 28 template<class Container, class Iterator> 29 void test_nth_element(Container& cont, Iterator mid) in test_nth_element() 31 const Container old_cont(cont); in test_nth_element() 38 Container cont2(old_cont); in test_nth_element() 48 template<class Container, class Iterator> 49 void reference_nth_element(Container& cont, Iterator mid) in reference_nth_element() 58 template<class Container, class Iterator> 59 void test_nth_element(Container& cont, Iterator mid) in test_nth_element() 61 const Container old_cont(cont); in test_nth_element() 65 Container cont2(old_cont); in test_nth_element() [all …]
|
D | equal_range.cpp | 26 template<class Container, class Pair> 28 const Container& reference, in check_result() 30 const Container& test, in check_result() 34 typedef BOOST_DEDUCED_TYPENAME range_iterator<const Container>::type in check_result() 58 template<class Container> 59 void test(Container& cont) in test() 61 Container reference(cont); in test() 62 Container test(cont); in test() 64 typedef BOOST_DEDUCED_TYPENAME range_iterator<Container>::type iterator_t; in test() 79 template<class Container, class BinaryPredicate> [all …]
|
/third_party/boost/boost/python/suite/indexing/ |
D | map_indexing_suite.hpp | 17 template <class Container, bool NoProxy, class DerivedPolicies> 22 template <class Container, bool NoProxy> 24 : public map_indexing_suite<Container, 25 NoProxy, final_map_derived_policies<Container, NoProxy> > {}; 45 class Container, 48 = detail::final_map_derived_policies<Container, NoProxy> > 51 Container 55 , typename Container::value_type::second_type 56 , typename Container::key_type 57 , typename Container::key_type [all …]
|
D | vector_indexing_suite.hpp | 16 template <class Container, bool NoProxy, class DerivedPolicies> 21 template <class Container, bool NoProxy> 23 : public vector_indexing_suite<Container, 24 NoProxy, final_vector_derived_policies<Container, NoProxy> > {}; 44 class Container, 47 = detail::final_vector_derived_policies<Container, NoProxy> > 49 : public indexing_suite<Container, DerivedPolicies, NoProxy> 53 typedef typename Container::value_type data_type; 54 typedef typename Container::value_type key_type; 55 typedef typename Container::size_type index_type; [all …]
|
/third_party/boost/boost/spirit/home/support/ |
D | container.hpp | 129 template <typename Container, typename Enable/* = void*/> 131 : detail::remove_value_const<typename Container::value_type> 180 template <typename Container, typename Enable/* = void*/> 183 typedef typename Container::iterator type; 186 template <typename Container> 187 struct container_iterator<Container&> 188 : container_iterator<Container> 191 template <typename Container> 192 struct container_iterator<Container const> 194 typedef typename Container::const_iterator type; [all …]
|
/third_party/boost/boost/spirit/home/qi/detail/ |
D | pass_container.hpp | 48 template <typename Container, typename ValueType, typename Attribute 60 template <typename Container, typename ValueType, typename Attribute 64 negate_weak_substitute_if_not<Sequence, Attribute, Container> 71 template <typename Container, typename ValueType, typename Attribute 77 Attribute, not_compatible_element<Container, ValueType, mpl::_1> 87 template <typename Container, typename ValueType, typename Attribute 90 Container, ValueType, Attribute, Sequence, true> 94 , not_compatible_element<Container, ValueType, mpl::_1, Sequence> 101 template <typename Container, typename ValueType, typename Attribute 103 struct pass_through_container_base<Container, ValueType, Attribute [all …]
|
/third_party/boost/boost/spirit/home/karma/detail/ |
D | pass_container.hpp | 53 template <typename Container, typename ValueType, typename Attribute 65 template <typename Container, typename ValueType, typename Attribute 69 negate_weak_substitute_if_not<Sequence, Container, Attribute> 76 template <typename Container, typename ValueType, typename Attribute 82 Attribute, not_compatible_element<Container, ValueType, mpl::_1> 92 template <typename Container, typename ValueType, typename Attribute 95 Container, ValueType, Attribute, Sequence, true> 99 , not_compatible_element<Container, ValueType, mpl::_1, Sequence> 106 template <typename Container, typename ValueType, typename Attribute 108 struct pass_through_container_base<Container, ValueType, Attribute [all …]
|
/third_party/boost/boost/range/algorithm_ext/ |
D | erase.hpp | 26 template< class Container > 27 inline Container& erase( Container& on, in erase() 28 iterator_range<BOOST_DEDUCED_TYPENAME Container::iterator> to_erase ) in erase() 30 BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<Container> )); in erase() 35 template< class Container, class T > 36 inline Container& remove_erase( Container& on, const T& val ) in remove_erase() 38 BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<Container> )); in remove_erase() 45 template< class Container, class Pred > 46 inline Container& remove_erase_if( Container& on, Pred pred ) in remove_erase_if() 48 BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<Container> )); in remove_erase_if() [all …]
|
/third_party/boost/boost/ |
D | shared_container_iterator.hpp | 18 template <typename Container> 20 shared_container_iterator<Container>, 21 typename Container::iterator> { 24 shared_container_iterator<Container>, 25 typename Container::iterator> super_t; 27 typedef typename Container::iterator iterator_t; 28 typedef boost::shared_ptr<Container> container_ref_t; 40 template <typename Container> 41 inline shared_container_iterator<Container> 42 make_shared_container_iterator(typename Container::iterator iter, in make_shared_container_iterator() [all …]
|
/third_party/boost/boost/msm/front/euml/ |
D | container.hpp | 356 template <class Container,class Element> 357 struct Push_Back_ : euml_action<Push_Back_<Container,Element> > 374 (Container()(evt,fsm,src,tgt)).push_back(Element()(evt,fsm,src,tgt)); in operator ()() 379 (Container()(evt,fsm,state)).push_back(Element()(evt,fsm,state)); in operator ()() 398 template <class Container> 399 struct Pop_Back_ : euml_action<Pop_Back_<Container> > 416 (Container()(evt,fsm,src,tgt)).pop_back(); in operator ()() 421 (Container()(evt,fsm,state)).pop_back(); in operator ()() 440 template <class Container,class Element> 441 struct Push_Front_ : euml_action<Push_Front_<Container,Element> > [all …]
|
/third_party/boost/libs/range/test/adaptor_test/ |
D | type_erased_test.hpp | 62 template<class Container> 63 void test_type_erased_impl(Container& c) in test_type_erased_impl() 66 typedef typename boost::range_value<Container>::type value_type; in test_type_erased_impl() 84 template<class Container> 85 void test_const_and_mutable(Container& c) in test_const_and_mutable() 89 const Container& const_c = c; in test_const_and_mutable() 93 template<class Container> 98 typedef typename boost::range_value<Container>::type value_type; in test_driver() 100 Container c; in test_driver() 112 , class Container [all …]
|
/third_party/boost/libs/stl_interfaces/example/ |
D | back_insert_iterator.cpp | 20 template<typename Container> 22 back_insert_iterator<Container>, 24 typename Container::value_type, 25 back_insert_iterator<Container> &> 31 explicit back_insert_iterator(Container & c) : c_(std::addressof(c)) {} in back_insert_iterator() 34 back_insert_iterator & operator=(typename Container::value_type const & v) in operator =() 40 back_insert_iterator & operator=(typename Container::value_type && v) in operator =() 54 back_insert_iterator<Container>, 56 typename Container::value_type, 57 back_insert_iterator<Container> &>; [all …]
|