Home
last modified time | relevance | path

Searched refs:rep_min_max (Results 1 – 20 of 20) sorted by relevance

/dports/devel/pegtl/PEGTL-3.0.0/src/test/pegtl/
H A Drule_rep_min_max.cpp12 verify_analyze< rep_min_max< 0, 1, any > >( __LINE__, __FILE__, false, false ); in unit_test()
13 verify_analyze< rep_min_max< 0, 2, any > >( __LINE__, __FILE__, false, false ); in unit_test()
14 verify_analyze< rep_min_max< 1, 2, any > >( __LINE__, __FILE__, true, false ); in unit_test()
15 verify_analyze< rep_min_max< 0, 1, eof > >( __LINE__, __FILE__, false, false ); in unit_test()
16 verify_analyze< rep_min_max< 0, 2, eof > >( __LINE__, __FILE__, false, false ); in unit_test()
17 verify_analyze< rep_min_max< 1, 2, eof > >( __LINE__, __FILE__, false, false ); in unit_test()
19 verify_analyze< rep_min_max< 0, 1, any, eof > >( __LINE__, __FILE__, false, false ); in unit_test()
20 verify_analyze< rep_min_max< 0, 2, any, any > >( __LINE__, __FILE__, false, false ); in unit_test()
21 verify_analyze< rep_min_max< 1, 2, eof, any > >( __LINE__, __FILE__, true, false ); in unit_test()
22 verify_analyze< rep_min_max< 0, 1, eof, any > >( __LINE__, __FILE__, false, false ); in unit_test()
[all …]
H A Dfile_cstream.cpp16 : seq< rep_min_max< 11, 11, file_content >, eof >
H A Dfile_istream.cpp16 : seq< rep_min_max< 11, 11, file_content >, eof >
H A Dverify_file.hpp24 : seq< rep_min_max< 11, 11, file_content >, eof >
/dports/devel/pegtl/PEGTL-3.0.0/include/tao/pegtl/internal/
H A Drep_min_max.hpp23 struct rep_min_max struct
24 : rep_min_max< Min, Max, seq< Rules... > >
30 struct rep_min_max< Min, Max > struct
37 struct rep_min_max< 0, 0, Rule > struct
42 struct rep_min_max< Min, Max, Rule > struct
44 using rule_t = rep_min_max; argument
77 inline constexpr bool enable_control< rep_min_max< Min, Max, Rules... > > = false;
/dports/math/vtk9/VTK-9.1.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/internal/
H A Drep_min_max.hpp28 struct rep_min_max struct
29 : rep_min_max< Min, Max, seq< Rules... > >
34 struct rep_min_max< Min, Max > struct
41 struct rep_min_max< 0, 0, Rule > struct
47 struct rep_min_max< Min, Max, Rule > struct
81 struct skip_control< rep_min_max< Min, Max, Rules... > > : std::true_type
/dports/cad/opentimer/OpenTimer-18d28ff/ot/parser-spef/pegtl/pegtl/internal/
H A Drep_min_max.hpp30 struct rep_min_max;
33 struct rep_min_max< Min, Max > struct
40 struct rep_min_max< 0, 0, Rule, Rules... > struct
46 struct rep_min_max struct
78 struct skip_control< rep_min_max< Min, Max, Rules... > > : std::true_type
/dports/math/vtk8/VTK-8.2.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/internal/
H A Drep_min_max.hpp30 struct rep_min_max;
33 struct rep_min_max< Min, Max > struct
40 struct rep_min_max< 0, 0, Rule, Rules... > struct
46 struct rep_min_max struct
78 struct skip_control< rep_min_max< Min, Max, Rules... > > : std::true_type
/dports/cad/opentimer/OpenTimer-18d28ff/ot/parser-spef/pegtl/pegtl/
H A Drules.hpp50 …template< unsigned Max, typename... Rules > struct rep_max : internal::rep_min_max< 0, Max, Rules.…
52 …te< unsigned Min, unsigned Max, typename... Rules > struct rep_min_max : internal::rep_min_max< Mi… struct
/dports/math/vtk8/VTK-8.2.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/
H A Drules.hpp49 …template< unsigned Max, typename... Rules > struct rep_max : internal::rep_min_max< 0, Max, Rules.…
51 …te< unsigned Min, unsigned Max, typename... Rules > struct rep_min_max : internal::rep_min_max< Mi… struct
/dports/math/vtk9/VTK-9.1.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/
H A Drules.hpp51 …template< unsigned Max, typename... Rules > struct rep_max : internal::rep_min_max< 0, Max, Rules.…
53 …te< unsigned Min, unsigned Max, typename... Rules > struct rep_min_max : internal::rep_min_max< Mi… struct
/dports/devel/pegtl/PEGTL-3.0.0/include/tao/pegtl/
H A Drules.hpp50 …template< unsigned Max, typename... Rules > struct rep_max : internal::rep_min_max< 0, Max, Rules.…
52 …te< unsigned Min, unsigned Max, typename... Rules > struct rep_min_max : internal::rep_min_max< Mi… struct
/dports/math/vtk9/VTK-9.1.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/contrib/
H A Duri.hpp33 rep_min_max< 1, 2, abnf::DIGIT >,
40 struct h16 : rep_min_max< 1, 4, abnf::HEXDIG > {};
/dports/cad/opentimer/OpenTimer-18d28ff/ot/parser-spef/pegtl/pegtl/contrib/
H A Duri.hpp33 rep_min_max< 1, 2, abnf::DIGIT >,
40 struct h16 : rep_min_max< 1, 4, abnf::HEXDIG > {};
/dports/math/vtk8/VTK-8.2.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/contrib/
H A Duri.hpp33 rep_min_max< 1, 2, abnf::DIGIT >,
40 struct h16 : rep_min_max< 1, 4, abnf::HEXDIG > {};
/dports/devel/pegtl/PEGTL-3.0.0/doc/
H A DRule-Reference.md386 * [Equivalent] to `rep_min_max< 0, Max, R... >`.
393 - `rep_max< Max, R >::rule_t` is `internal::rep_min_max< 0, Max, R >`
407 ###### `rep_min_max< Min, Max, R... >`
412 - `rep_min_max< 0, 0, R >::rule_t` is `internal::not_at< R >`
413 - `rep_min_max< 0, 0, R >::subs_t` is `type_list< R >`
415 - `rep_min_max< 0, 0, R... >::subs_t` is `type_list< internal::seq< R... > >`
416 - `rep_min_max< Min, Max >::rule_t` is `internal::failure`
417 - `rep_min_max< Min, Max, R >::rule_t` is `internal::rep_min_max< Min, Max, R >`
418 - `rep_min_max< Min, Max, R >::subs_t` is `type_list< R >`
419 …- `rep_min_max< Min, Max, R... >::rule_t` is `internal::rep_min_max< Min, Max, internal::seq< R...…
[all …]
H A DContrib-and-Examples.md64 * Contains optimised version of `rep_min_max< Min, Max, ascii::one< C > >`:
H A DREADME.md257 * [`rep_min_max< Min, Max, R... >`](Rule-Reference.md#rep_min_max-min-max-r-) <sup>[(convenience)](…
/dports/devel/pegtl/PEGTL-3.0.0/include/tao/pegtl/contrib/
H A Duri.hpp35 struct h16 : rep_min_max< 1, 4, abnf::HEXDIG > {};
H A Danalyze_traits.hpp214 struct analyze_traits< Name, internal::rep_min_max< Min, Max, Rules... > >