Home
last modified time | relevance | path

Searched defs:transform_view (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/view/transform_view/
Dtransform_view.hpp39 struct transform_view : sequence_base<transform_view<Sequence1, Sequence2, F> > struct
42 typedef transform_view2_tag fusion_tag;
43 typedef fusion_sequence_tag tag; // this gets picked up by MPL
44 typedef mpl::true_ is_view;
46 typedef typename traits::category_of<Sequence1>::type category1;
47 typedef typename traits::category_of<Sequence2>::type category2;
49 fusion::vector2<Sequence1, Sequence2> >::type category;
50 typedef typename result_of::begin<Sequence1>::type first1_type;
51 typedef typename result_of::begin<Sequence2>::type first2_type;
52 typedef typename result_of::end<Sequence1>::type last1_type;
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/
Dtransform_view.hpp28 struct transform_view struct
31 typedef typename lambda<F>::type f_;
32 typedef typename begin<Sequence>::type first_;
33 typedef typename end<Sequence>::type last_;
37 typedef transform_view type;
38 typedef aux::transform_iter< first_,last_,f_ > begin;
39 typedef aux::transform_iter< last_,last_,f_ > end;
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/mpl/doc/src/refmanual/
Dtransform_view.rst3 transform_view title
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__ranges/
Dtransform_view.h87 …_LIBCPP_HIDE_FROM_ABI constexpr _LIBCPP_EXPLICIT_SINCE_CXX23 transform_view(_View __base, _Fn __fu… in transform_view() function
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__ranges/
H A Dtransform_view.h87 …_LIBCPP_HIDE_FROM_ABI constexpr _LIBCPP_EXPLICIT_SINCE_CXX23 transform_view(_View __base, _Fn __fu… in transform_view() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__ranges/
Dtransform_view.h87 …_LIBCPP_HIDE_FROM_ABI constexpr _LIBCPP_EXPLICIT_SINCE_CXX23 transform_view(_View __base, _Fn __fu… in transform_view() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__ranges/
Dtransform_view.h87 …_LIBCPP_HIDE_FROM_ABI constexpr _LIBCPP_EXPLICIT_SINCE_CXX23 transform_view(_View __base, _Fn __fu… in transform_view() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__ranges/
Dtransform_view.h88 …_LIBCPP_HIDE_FROM_ABI constexpr _LIBCPP_EXPLICIT_SINCE_CXX23 transform_view(_View __base, _Fn __fu… in transform_view() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__ranges/
Dtransform_view.h84 …_LIBCPP_HIDE_FROM_ABI constexpr _LIBCPP_EXPLICIT_SINCE_CXX23 transform_view(_View __base, _Fn __fu… in transform_view() function
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.transform/
H A Dgeneral.pass.cpp31 concept ValidTransformView = requires { typename std::ranges::transform_view<T, F>; }; member in std::ranges