Home
last modified time | relevance | path

Searched refs:is_view (Results 1 – 25 of 101) sorted by relevance

12345

/third_party/boost/boost/fusion/view/transform_view/
Dtransform_view.hpp44 typedef mpl::true_ is_view; typedef
76 typename mpl::if_<traits::is_view<Sequence1>, Sequence1, Sequence1&>::type seq1;
77 typename mpl::if_<traits::is_view<Sequence2>, Sequence2, Sequence2&>::type seq2;
93 typedef mpl::true_ is_view; typedef
112 typename mpl::if_<traits::is_view<Sequence>, Sequence, Sequence&>::type seq;
/third_party/boost/boost/fusion/support/
Dis_view.hpp32 typedef typename T::is_view type;
47 struct apply : Sequence::is_view {};
66 struct is_view : struct
/third_party/boost/boost/fusion/view/joint_view/
Djoint_view.hpp49 typedef mpl::true_ is_view; typedef
76 typename mpl::if_<traits::is_view<Sequence1>, Sequence1, Sequence1&>::type seq1;
77 typename mpl::if_<traits::is_view<Sequence2>, Sequence2, Sequence2&>::type seq2;
/third_party/boost/boost/fusion/view/repetitive_view/
Drepetitive_view.hpp32 typedef mpl::true_ is_view; typedef
38 mpl::if_<traits::is_view<Sequence>, Sequence, sequence_type&>::type
/third_party/boost/libs/fusion/test/sequence/
Dboost_array.cpp28 BOOST_MPL_ASSERT_NOT((traits::is_view<array_type>)); in main()
30 BOOST_STATIC_ASSERT(!traits::is_view<array_type>::value); in main()
Darray.cpp24 BOOST_MPL_ASSERT_NOT((traits::is_view<array_type>)); in main()
26 BOOST_STATIC_ASSERT(!traits::is_view<array_type>::value); in main()
Dstd_array.cpp35 BOOST_MPL_ASSERT_NOT((traits::is_view<array_type>)); in main()
37 BOOST_STATIC_ASSERT(!traits::is_view<array_type>::value); in main()
Dadapt_struct_empty.cpp44 BOOST_MPL_ASSERT_NOT((traits::is_view<empty_struct>)); in main()
45 BOOST_STATIC_ASSERT(!traits::is_view<empty_struct>::value); in main()
Ddefine_struct_empty.cpp32 BOOST_MPL_ASSERT_NOT((traits::is_view<empty_struct>)); in BOOST_PP_EMPTY()
33 BOOST_STATIC_ASSERT(!traits::is_view<empty_struct>::value); in BOOST_PP_EMPTY()
Ddefine_struct_inline_empty.cpp32 BOOST_MPL_ASSERT_NOT((traits::is_view<empty_struct>)); in main()
33 BOOST_STATIC_ASSERT(!traits::is_view<empty_struct>::value); in main()
Dadapt_adt_empty.cpp44 BOOST_MPL_ASSERT_NOT((traits::is_view<empty_adt>)); in main()
45 BOOST_STATIC_ASSERT(!traits::is_view<empty_adt>::value); in main()
Dadapt_assoc_struct_empty.cpp44 BOOST_MPL_ASSERT_NOT((traits::is_view<empty_struct>)); in main()
45 BOOST_STATIC_ASSERT(!traits::is_view<empty_struct>::value); in main()
Ddefine_assoc_struct_empty.cpp32 BOOST_MPL_ASSERT_NOT((traits::is_view<empty_struct>)); in BOOST_PP_EMPTY()
33 BOOST_STATIC_ASSERT(!traits::is_view<empty_struct>::value); in BOOST_PP_EMPTY()
Ddefine_assoc_tpl_struct_empty.cpp32 BOOST_MPL_ASSERT_NOT((traits::is_view<empty_struct<void> >)); in main()
33 BOOST_STATIC_ASSERT(!traits::is_view<empty_struct<void> >::value); in main()
Dadapt_assoc_adt_empty.cpp44 BOOST_MPL_ASSERT_NOT((traits::is_view<empty_adt>)); in main()
45 BOOST_STATIC_ASSERT(!traits::is_view<empty_adt>::value); in main()
Dadapt_struct_named_empty.cpp45 BOOST_MPL_ASSERT((traits::is_view<adapted::empty_struct>)); in main()
46 BOOST_STATIC_ASSERT(traits::is_view<adapted::empty_struct>::value); in main()
Dadapt_adt_named_empty.cpp45 BOOST_MPL_ASSERT((traits::is_view<adapted::empty_adt>)); in main()
46 BOOST_STATIC_ASSERT(traits::is_view<adapted::empty_adt>::value); in main()
Dadapt_assoc_adt_named_empty.cpp45 BOOST_MPL_ASSERT((traits::is_view<adapted::empty_adt>)); in main()
46 BOOST_STATIC_ASSERT(traits::is_view<adapted::empty_adt>::value); in main()
Dadapt_assoc_struct_named_empty.cpp45 BOOST_MPL_ASSERT((traits::is_view<adapted::empty_struct>)); in main()
46 BOOST_STATIC_ASSERT(traits::is_view<adapted::empty_struct>::value); in main()
/third_party/boost/boost/fusion/iterator/detail/
Dsegment_sequence.hpp28 typedef typename Sequence::is_view is_view; typedef
/third_party/boost/libs/hana/include/boost/hana/experimental/
Dview.hpp66 struct is_view { struct
72 detail::is_view<Sequence>::value, Sequence, Sequence&
94 struct is_view<sliced_view_t<Sequence, i...>> { struct
117 struct is_view<transformed_view_t<Sequence, F>> { struct
155 struct is_view<joined_view_t<Sequence1, Sequence2>> { struct
176 struct is_view<single_view_t<T>> { struct
194 struct is_view<empty_view_t> { struct
/third_party/boost/boost/hana/experimental/
Dview.hpp66 struct is_view { struct
72 detail::is_view<Sequence>::value, Sequence, Sequence&
94 struct is_view<sliced_view_t<Sequence, i...>> { struct
117 struct is_view<transformed_view_t<Sequence, F>> { struct
155 struct is_view<joined_view_t<Sequence1, Sequence2>> { struct
176 struct is_view<single_view_t<T>> { struct
194 struct is_view<empty_view_t> { struct
/third_party/boost/libs/fusion/doc/
Dsupport.qbk64 [section is_view]
72 views by value, while non-views are held by other views by reference. `is_view`
80 struct is_view
95 typedef traits::is_view<T>::type c;
104 #include <boost/fusion/support/is_view.hpp>
105 #include <boost/fusion/include/is_view.hpp>
109 BOOST_MPL_ASSERT_NOT(( traits::is_view<std::vector<int> > ));
110 BOOST_MPL_ASSERT_NOT(( traits::is_view<int> ));
116 BOOST_MPL_ASSERT(( traits::is_view<filter_view_type> ));
/third_party/boost/boost/fusion/view/filter_view/
Dfilter_view.hpp43 typedef mpl::true_ is_view; typedef
58 typename mpl::if_<traits::is_view<Sequence>, Sequence, Sequence&>::type seq;
/third_party/boost/boost/fusion/view/reverse_view/
Dreverse_view.hpp40 typedef mpl::true_ is_view; typedef
62 typename mpl::if_<traits::is_view<Sequence>, Sequence, Sequence&>::type seq;

12345