Home
last modified time | relevance | path

Searched refs:opt_must (Results 1 – 12 of 12) sorted by relevance

/dports/devel/pegtl/PEGTL-3.0.0/src/test/pegtl/
H A Drule_opt_must.cpp12 verify_analyze< opt_must< any, any > >( __LINE__, __FILE__, false, false );
13 verify_analyze< opt_must< eof, any > >( __LINE__, __FILE__, false, false );
14 verify_analyze< opt_must< opt< any >, any > >( __LINE__, __FILE__, false, false );
15 verify_analyze< opt_must< any, opt< any > > >( __LINE__, __FILE__, false, false );
16 verify_analyze< opt_must< any, eof > >( __LINE__, __FILE__, false, false );
17 verify_analyze< opt_must< opt< any >, opt< any > > >( __LINE__, __FILE__, false, false );
18 verify_analyze< opt_must< eof, eof > >( __LINE__, __FILE__, false, false );
20 … verify_rule< opt_must< one< 'a' >, one< 'b' > > >( __LINE__, __FILE__, "", result_type::success );
22 …verify_rule< opt_must< one< 'a' >, one< 'b' > > >( __LINE__, __FILE__, "b", result_type::success, …
23 …verify_rule< opt_must< one< 'a' >, one< 'b' > > >( __LINE__, __FILE__, "ba", result_type::success,…
[all …]
/dports/devel/pegtl/PEGTL-3.0.0/include/tao/pegtl/contrib/
H A Duri.hpp92 using opt_query = opt_must< one< '?' >, query >;
93 using opt_fragment = opt_must< one< '#' >, fragment >;
/dports/math/vtk9/VTK-9.1.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/contrib/
H A Duri.hpp97 using opt_query = opt_must< one< '?' >, query >;
98 using opt_fragment = opt_must< one< '#' >, fragment >;
/dports/cad/opentimer/OpenTimer-18d28ff/ot/parser-spef/pegtl/pegtl/contrib/
H A Duri.hpp97 using opt_query = opt_must< one< '?' >, query >;
98 using opt_fragment = opt_must< one< '#' >, fragment >;
/dports/devel/pegtl/PEGTL-3.0.0/src/example/pegtl/
H A Dlua53.hpp178 …struct exponent : tao::pegtl::opt_must< E, tao::pegtl::opt< tao::pegtl::one< '+', '-' > >, tao::pe…
217 …struct parameter_list_one : tao::pegtl::seq< name_list, tao::pegtl::opt_must< pad< tao::pegtl::one…
246 …struct right_assoc : tao::pegtl::seq< S, seps, tao::pegtl::opt_must< O, seps, right_assoc< S, O > …
302 …struct for_statement_two : tao::pegtl::seq< tao::pegtl::opt_must< tao::pegtl::one< ',' >, seps, na…
308 …ao::pegtl::list< name, tao::pegtl::one< '.' >, sep >, seps, tao::pegtl::opt_must< tao::pegtl::one<…
H A Dproto3.cpp97 …struct enum_field : seq< ident, sps, equ, sps, int_lit, sps, opt_must< one< '[' >, sps, list_must<…
/dports/cad/opentimer/OpenTimer-18d28ff/ot/parser-spef/pegtl/pegtl/
H A Drules.hpp44 …template< typename Cond, typename... Rules > struct opt_must : internal::if_must< true, Cond, Rule… struct
/dports/math/vtk9/VTK-9.1.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/
H A Drules.hpp44 …template< typename Cond, typename... Rules > struct opt_must : internal::if_must< true, Cond, Rule… struct
/dports/devel/pegtl/PEGTL-3.0.0/include/tao/pegtl/
H A Drules.hpp43 …template< typename Cond, typename... Rules > struct opt_must : internal::if_must< true, Cond, Rule… struct
/dports/devel/pegtl/PEGTL-3.0.0/doc/
H A DChangelog.md136 * Used [`opt_must`](Rule-Reference.md#opt_must-r-s-) and [`star_must`](Rule-Reference.md#star_must-…
142 * Added new convenience rule [`opt_must`](Rule-Reference.md#opt_must-r-s-).
H A DRule-Reference.md335 ###### `opt_must< R, S... >`
340 - `opt_must< R >::rule_t` is `internal::if_must< true, R >`
341 - `opt_must< R >::subs_t` is `type_list< R >`
342 - `opt_must< R, S... >::rule_t` is `internal::if_must< true, R, S... >`
343 - `opt_must< R, S... >::subs_t` is `type_list< R, internal::must< S... > >`
1472 * [`opt_must< R, S...>`](#opt_must-r-s-) <sup>[(convenience)](#convenience)</sup>
H A DREADME.md228 * [`opt_must< R, S...>`](Rule-Reference.md#opt_must-r-s-) <sup>[(convenience)](Rule-Reference.md#co…