Home
last modified time | relevance | path

Searched refs:rcontext (Results 1 – 25 of 37) sorted by relevance

12

/third_party/boost/boost/spirit/home/x3/core/detail/
Dparse_into_container.hpp91 , Context const& context, RContext& rcontext, Attribute& attr, mpl::false_) in call_synthesize_x()
97 if (!parser.parse(first, last, context, rcontext, val)) in call_synthesize_x()
111 , Context const& context, RContext& rcontext, Attribute& attr, mpl::true_) in call_synthesize_x()
113 return parser.parse(first, last, context, rcontext, attr); in call_synthesize_x()
122 , Context const& context, RContext& rcontext, Attribute& attr) in call_synthesize()
128 return call_synthesize_x(parser, first, last, context, rcontext, attr in call_synthesize()
137 , RContext& rcontext, Attribute& attr, mpl::false_ /* is_associative */) in call_synthesize_into_fusion_seq()
141 return call_synthesize(parser, first, last, context, rcontext, in call_synthesize_into_fusion_seq()
150 , RContext& rcontext, Attribute& attr, mpl::true_ /*is_associative*/) in call_synthesize_into_fusion_seq()
161 if (!parser.parse(first, last, context, rcontext, attr_)) in call_synthesize_into_fusion_seq()
[all …]
/third_party/boost/boost/spirit/home/x3/core/
Daction.hpp40 , Context const& context, RuleContext& rcontext, Attribute& attr) const in call_action()
44 call(f, first, last, action_context, rcontext, attr); in call_action()
51 , Context const& context, RuleContext& rcontext, Attribute& attr) const in parse_main()
54 if (this->subject.parse(first, last, context, rcontext, attr)) in parse_main()
56 if (call_action(first, last, context, rcontext, attr)) in parse_main()
69 , Context const& context, RuleContext& rcontext, raw_attribute_type&) const in parse_main()
73 return parse_main(first, last, context, rcontext, rng); in parse_main()
79 , Context const& context, RuleContext& rcontext, unused_type) const in parse()
87 return parse_main(first, last, context, rcontext, attr); in parse()
94 , Context const& context, RuleContext& rcontext, Attribute& attr) const in parse()
[all …]
Dproxy.hpp29 , Context const& context, RuleContext& rcontext, Attribute& attr, Category) const in parse_subject()
31 this->subject.parse(first, last, context, rcontext, attr); in parse_subject()
39 , Context const& context, RuleContext& rcontext, Attribute& attr) const in parse()
41 return this->derived().parse_subject(first, last, context, rcontext, attr in parse()
/third_party/boost/boost/spirit/home/x3/operator/detail/
Dsequence.hpp237 , Context const& context, RContext& rcontext, Attribute& attr in parse_sequence() argument
252 if (parser.left.parse(first, last, context, rcontext, l_attr) in parse_sequence()
253 && parser.right.parse(first, last, context, rcontext, r_attr)) in parse_sequence()
269 , RContext& rcontext, Attribute& attr) in parse_sequence_container() argument
271 return parser.parse(first, last, context, rcontext, attr); in parse_sequence_container()
280 , RContext& rcontext, Attribute& attr) in parse_sequence_container() argument
282 return parse_into_container(parser, first, last, context, rcontext, attr); in parse_sequence_container()
289 , Context const& context, RContext& rcontext, Attribute& attr in parse_sequence() argument
293 if (parse_sequence_container(parser.left, first, last, context, rcontext, attr) in parse_sequence()
294 && parse_sequence_container(parser.right, first, last, context, rcontext, attr)) in parse_sequence()
[all …]
Dalternative.hpp182 , Context const& context, RContext& rcontext, Attribute& attr) in parse_alternative() argument
189 if (p.parse(first, last, context, rcontext, attr_)) in parse_alternative()
207 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
209 return detail::parse_alternative(this->subject, first, last, context, rcontext, attr); in parse()
222 , Context const& context, RContext& rcontext, Attribute& attr, mpl::false_) in call()
224 return detail::parse_into_container(parser.left, first, last, context, rcontext, attr) in call()
225 || detail::parse_into_container(parser.right, first, last, context, rcontext, attr); in call()
232 , Context const& context, RContext& rcontext, Attribute& attr, mpl::true_) in call()
234 …::parse_into_container(alternative_helper<Left>{parser.left}, first, last, context, rcontext, attr) in call()
235 …arse_into_container(alternative_helper<Right>{parser.right}, first, last, context, rcontext, attr); in call()
[all …]
/third_party/boost/boost/spirit/home/x3/operator/
Dalternative.hpp29 , Context const& context, RContext& rcontext, unused_type) const in parse()
31 return this->left.parse(first, last, context, rcontext, unused) in parse()
32 || this->right.parse(first, last, context, rcontext, unused); in parse()
39 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
41 return detail::parse_alternative(this->left, first, last, context, rcontext, attr) in parse()
42 || detail::parse_alternative(this->right, first, last, context, rcontext, attr); in parse()
Dsequence.hpp30 , Context const& context, RContext& rcontext, unused_type) const in parse()
33 if (this->left.parse(first, last, context, rcontext, unused) in parse()
34 && this->right.parse(first, last, context, rcontext, unused)) in parse()
44 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
46 return detail::parse_sequence(*this, first, last, context, rcontext, attr in parse()
Dlist.hpp31 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
35 this->left, first, last, context, rcontext, attr)) in parse()
39 while (this->right.parse(iter, last, context, rcontext, unused) in parse()
41 this->left, iter, last, context, rcontext, attr)) in parse()
Doptional.hpp35 , Context const& context, RContext& rcontext, Attribute& attr in parse_subject()
39 this->subject, first, last, context, rcontext, attr); in parse_subject()
47 , Context const& context, RContext& rcontext, Attribute& attr in parse_subject()
57 if (this->subject.parse(first, last, context, rcontext, val)) in parse_subject()
Dplus.hpp30 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
33 this->subject, first, last, context, rcontext, attr)) in parse()
37 this->subject, first, last, context, rcontext, attr)) in parse()
/third_party/boost/boost/spirit/home/x3/directive/
Dskip.hpp33 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
41 , rcontext in parse()
48 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
53 , rcontext in parse()
73 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
78 , rcontext in parse()
Dno_skip.hpp36 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
48 , rcontext in parse()
55 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
60 , rcontext in parse()
Dlexeme.hpp33 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
46 , rcontext in parse()
54 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
60 , rcontext in parse()
Draw.hpp37 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
41 if (this->subject.parse(i, last, context, rcontext, unused)) in parse()
52 , Context const& context, RContext& rcontext, unused_type) const in parse()
54 return this->subject.parse(first, last, context, rcontext, unused); in parse()
Dconfix.hpp38 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
42 if (!(prefix.parse(first, last, context, rcontext, unused) && in parse()
43 this->subject.parse(first, last, context, rcontext, attr) && in parse()
44 postfix.parse(first, last, context, rcontext, unused))) in parse()
Dexpect.hpp52 , Context const& context, RContext& rcontext, Attribute& attr) const in parse()
54 bool r = this->subject.parse(first, last, context, rcontext, attr); in parse()
89 , Context const& context, RContext& rcontext, Attribute& attr) in call()
92 parser.subject, first, last, context, rcontext, attr); in call()
/third_party/selinux/libselinux/src/
Dsetfilecon.c32 char * rcontext; in setfilecon() local
34 if (selinux_trans_to_raw_context(context, &rcontext)) in setfilecon()
37 ret = setfilecon_raw(path, rcontext); in setfilecon()
39 freecon(rcontext); in setfilecon()
Dfsetfilecon.c32 char * rcontext; in fsetfilecon() local
34 if (selinux_trans_to_raw_context(context, &rcontext)) in fsetfilecon()
37 ret = fsetfilecon_raw(fd, rcontext); in fsetfilecon()
39 freecon(rcontext); in fsetfilecon()
Dlsetfilecon.c32 char * rcontext; in lsetfilecon() local
34 if (selinux_trans_to_raw_context(context, &rcontext)) in lsetfilecon()
37 ret = lsetfilecon_raw(path, rcontext); in lsetfilecon()
39 freecon(rcontext); in lsetfilecon()
Dgetpeercon.c50 char * rcontext; in getpeercon() local
52 ret = getpeercon_raw(fd, &rcontext); in getpeercon()
55 ret = selinux_raw_to_trans_context(rcontext, context); in getpeercon()
56 freecon(rcontext); in getpeercon()
Dprocattr.c201 char * rcontext; in getprocattrcon() local
203 ret = getprocattrcon_raw(&rcontext, pid, attr); in getprocattrcon()
206 ret = selinux_raw_to_trans_context(rcontext, context); in getprocattrcon()
207 freecon(rcontext); in getprocattrcon()
286 char * rcontext; in setprocattrcon() local
288 if (selinux_trans_to_raw_context(context, &rcontext)) in setprocattrcon()
291 ret = setprocattrcon_raw(rcontext, pid, attr); in setprocattrcon()
293 freecon(rcontext); in setprocattrcon()
Dlgetfilecon.c56 char * rcontext = NULL; in lgetfilecon() local
60 ret = lgetfilecon_raw(path, &rcontext); in lgetfilecon()
63 ret = selinux_raw_to_trans_context(rcontext, context); in lgetfilecon()
64 freecon(rcontext); in lgetfilecon()
Dgetfilecon.c56 char * rcontext = NULL; in getfilecon() local
60 ret = getfilecon_raw(path, &rcontext); in getfilecon()
63 ret = selinux_raw_to_trans_context(rcontext, context); in getfilecon()
64 freecon(rcontext); in getfilecon()
Dfgetfilecon.c55 char * rcontext = NULL; in fgetfilecon() local
60 ret = fgetfilecon_raw(fd, &rcontext); in fgetfilecon()
63 ret = selinux_raw_to_trans_context(rcontext, context); in fgetfilecon()
64 freecon(rcontext); in fgetfilecon()
/third_party/boost/boost/spirit/home/x3/nonterminal/detail/
Drule.hpp189 , Context const& context, RContext& rcontext, ActualAttribute& attr in parse_rhs_main()
212 , rcontext in parse_rhs_main()
234 , Context const& context, RContext& rcontext, ActualAttribute& attr in parse_rhs_main()
242 rhs, first, last, context, rcontext, attr, mpl::false_()); in parse_rhs_main()
266 , Context const& context, RContext& rcontext, ActualAttribute& attr) in parse_rhs_main()
269 rhs, first, last, context, rcontext, attr in parse_rhs_main()
279 , Context const& context, RContext& rcontext, ActualAttribute& attr in parse_rhs()
282 return parse_rhs_main(rhs, first, last, context, rcontext, attr); in parse_rhs()
290 , Context const& context, RContext& rcontext, ActualAttribute& /* attr */ in parse_rhs()
293 return parse_rhs_main(rhs, first, last, context, rcontext, unused); in parse_rhs()

12