Home
last modified time | relevance | path

Searched defs:transform_attribute (Results 1 – 16 of 16) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/qi/detail/
Dattributes.hpp68 struct transform_attribute struct
80 struct transform_attribute<boost::optional<Exposed>, Transformed struct
83 typedef Transformed& type;
84 static Transformed& pre(boost::optional<Exposed>& val) in pre()
90 static void post(boost::optional<Exposed>&, Transformed const&) {} in post()
91 static void fail(boost::optional<Exposed>& val) in fail()
99 struct transform_attribute<unused_type, unused_type> struct
101 typedef unused_type type;
102 static unused_type pre(unused_type) { return unused; } in pre()
103 static void post(unused_type, unused_type) {} in post()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/karma/detail/
Dattributes.hpp18 struct transform_attribute struct
20 typedef Transformed type;
21 static Transformed pre(Exposed& val) in pre()
40 struct transform_attribute<Attribute const, Attribute> struct
42 typedef Attribute const& type;
43 static Attribute const& pre(Attribute const& val) { return val; } in pre()
49 struct transform_attribute<unused_type, unused_type> struct
51 typedef unused_type type;
52 static unused_type pre(unused_type) { return unused; } in pre()
56 struct transform_attribute<unused_type const, unused_type> struct
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/x3/nonterminal/detail/
Dtransform_attribute.hpp45 struct transform_attribute struct
50 struct transform_attribute<unused_type, unused_type> struct
52 typedef unused_type type;
53 static unused_type pre(unused_type) { return unused; } in pre()
54 static void post(unused_type, unused_type) {} in post()
58 struct transform_attribute<unused_type const, unused_type> struct
62 struct transform_attribute<unused_type, Attribute> struct
66 struct transform_attribute<unused_type const, Attribute> struct
70 struct transform_attribute<Attribute, unused_type> struct
74 struct transform_attribute<Attribute const, unused_type> struct
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/utree/
Dutree_traits.hpp1177 struct transform_attribute<utree const, utree::nil_type, karma::domain> struct
1179 typedef utree::nil_type type;
1181 static type pre(utree const&) in pre()
1188 struct transform_attribute<utree const, char, karma::domain> struct
1190 typedef char type;
1192 static type pre(utree const& t) in pre()
1200 struct transform_attribute<utree const, bool, karma::domain> struct
1202 typedef bool type;
1204 static type pre(utree const& t) in pre()
1211 struct transform_attribute<utree const, int, karma::domain> struct
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/test/qi/
Dattribute2.cpp59 struct transform_attribute<test_int_data1, int, qi::domain> struct
61 typedef int type;
62 static int pre(test_int_data1& d) { return d.i; } in pre()
63 static void post(test_int_data1& d, int i) { d.i = i; } in post()
64 static void fail(test_int_data1&) {} in fail()
79 struct transform_attribute<test_int_data2, int, qi::domain> struct
81 typedef int& type;
82 static int& pre(test_int_data2& d) { return d.i; } in pre()
83 static void post(test_int_data2&, int const&) {} in post()
84 static void fail(test_int_data2&) {} in fail()
Dattribute1.cpp59 struct transform_attribute<test_int_data1, int, qi::domain> struct
61 typedef int type;
62 static int pre(test_int_data1& d) { return d.i; } in pre()
63 static void post(test_int_data1& d, int i) { d.i = i; } in post()
64 static void fail(test_int_data1&) {} in fail()
79 struct transform_attribute<test_int_data2, int, qi::domain> struct
81 typedef int& type;
82 static int& pre(test_int_data2& d) { return d.i; } in pre()
83 static void post(test_int_data2&, int const&) {} in post()
84 static void fail(test_int_data2&) {} in fail()
Dregression_transform_assignment.cpp23 struct transform_attribute<foo_parts struct
27 typedef fusion::tuple<std::string&, optional<std::string>&> type;
29 static type pre(foo_parts & parts) in pre()
34 static void post(foo_parts &, type const &) {} in post()
35 static void fail(foo_parts &) {} in fail()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/
Dadapt_adt_attributes.hpp256 struct transform_attribute< struct
264 typedef Attribute type;
267 pre(fusion::extension::adt_attribute_proxy<T, N, false>& val) in pre()
272 post( in post()
279 fail(fusion::extension::adt_attribute_proxy<T, N, false>&) in fail()
286 struct transform_attribute< struct
296 typedef Attribute& type;
299 pre(fusion::extension::adt_attribute_proxy<T, N, Const>& val) in pre()
304 post( in post()
310 fail(fusion::extension::adt_attribute_proxy<T, N, Const>&) in fail()
Dattributes.hpp958 struct transform_attribute struct
968 struct transform_attribute<unused_type, Transformed, Domain> struct
973 struct transform_attribute<unused_type const, Transformed, Domain> struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/example/qi/
Dparse_date.cpp30 struct transform_attribute< struct
33 typedef fusion::vector<int, int, int> date_parts;
37 typedef date_parts type;
47 static date_parts pre(boost::gregorian::date) in pre()
57 static void post(boost::gregorian::date& d, date_parts const& v) in post()
65 static void fail(boost::gregorian::date&) {} in fail()
Dadapt_template_struct.cpp42 struct transform_attribute<client::data<A, B>, fusion::vector<A&, B&>, qi::domain> struct
44 typedef fusion::vector<A&, B&> type;
46 static type pre(client::data<A, B>& val) { return type(val.a, val.b); } in pre()
47 static void post(client::data<A, B>&, fusion::vector<A&, B&> const&) {} in post()
48 static void fail(client::data<A, B>&) {} in fail()
Dreference.cpp295 struct transform_attribute<int_data, int, qi::domain> struct
297 typedef int& type;
298 static int& pre(int_data& d) { return d.i; } in pre()
299 static void post(int_data& val, int const& attr) {} in post()
300 static void fail(int_data&) {} in fail()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/test/karma/
Dattribute.cpp55 struct transform_attribute<test_int_data1 const, int, karma::domain> struct
57 typedef int type;
58 static int pre(test_int_data1 const& d) { return d.i; } in pre()
74 struct transform_attribute<test_int_data2 const, int, karma::domain> struct
76 typedef int const& type;
77 static int const& pre(test_int_data2 const& d) { return d.i; } in pre()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/example/support/utree/
Dsexpr_parser.hpp20 struct transform_attribute<utree::nil_type, unused_type, qi::domain> { struct
21 typedef unused_type type;
23 static unused_type pre (utree::nil_type&) { return unused_type(); } in pre()
24 static void post (utree::nil_type&, unused_type) { } in post()
25 static void fail (utree::nil_type&) { } in fail()
Dsexpr_generator.hpp20 struct transform_attribute<utree::nil_type, unused_type, karma::domain> { struct
21 typedef unused_type type;
23 static unused_type pre (utree::nil_type&) { return unused_type(); } in pre()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/example/karma/
Dreference.cpp187 struct transform_attribute<int_data const, int, karma::domain> struct
189 typedef int type;
190 static int pre(int_data const& d) { return d.i; } in pre()