Home
last modified time | relevance | path

Searched refs:Subject (Results 1 – 25 of 5360) sorted by relevance

12345678910>>...215

/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()
104 Subject subject;
107 template <typename Subject, typename Skipper>
108 struct skip_parser : unary_parser<skip_parser<Subject, Skipper> >
110 typedef Subject subject_type;
117 traits::attribute_of<Subject, Context, Iterator>::type
[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()
123 Subject subject;
129 template <typename Subject, typename Modifiers>
130 struct make_directive<tag::as_string, Subject, Modifiers>
132 typedef as_directive<Subject, std::string> result_type;
133 result_type operator()(unused_type, Subject const& subject in operator ()()
140 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;
151 Subject, Context, Iterator>::type
156 repeat_parser(Subject const& subject_, LoopIter const& iter_) in repeat_parser()
209 Subject subject;
220 template <typename Subject, typename Modifiers>
221 struct make_directive<tag::repeat, Subject, Modifiers>
223 typedef kleene<Subject> result_type;
224 result_type operator()(unused_type, Subject const& subject, unused_type) const in operator ()()
[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()
77 Subject subject;
83 template <typename Subject, typename Modifiers>
84 struct make_directive<tag::hold, Subject, Modifiers>
86 typedef hold_directive<Subject> result_type;
87 result_type operator()(unused_type, Subject const& subject, unused_type) const in operator ()()
97 template <typename Subject>
[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()
72 Subject subject;
82 template <typename Subject, typename Modifiers>
83 struct make_directive<tag::matches, Subject, Modifiers>
85 typedef matches_directive<Subject> result_type;
86 result_type operator()(unused_type, Subject const& subject, unused_type) const in operator ()()
96 template <typename Subject>
[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()
78 Subject subject;
84 template <typename Subject, typename Modifiers>
85 struct make_directive<tag::expect, Subject, Modifiers>
87 typedef expect_directive<Subject> result_type;
90 (unused_type, Subject const& subject, unused_type) const in operator ()()
100 template <typename Subject>
[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()
79 Subject subject;
85 template <typename Subject, typename Modifiers>
86 struct make_directive<tag::raw, Subject, Modifiers>
88 typedef raw_directive<Subject> result_type;
89 result_type operator()(unused_type, Subject const& subject, unused_type) const in operator ()()
99 template <typename Subject>
[all …]
H A Domit.hpp44 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()
71 Subject subject;
81 template <typename Subject, typename Modifiers>
82 struct make_directive<tag::omit, Subject, Modifiers>
84 typedef omit_directive<Subject> result_type;
85 result_type operator()(unused_type, Subject const& subject, unused_type) const in operator ()()
95 template <typename Subject>
[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()
88 Subject subject;
94 template <typename Subject, typename Modifiers>
95 struct make_directive<tag::lexeme, Subject, Modifiers>
97 typedef lexeme_directive<Subject> result_type;
98 result_type operator()(unused_type, Subject const& subject, unused_type) const in operator ()()
108 template <typename Subject>
[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()
88 Subject subject;
94 template <typename Subject, typename Modifiers>
95 struct make_directive<tag::no_skip, Subject, Modifiers>
97 typedef no_skip_directive<Subject> result_type;
98 result_type operator()(unused_type, Subject const& subject, unused_type) const in operator ()()
108 template <typename Subject>
[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 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()
65 Subject subject;
80 template <typename Subject>
81 struct has_semantic_action<qi::and_predicate<Subject> >
82 : unary_has_semantic_action<Subject> {};
85 template <typename Subject, typename Attribute, typename Context
87 struct handles_container<qi::and_predicate<Subject>, Attribute, Context
[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()
64 Subject subject;
79 template <typename Subject>
80 struct has_semantic_action<qi::not_predicate<Subject> >
81 : unary_has_semantic_action<Subject> {};
84 template <typename Subject, typename Attribute, typename Context
86 struct handles_container<qi::not_predicate<Subject>, Attribute
[all …]
H A Dkleene.hpp40 template <typename Subject>
41 struct kleene : unary_parser<kleene<Subject> >
43 typedef Subject subject_type;
54 attribute_of<Subject, Context, Iterator>::type
59 kleene(Subject const& subject_) in kleene()
96 Subject subject;
122 template <typename Subject>
123 struct has_semantic_action<qi::kleene<Subject> >
124 : unary_has_semantic_action<Subject> {};
127 template <typename Subject, typename Attribute, typename Context
[all …]
H A Dplus.hpp37 template <typename Subject>
38 struct plus : unary_parser<plus<Subject> >
40 typedef Subject subject_type;
51 Subject, Context, Iterator>::type
56 plus(Subject const& subject_) in plus()
98 Subject subject;
113 template <typename Subject>
114 struct has_semantic_action<qi::plus<Subject> >
115 : unary_has_semantic_action<Subject> {};
118 template <typename Subject, typename Attribute, typename Context
[all …]
H A Doptional.hpp39 template <typename Subject>
40 struct optional : unary_parser<optional<Subject> >
42 typedef Subject subject_type;
53 attribute_of<Subject, Context, Iterator>::type
58 optional(Subject const& subject_) in optional()
108 Subject subject;
123 template <typename Subject>
124 struct has_semantic_action<qi::optional<Subject> >
125 : unary_has_semantic_action<Subject> {};
128 template <typename Subject, typename Attribute, typename Context
[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()
69 if (traits::action_dispatch<Subject>()(f, attr, context)) in parse()
95 if (traits::action_dispatch<Subject>()(f, attr, context)) in parse()
126 if (traits::action_dispatch<Subject>()(f, attr, context)) in parse()
144 Subject subject;
190 template <typename Subject, typename Action>
[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.hpp26 template <typename Subject>
27 struct reference : parser<reference<Subject> >
29 typedef Subject subject_type;
31 reference(Subject& 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
64 : handles_container<typename remove_const<Subject>::type
/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()
38 : Subject::template attribute<Context, Iterator> {};
58 boost::reference_wrapper<Subject const> ref;
66 template <typename Subject, typename Params, typename Attribute
68 struct handles_container<qi::parameterized_nonterminal<Subject, Params>
70 : handles_container<typename remove_const<Subject>::type
/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/yocto/poky/meta/files/common-licenses/
H A DNASA-1.39Subject 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 …
46 … may add its own copyright notice to the Subject Software. Once a copyright notice has been added …
[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()
219 Subject subject;
249 template <typename Terminal, typename Actor, int Arity, typename Subject, typename Modifiers>
250 struct make_directive<lazy_terminal<Terminal, Actor, Arity>, Subject, Modifiers>
252 typedef lazy_directive<Actor, Subject, Modifiers> result_type;
255 , Subject const& subject, Modifiers const& modifiers) const in operator ()()
[all …]
H A Dattr_cast.hpp43 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()
62 BOOST_SPIRIT_ASSERT_MATCH(qi::domain, Subject); in attr_cast_parser()
115 Subject subject;
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-certifi/
H A DCVE-2022-23491.patch4 Subject: [PATCH] Certifi is a curated collection of Root Certificates for
31 -# Subject: CN=Network Solutions Certificate Authority O=Network Solutions L.L.C.
62 # Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited
69 -# Subject: CN=Staat der Nederlanden EV Root CA O=Staat der Nederlanden
109 # Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust
116 -# Subject: CN=TrustCor RootCert CA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authori…
149 -# Subject: CN=TrustCor RootCert CA-2 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authori…
193 -# Subject: CN=TrustCor ECA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority
226 # Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/
H A Dhas_semantic_action.hpp27 template <typename Subject>
29 : has_semantic_action<Subject> {};
H A Dhandles_container.hpp29 template <typename Subject, typename Attribute, typename Context
32 : handles_container<Subject, Attribute, Context, Iterator> {};

12345678910>>...215