/third_party/boost/boost/spirit/home/x3/core/detail/ |
D | parse_into_container.hpp | 91 , 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/ |
D | action.hpp | 40 , 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 …]
|
D | proxy.hpp | 29 , 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/ |
D | sequence.hpp | 237 , 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 …]
|
D | alternative.hpp | 182 , 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/ |
D | alternative.hpp | 29 , 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()
|
D | sequence.hpp | 30 , 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()
|
D | list.hpp | 31 , 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()
|
D | optional.hpp | 35 , 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()
|
D | plus.hpp | 30 , 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/ |
D | skip.hpp | 33 , 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()
|
D | no_skip.hpp | 36 , 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()
|
D | lexeme.hpp | 33 , 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()
|
D | raw.hpp | 37 , 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()
|
D | confix.hpp | 38 , 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()
|
D | expect.hpp | 52 , 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/ |
D | setfilecon.c | 32 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()
|
D | fsetfilecon.c | 32 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()
|
D | lsetfilecon.c | 32 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()
|
D | getpeercon.c | 50 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()
|
D | procattr.c | 201 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()
|
D | lgetfilecon.c | 56 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()
|
D | getfilecon.c | 56 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()
|
D | fgetfilecon.c | 55 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/ |
D | rule.hpp | 189 , 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()
|