Home
last modified time | relevance | path

Searched full:subject (Results 1 – 25 of 9353) sorted by relevance

12345678910>>...375

/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A DNASA-1.34 …S OR REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO USES, REPRODUCES, DISTRIBUTES, MODIFIES O…
9Subject Software. C. "Display" means the showing of a copy of the Subject Software, either directl…
12Subject to the terms and conditions of this Agreement, each Contributor, with respect to its own c…
20Subject to the terms and conditions of this Agreement, each Contributor, with respect to its own c…
27 …B. also apply to the combination of a Contributor`s Modification and the Subject Software if, at t…
32 A. Distribution or Redistribution of the Subject Software must be made under this Agreement except …
34 …istributes or redistributes the Subject Software, a copy of this Agreement must be included with e…
35Subject Software in any form other than source code, Recipient must also make the source code free…
36 …ipient must ensure that the following copyright notice appears prominently in the Subject Software:
44 C. Each Contributor must characterize its alteration of the Subject Software as a Modification and …
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/directive/
H A Dskip.hpp61 template <typename Subject>
62 struct reskip_parser : unary_parser<reskip_parser<Subject> >
64 typedef Subject subject_type;
70 traits::attribute_of<Subject, Context, Iterator>::type
74 reskip_parser(Subject const& subject_) in reskip_parser()
75 : subject(subject_) {} in reskip_parser()
84 return subject.parse(first, last, context in parse()
94 return subject.parse(first, last, context in parse()
101 return info("skip", subject.what(context)); in what()
104 Subject subject; member
[all …]
H A Das.hpp75 template <typename Subject, typename T>
76 struct as_directive : unary_parser<as_directive<Subject, T> >
78 typedef Subject subject_type;
79 as_directive(Subject const& subject_) in as_directive()
80 : subject(subject_) {} in as_directive()
95 if (subject.parse(i, last, context, skipper, as_attr)) in parse()
109 if (subject.parse(i, last, context, skipper, attr_)) in parse()
120 return info("as", subject.what(context)); in what()
123 Subject subject; member
129 template <typename Subject, typename Modifiers>
[all …]
H A Drepeat.hpp137 template <typename Subject, typename LoopIter>
138 struct repeat_parser : unary_parser<repeat_parser<Subject, LoopIter> >
140 typedef Subject subject_type;
145 // Build a std::vector from the subject's attribute. Note
147 // subject's attribute is an unused_type.
151 Subject, Context, Iterator>::type
156 repeat_parser(Subject const& subject_, LoopIter const& iter_) in repeat_parser()
157 : subject(subject_), iter(iter_) {} in repeat_parser()
165 if (f (subject)) in parse_container()
173 if (f (subject)) in parse_container()
[all …]
H A Dexpect.hpp39 template <typename Subject>
40 struct expect_directive : unary_parser<expect_directive<Subject> >
42 typedef result_of::compile<domain, Subject> subject_type;
51 expect_directive(Subject const& subject_) : subject(subject_) {} in expect_directive()
61 if (!subject.parse(first, last, context, skipper, attr_)) in parse()
64 exception(first, last, subject.what(context))); in parse()
75 return info("expect", subject.what(context)); in what()
78 Subject subject; member
84 template <typename Subject, typename Modifiers>
85 struct make_directive<tag::expect, Subject, Modifiers>
[all …]
H A Dhold.hpp41 template <typename Subject>
42 struct hold_directive : unary_parser<hold_directive<Subject> >
44 typedef Subject subject_type;
45 hold_directive(Subject const& subject_) in hold_directive()
46 : subject(subject_) {} in hold_directive()
62 if (subject.parse(first, last, context, skipper, copy)) in parse()
73 return info("hold", subject.what(context)); in what()
77 Subject subject; member
83 template <typename Subject, typename Modifiers>
84 struct make_directive<tag::hold, Subject, Modifiers>
[all …]
H A Draw.hpp43 template <typename Subject>
44 struct raw_directive : unary_parser<raw_directive<Subject> >
46 typedef Subject subject_type;
47 raw_directive(Subject const& subject_) in raw_directive()
48 : subject(subject_) {} in raw_directive()
63 if (subject.parse(i, last, context, skipper, unused)) in parse()
75 return info("raw", subject.what(context)); in what()
79 Subject subject; member
85 template <typename Subject, typename Modifiers>
86 struct make_directive<tag::raw, Subject, Modifiers>
[all …]
H A Dlexeme.hpp42 template <typename Subject>
43 struct lexeme_directive : unary_parser<lexeme_directive<Subject> >
45 typedef Subject subject_type;
46 lexeme_directive(Subject const& subject_) in lexeme_directive()
47 : subject(subject_) {} in lexeme_directive()
65 return subject.parse(first, last, context in parse()
77 return subject.parse(first, last, context in parse()
84 return info("lexeme", subject.what(context)); in what()
88 Subject subject; member
94 template <typename Subject, typename Modifiers>
[all …]
H A Dno_skip.hpp45 template <typename Subject>
46 struct no_skip_directive : unary_parser<no_skip_directive<Subject> >
48 typedef Subject subject_type;
49 no_skip_directive(Subject const& subject_) in no_skip_directive()
50 : subject(subject_) {} in no_skip_directive()
67 return subject.parse(first, last, context in parse()
77 return subject.parse(first, last, context in parse()
84 return info("no_skip", subject.what(context)); in what()
88 Subject subject; member
94 template <typename Subject, typename Modifiers>
[all …]
H A Domit.hpp41 // omit_directive forces the attribute of subject parser
44 template <typename Subject>
45 struct omit_directive : unary_parser<omit_directive<Subject> >
47 typedef Subject subject_type;
48 omit_directive(Subject const& subject_) in omit_directive()
49 : subject(subject_) {} in omit_directive()
62 return subject.parse(first, last, context, skipper, attr_); in parse()
68 return info("omit", subject.what(context)); in what()
71 Subject subject; member
81 template <typename Subject, typename Modifiers>
[all …]
H A Dmatches.hpp43 template <typename Subject>
44 struct matches_directive : unary_parser<matches_directive<Subject> >
46 typedef Subject subject_type;
47 matches_directive(Subject const& subject_) in matches_directive()
48 : subject(subject_) {} in matches_directive()
61 bool result = subject.parse(first, last, context, skipper, unused); in parse()
69 return info("matches", subject.what(context)); in what()
72 Subject subject; member
82 template <typename Subject, typename Modifiers>
83 struct make_directive<tag::matches, Subject, Modifiers>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/operator/
H A Dkleene.hpp40 template <typename Subject>
41 struct kleene : unary_parser<kleene<Subject> >
43 typedef Subject subject_type;
48 // Build a std::vector from the subject's attribute. Note
50 // subject's attribute is an unused_type.
54 attribute_of<Subject, Context, Iterator>::type
59 kleene(Subject const& subject_) in kleene()
60 : subject(subject_) {} in kleene()
65 while (!f (subject)) in parse_container()
93 return info("kleene", subject.what(context)); in what()
[all …]
H A Dplus.hpp37 template <typename Subject>
38 struct plus : unary_parser<plus<Subject> >
40 typedef Subject subject_type;
45 // Build a std::vector from the subject's attribute. Note
47 // subject's attribute is an unused_type.
51 Subject, Context, Iterator>::type
56 plus(Subject const& subject_) in plus()
57 : subject(subject_) {} in plus()
63 if (f (subject)) in parse_container()
66 while (!f (subject)) in parse_container()
[all …]
H A Doptional.hpp39 template <typename Subject>
40 struct optional : unary_parser<optional<Subject> >
42 typedef Subject subject_type;
47 // Build a boost::optional from the subject's attribute. Note
49 // subject's attribute is an unused_type.
53 attribute_of<Subject, Context, Iterator>::type
58 optional(Subject const& subject_) in optional()
59 : subject(subject_) {} in optional()
71 if (subject.parse(first, last, context, skipper, val)) in parse_impl()
85 subject.parse(first, last, context, skipper, attr_); in parse_impl()
[all …]
H A Dand_predicate.hpp35 template <typename Subject>
36 struct and_predicate : unary_parser<and_predicate<Subject> >
38 typedef Subject subject_type;
46 and_predicate(Subject const& subject_) in and_predicate()
47 : subject(subject_) {} in and_predicate()
56 return subject.parse(i, last, context, skipper, unused); in parse()
62 return info("and-predicate", subject.what(context)); in what()
65 Subject subject; member
80 template <typename Subject>
81 struct has_semantic_action<qi::and_predicate<Subject> >
[all …]
H A Dnot_predicate.hpp34 template <typename Subject>
35 struct not_predicate : unary_parser<not_predicate<Subject> >
37 typedef Subject subject_type;
45 not_predicate(Subject const& subject_) in not_predicate()
46 : subject(subject_) {} in not_predicate()
55 return !subject.parse(i, last, context, skipper, unused); in parse()
61 return info("not-predicate", subject.what(context)); in what()
64 Subject subject; member
79 template <typename Subject>
80 struct has_semantic_action<qi::not_predicate<Subject> >
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/action/
H A Daction.hpp33 template <typename Subject, typename Action>
34 struct action : unary_parser<action<Subject, Action> >
36 typedef Subject subject_type;
41 : traits::attribute_of<Subject, Context, Iterator>
44 action(Subject const& subject_, Action f_) in action()
45 : subject(subject_), f(f_) {} in action()
65 if (subject.parse(first, last, context, skipper, attr)) in parse()
69 if (traits::action_dispatch<Subject>()(f, attr, context)) in parse()
91 if (subject.parse(first, last, context, skipper, attr)) // Use the attribute as-is in parse()
95 if (traits::action_dispatch<Subject>()(f, attr, context)) in parse()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/nonterminal/detail/
H A Dparameterized.hpp26 template <typename Subject, typename Params>
28 : parser<parameterized_nonterminal<Subject, Params> >
30 parameterized_nonterminal(Subject const& subject, Params const& params_) in parameterized_nonterminal()
31 : ref(subject), params(params_) in parameterized_nonterminal()
37 // Forward to subject.
38 : Subject::template attribute<Context, Iterator> {};
46 // Forward to subject, passing the additional in parse()
54 // Forward to subject. in what()
58 boost::reference_wrapper<Subject const> ref;
66 template <typename Subject, typename Params, typename Attribute
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/
H A Dreference.hpp24 // reference is a parser that references another parser (its Subject)
26 template <typename Subject>
27 struct reference : parser<reference<Subject> >
29 typedef Subject subject_type;
31 reference(Subject& subject) in reference()
32 : ref(subject) {} in reference()
35 struct attribute : Subject::template attribute<Context, Iterator> {};
53 boost::reference_wrapper<Subject> ref;
60 template <typename Subject, typename Attribute, typename Context
62 struct handles_container<qi::reference<Subject>, Attribute, Context
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/auxiliary/
H A Dlazy.hpp144 template <typename Function, typename Subject, typename Modifiers>
146 : unary_parser<lazy_directive<Function, Subject, Modifiers> >
148 typedef Subject subject_type;
167 , Subject
187 , Subject const& subject_ in lazy_directive()
189 : function(function_), subject(subject_), modifiers(modifiers_) {} in lazy_directive()
200 , subject) in parse()
212 , subject in what()
219 Subject subject; member
249 template <typename Terminal, typename Actor, int Arity, typename Subject, typename Modifiers>
[all …]
H A Dattr_cast.hpp40 // attr_cast_parser consumes the attribute of subject generator without
43 template <typename Exposed, typename Transformed, typename Subject>
45 : unary_parser<attr_cast_parser<Exposed, Transformed, Subject> >
47 typedef typename result_of::compile<qi::domain, Subject>::type
56 attr_cast_parser(Subject const& subject_) in attr_cast_parser()
57 : subject(subject_) in attr_cast_parser()
60 // then the expression (Subject) is not a valid spirit qi in attr_cast_parser()
62 BOOST_SPIRIT_ASSERT_MATCH(qi::domain, Subject); in attr_cast_parser()
95 if (!compile<qi::domain>(subject). in parse()
112 , compile<qi::domain>(subject).what(context)); in what()
[all …]
/OK3568_Linux_fs/kernel/security/smack/
H A Dsmack_access.c56 * @subject_label: a pointer to the subject's Smack label
60 * This function looks up the subject/object pair in the
103 * smk_access - determine if a subject has a specific access to an object
104 * @subject: a pointer to the subject's Smack label entry
109 * This function looks up the subject/object pair in the
115 int smk_access(struct smack_known *subject, struct smack_known *object, in smk_access() argument
125 * A star subject can't access any object. in smk_access()
127 if (subject == &smack_known_star) { in smk_access()
132 * An internet object can be accessed by any subject. in smk_access()
134 * An internet subject can access any object. in smk_access()
[all …]
/OK3568_Linux_fs/yocto/poky/contrib/git-hooks/
H A Dsendemail-validate.sample27 class Subject(enum.IntEnum): class
48 subject_seen = Subject.NOT_SEEN
51 if (subject_seen == Subject.NOT_SEEN) and line.startswith("Subject: "):
52 subject_seen = Subject.CONSUMING
54 if subject_seen == Subject.CONSUMING:
56 subject_seen = Subject.SEEN
58 if subject_seen == Subject.SEEN:
62 assert subject_seen == Subject.SEEN
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/
H A Dless_by_segment_ratio.hpp10 // Use, modification and distribution is subject to the Boost Software License,
48 TurnOperation const* subject; member
57 , subject(boost::addressof(sub)) in indexed_turn_operation()
111 left.subject->seg_id, in consider_relative_order()
149 if (! (left.subject->seg_id == right.subject->seg_id)) in operator ()()
151 return left.subject->seg_id < right.subject->seg_id; in operator ()()
156 if (! (left.subject->fraction == right.subject->fraction)) in operator ()()
158 return left.subject->fraction < right.subject->fraction; in operator ()()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/strongswan/files/
H A DCVE-2022-40617.patch4 Subject: [PATCH] CVE-2022-40617
51 certificate_t *subject, certificate_t *issuer, bool online,
58 if (!check_lifetime(this, subject, "subject", pathlen, FALSE, auth) ||
67 if (!validator->validate(validator, subject, issuer,
80 get_key_strength(subject, auth);
98 + subject->get_subject(subject));
122 call_hook(this, CRED_HOOK_EXCEEDED_PATH_LEN, subject);
131 + current = subject;

12345678910>>...375