├── .gitattributes ├── .travis.yml ├── CMakeLists.txt ├── doc ├── Jamfile.v2 ├── acknowledgements.qbk ├── actions.qbk ├── concepts.qbk ├── dynamic_regexes.qbk ├── examples.qbk ├── grammars.qbk ├── history.qbk ├── installation.qbk ├── introduction.qbk ├── matching.qbk ├── named_captures.qbk ├── nyi.qbk ├── perf.qbk ├── preface.qbk ├── quick_start.qbk ├── regexpp_diffs.qbk ├── results.qbk ├── static_regexes.qbk ├── substitutions.qbk ├── symbols.qbk ├── tips_n_tricks.qbk ├── tokenization.qbk ├── tracking_ptr.qbk ├── traits.qbk └── xpressive.qbk ├── example ├── Jamfile.v2 ├── example.vcproj ├── main.cpp └── numbers.cpp ├── include └── boost │ └── xpressive │ ├── basic_regex.hpp │ ├── detail │ ├── core │ │ ├── access.hpp │ │ ├── action.hpp │ │ ├── adaptor.hpp │ │ ├── finder.hpp │ │ ├── flow_control.hpp │ │ ├── icase.hpp │ │ ├── linker.hpp │ │ ├── list.hpp │ │ ├── matcher │ │ │ ├── action_matcher.hpp │ │ │ ├── alternate_end_matcher.hpp │ │ │ ├── alternate_matcher.hpp │ │ │ ├── any_matcher.hpp │ │ │ ├── assert_bol_matcher.hpp │ │ │ ├── assert_bos_matcher.hpp │ │ │ ├── assert_eol_matcher.hpp │ │ │ ├── assert_eos_matcher.hpp │ │ │ ├── assert_line_base.hpp │ │ │ ├── assert_word_matcher.hpp │ │ │ ├── attr_begin_matcher.hpp │ │ │ ├── attr_end_matcher.hpp │ │ │ ├── attr_matcher.hpp │ │ │ ├── charset_matcher.hpp │ │ │ ├── end_matcher.hpp │ │ │ ├── epsilon_matcher.hpp │ │ │ ├── keeper_matcher.hpp │ │ │ ├── literal_matcher.hpp │ │ │ ├── logical_newline_matcher.hpp │ │ │ ├── lookahead_matcher.hpp │ │ │ ├── lookbehind_matcher.hpp │ │ │ ├── mark_begin_matcher.hpp │ │ │ ├── mark_end_matcher.hpp │ │ │ ├── mark_matcher.hpp │ │ │ ├── optional_matcher.hpp │ │ │ ├── posix_charset_matcher.hpp │ │ │ ├── predicate_matcher.hpp │ │ │ ├── range_matcher.hpp │ │ │ ├── regex_byref_matcher.hpp │ │ │ ├── regex_matcher.hpp │ │ │ ├── repeat_begin_matcher.hpp │ │ │ ├── repeat_end_matcher.hpp │ │ │ ├── set_matcher.hpp │ │ │ ├── simple_repeat_matcher.hpp │ │ │ ├── string_matcher.hpp │ │ │ └── true_matcher.hpp │ │ ├── matchers.hpp │ │ ├── optimize.hpp │ │ ├── peeker.hpp │ │ ├── quant_style.hpp │ │ ├── regex_domain.hpp │ │ ├── regex_impl.hpp │ │ ├── results_cache.hpp │ │ ├── state.hpp │ │ ├── sub_match_impl.hpp │ │ └── sub_match_vector.hpp │ ├── detail_fwd.hpp │ ├── dynamic │ │ ├── dynamic.hpp │ │ ├── matchable.hpp │ │ ├── parse_charset.hpp │ │ ├── parser.hpp │ │ ├── parser_enum.hpp │ │ ├── parser_traits.hpp │ │ └── sequence.hpp │ ├── static │ │ ├── compile.hpp │ │ ├── grammar.hpp │ │ ├── is_pure.hpp │ │ ├── modifier.hpp │ │ ├── placeholders.hpp │ │ ├── static.hpp │ │ ├── transforms │ │ │ ├── as_action.hpp │ │ │ ├── as_alternate.hpp │ │ │ ├── as_independent.hpp │ │ │ ├── as_inverse.hpp │ │ │ ├── as_marker.hpp │ │ │ ├── as_matcher.hpp │ │ │ ├── as_modifier.hpp │ │ │ ├── as_quantifier.hpp │ │ │ ├── as_sequence.hpp │ │ │ └── as_set.hpp │ │ ├── transmogrify.hpp │ │ ├── type_traits.hpp │ │ ├── visitor.hpp │ │ └── width_of.hpp │ └── utility │ │ ├── algorithm.hpp │ │ ├── any.hpp │ │ ├── boyer_moore.hpp │ │ ├── chset │ │ ├── basic_chset.hpp │ │ ├── basic_chset.ipp │ │ ├── chset.hpp │ │ ├── range_run.hpp │ │ └── range_run.ipp │ │ ├── cons.hpp │ │ ├── counted_base.hpp │ │ ├── dont_care.hpp │ │ ├── hash_peek_bitset.hpp │ │ ├── ignore_unused.hpp │ │ ├── literals.hpp │ │ ├── never_true.hpp │ │ ├── save_restore.hpp │ │ ├── sequence_stack.hpp │ │ ├── symbols.hpp │ │ ├── tracking_ptr.hpp │ │ ├── traits_utils.hpp │ │ └── width.hpp │ ├── match_results.hpp │ ├── regex_actions.hpp │ ├── regex_algorithms.hpp │ ├── regex_compiler.hpp │ ├── regex_constants.hpp │ ├── regex_error.hpp │ ├── regex_iterator.hpp │ ├── regex_primitives.hpp │ ├── regex_token_iterator.hpp │ ├── regex_traits.hpp │ ├── sub_match.hpp │ ├── traits │ ├── c_regex_traits.hpp │ ├── cpp_regex_traits.hpp │ ├── detail │ │ └── c_ctype.hpp │ └── null_regex_traits.hpp │ ├── xpressive.hpp │ ├── xpressive_dynamic.hpp │ ├── xpressive_fwd.hpp │ ├── xpressive_static.hpp │ └── xpressive_typeof.hpp ├── index.html ├── meta └── libraries.json ├── perf ├── Jamfile.v2 ├── command_line.cpp ├── gcc │ ├── long_twain_search.xml │ ├── short_matches.xml │ └── short_twain_search.xml ├── main.cpp ├── msvc │ ├── long_twain_search.xml │ ├── short_matches.xml │ └── short_twain_search.xml ├── regex_comparison.hpp ├── time_boost.cpp ├── time_dynamic_xpressive.cpp └── time_static_xpressive.cpp ├── test ├── Jamfile.v2 ├── c_traits.cpp ├── c_traits_u.cpp ├── misc1.cpp ├── misc2.cpp ├── multiple_defs1.cpp ├── multiple_defs2.cpp ├── regress.cpp ├── regress.ipp ├── regress.txt ├── regress_u.cpp ├── test.hpp ├── test1.cpp ├── test1.hpp ├── test10.cpp ├── test10.hpp ├── test10u.cpp ├── test11.cpp ├── test11.hpp ├── test11u.cpp ├── test1u.cpp ├── test2.cpp ├── test2.hpp ├── test2u.cpp ├── test3.cpp ├── test3.hpp ├── test3u.cpp ├── test4.cpp ├── test4.hpp ├── test4u.cpp ├── test5.cpp ├── test5.hpp ├── test5u.cpp ├── test6.cpp ├── test6.hpp ├── test6u.cpp ├── test7.cpp ├── test7.hpp ├── test7u.cpp ├── test8.cpp ├── test8.hpp ├── test8u.cpp ├── test9.cpp ├── test9.hpp ├── test9u.cpp ├── test_actions.cpp ├── test_assert.cpp ├── test_assert_with_placeholder.cpp ├── test_basic_regex.cpp ├── test_cycles.cpp ├── test_dynamic.cpp ├── test_dynamic_grammar.cpp ├── test_format.cpp ├── test_match_results.cpp ├── test_non_char.cpp ├── test_partial_match.cpp ├── test_regex_algorithms.cpp ├── test_regex_compiler.cpp ├── test_regex_constants.cpp ├── test_regex_error.cpp ├── test_regex_iterator.cpp ├── test_regex_primitives.cpp ├── test_regex_token_iterator.cpp ├── test_regex_traits.cpp ├── test_skip.cpp ├── test_static.cpp ├── test_sub_match.cpp ├── test_symbols.cpp ├── test_typeof.cpp └── test_typeof2.cpp └── tools ├── Jamfile.v2 └── perl2xpr.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/.gitattributes -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/Jamfile.v2 -------------------------------------------------------------------------------- /doc/acknowledgements.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/acknowledgements.qbk -------------------------------------------------------------------------------- /doc/actions.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/actions.qbk -------------------------------------------------------------------------------- /doc/concepts.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/concepts.qbk -------------------------------------------------------------------------------- /doc/dynamic_regexes.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/dynamic_regexes.qbk -------------------------------------------------------------------------------- /doc/examples.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/examples.qbk -------------------------------------------------------------------------------- /doc/grammars.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/grammars.qbk -------------------------------------------------------------------------------- /doc/history.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/history.qbk -------------------------------------------------------------------------------- /doc/installation.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/installation.qbk -------------------------------------------------------------------------------- /doc/introduction.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/introduction.qbk -------------------------------------------------------------------------------- /doc/matching.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/matching.qbk -------------------------------------------------------------------------------- /doc/named_captures.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/named_captures.qbk -------------------------------------------------------------------------------- /doc/nyi.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/nyi.qbk -------------------------------------------------------------------------------- /doc/perf.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/perf.qbk -------------------------------------------------------------------------------- /doc/preface.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/preface.qbk -------------------------------------------------------------------------------- /doc/quick_start.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/quick_start.qbk -------------------------------------------------------------------------------- /doc/regexpp_diffs.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/regexpp_diffs.qbk -------------------------------------------------------------------------------- /doc/results.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/results.qbk -------------------------------------------------------------------------------- /doc/static_regexes.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/static_regexes.qbk -------------------------------------------------------------------------------- /doc/substitutions.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/substitutions.qbk -------------------------------------------------------------------------------- /doc/symbols.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/symbols.qbk -------------------------------------------------------------------------------- /doc/tips_n_tricks.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/tips_n_tricks.qbk -------------------------------------------------------------------------------- /doc/tokenization.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/tokenization.qbk -------------------------------------------------------------------------------- /doc/tracking_ptr.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/tracking_ptr.qbk -------------------------------------------------------------------------------- /doc/traits.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/traits.qbk -------------------------------------------------------------------------------- /doc/xpressive.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/doc/xpressive.qbk -------------------------------------------------------------------------------- /example/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/example/Jamfile.v2 -------------------------------------------------------------------------------- /example/example.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/example/example.vcproj -------------------------------------------------------------------------------- /example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/example/main.cpp -------------------------------------------------------------------------------- /example/numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/example/numbers.cpp -------------------------------------------------------------------------------- /include/boost/xpressive/basic_regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/basic_regex.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/access.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/action.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/adaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/adaptor.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/finder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/finder.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/flow_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/flow_control.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/icase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/icase.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/linker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/linker.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/list.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/action_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/action_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/alternate_end_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/alternate_end_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/alternate_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/alternate_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/any_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/any_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/assert_bol_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/assert_bos_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/assert_eol_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/assert_eos_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/assert_line_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/assert_line_base.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/assert_word_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/assert_word_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/attr_begin_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/attr_begin_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/attr_end_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/attr_end_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/attr_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/attr_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/charset_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/charset_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/end_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/end_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/epsilon_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/epsilon_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/keeper_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/keeper_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/literal_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/literal_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/logical_newline_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/logical_newline_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/lookahead_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/lookahead_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/lookbehind_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/mark_begin_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/mark_end_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/mark_end_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/mark_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/mark_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/optional_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/optional_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/posix_charset_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/predicate_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/predicate_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/range_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/range_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/regex_byref_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/regex_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/regex_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/repeat_begin_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/repeat_begin_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/repeat_end_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/repeat_end_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/set_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/set_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/simple_repeat_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/string_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/string_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matcher/true_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matcher/true_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/matchers.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/optimize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/optimize.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/peeker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/peeker.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/quant_style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/quant_style.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/regex_domain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/regex_domain.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/regex_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/regex_impl.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/results_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/results_cache.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/state.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/sub_match_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/sub_match_impl.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/core/sub_match_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/core/sub_match_vector.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/detail_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/detail_fwd.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/dynamic/dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/dynamic/dynamic.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/dynamic/matchable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/dynamic/matchable.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/dynamic/parse_charset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/dynamic/parse_charset.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/dynamic/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/dynamic/parser.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/dynamic/parser_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/dynamic/parser_enum.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/dynamic/parser_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/dynamic/parser_traits.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/dynamic/sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/dynamic/sequence.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/compile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/compile.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/grammar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/grammar.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/is_pure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/is_pure.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/modifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/modifier.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/placeholders.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/static.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/static.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transforms/as_action.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transforms/as_action.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transforms/as_alternate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transforms/as_alternate.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transforms/as_independent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transforms/as_independent.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transforms/as_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transforms/as_inverse.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transforms/as_marker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transforms/as_marker.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transforms/as_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transforms/as_matcher.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transforms/as_modifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transforms/as_modifier.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transforms/as_quantifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transforms/as_quantifier.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transforms/as_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transforms/as_sequence.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transforms/as_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transforms/as_set.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/transmogrify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/transmogrify.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/type_traits.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/visitor.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/static/width_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/static/width_of.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/algorithm.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/any.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/boyer_moore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/boyer_moore.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/chset/basic_chset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/chset/basic_chset.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/chset/basic_chset.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/chset/basic_chset.ipp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/chset/chset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/chset/chset.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/chset/range_run.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/chset/range_run.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/chset/range_run.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/chset/range_run.ipp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/cons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/cons.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/counted_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/counted_base.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/dont_care.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/dont_care.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/hash_peek_bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/hash_peek_bitset.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/ignore_unused.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/ignore_unused.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/literals.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/never_true.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/never_true.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/save_restore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/save_restore.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/sequence_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/sequence_stack.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/symbols.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/tracking_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/tracking_ptr.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/traits_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/traits_utils.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/detail/utility/width.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/detail/utility/width.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/match_results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/match_results.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/regex_actions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/regex_actions.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/regex_algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/regex_algorithms.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/regex_compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/regex_compiler.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/regex_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/regex_constants.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/regex_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/regex_error.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/regex_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/regex_iterator.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/regex_primitives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/regex_primitives.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/regex_token_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/regex_token_iterator.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/regex_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/regex_traits.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/sub_match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/sub_match.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/traits/c_regex_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/traits/c_regex_traits.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/traits/cpp_regex_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/traits/cpp_regex_traits.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/traits/detail/c_ctype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/traits/detail/c_ctype.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/traits/null_regex_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/traits/null_regex_traits.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/xpressive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/xpressive.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/xpressive_dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/xpressive_dynamic.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/xpressive_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/xpressive_fwd.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/xpressive_static.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/xpressive_static.hpp -------------------------------------------------------------------------------- /include/boost/xpressive/xpressive_typeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/include/boost/xpressive/xpressive_typeof.hpp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/index.html -------------------------------------------------------------------------------- /meta/libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/meta/libraries.json -------------------------------------------------------------------------------- /perf/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/Jamfile.v2 -------------------------------------------------------------------------------- /perf/command_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/command_line.cpp -------------------------------------------------------------------------------- /perf/gcc/long_twain_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/gcc/long_twain_search.xml -------------------------------------------------------------------------------- /perf/gcc/short_matches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/gcc/short_matches.xml -------------------------------------------------------------------------------- /perf/gcc/short_twain_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/gcc/short_twain_search.xml -------------------------------------------------------------------------------- /perf/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/main.cpp -------------------------------------------------------------------------------- /perf/msvc/long_twain_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/msvc/long_twain_search.xml -------------------------------------------------------------------------------- /perf/msvc/short_matches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/msvc/short_matches.xml -------------------------------------------------------------------------------- /perf/msvc/short_twain_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/msvc/short_twain_search.xml -------------------------------------------------------------------------------- /perf/regex_comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/regex_comparison.hpp -------------------------------------------------------------------------------- /perf/time_boost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/time_boost.cpp -------------------------------------------------------------------------------- /perf/time_dynamic_xpressive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/time_dynamic_xpressive.cpp -------------------------------------------------------------------------------- /perf/time_static_xpressive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/perf/time_static_xpressive.cpp -------------------------------------------------------------------------------- /test/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/Jamfile.v2 -------------------------------------------------------------------------------- /test/c_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/c_traits.cpp -------------------------------------------------------------------------------- /test/c_traits_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/c_traits_u.cpp -------------------------------------------------------------------------------- /test/misc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/misc1.cpp -------------------------------------------------------------------------------- /test/misc2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/misc2.cpp -------------------------------------------------------------------------------- /test/multiple_defs1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/multiple_defs1.cpp -------------------------------------------------------------------------------- /test/multiple_defs2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/multiple_defs2.cpp -------------------------------------------------------------------------------- /test/regress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/regress.cpp -------------------------------------------------------------------------------- /test/regress.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/regress.ipp -------------------------------------------------------------------------------- /test/regress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/regress.txt -------------------------------------------------------------------------------- /test/regress_u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/regress_u.cpp -------------------------------------------------------------------------------- /test/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test.hpp -------------------------------------------------------------------------------- /test/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test1.cpp -------------------------------------------------------------------------------- /test/test1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test1.hpp -------------------------------------------------------------------------------- /test/test10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test10.cpp -------------------------------------------------------------------------------- /test/test10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test10.hpp -------------------------------------------------------------------------------- /test/test10u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test10u.cpp -------------------------------------------------------------------------------- /test/test11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test11.cpp -------------------------------------------------------------------------------- /test/test11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test11.hpp -------------------------------------------------------------------------------- /test/test11u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test11u.cpp -------------------------------------------------------------------------------- /test/test1u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test1u.cpp -------------------------------------------------------------------------------- /test/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test2.cpp -------------------------------------------------------------------------------- /test/test2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test2.hpp -------------------------------------------------------------------------------- /test/test2u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test2u.cpp -------------------------------------------------------------------------------- /test/test3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test3.cpp -------------------------------------------------------------------------------- /test/test3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test3.hpp -------------------------------------------------------------------------------- /test/test3u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test3u.cpp -------------------------------------------------------------------------------- /test/test4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test4.cpp -------------------------------------------------------------------------------- /test/test4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test4.hpp -------------------------------------------------------------------------------- /test/test4u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test4u.cpp -------------------------------------------------------------------------------- /test/test5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test5.cpp -------------------------------------------------------------------------------- /test/test5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test5.hpp -------------------------------------------------------------------------------- /test/test5u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test5u.cpp -------------------------------------------------------------------------------- /test/test6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test6.cpp -------------------------------------------------------------------------------- /test/test6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test6.hpp -------------------------------------------------------------------------------- /test/test6u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test6u.cpp -------------------------------------------------------------------------------- /test/test7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test7.cpp -------------------------------------------------------------------------------- /test/test7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test7.hpp -------------------------------------------------------------------------------- /test/test7u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test7u.cpp -------------------------------------------------------------------------------- /test/test8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test8.cpp -------------------------------------------------------------------------------- /test/test8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test8.hpp -------------------------------------------------------------------------------- /test/test8u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test8u.cpp -------------------------------------------------------------------------------- /test/test9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test9.cpp -------------------------------------------------------------------------------- /test/test9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test9.hpp -------------------------------------------------------------------------------- /test/test9u.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test9u.cpp -------------------------------------------------------------------------------- /test/test_actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_actions.cpp -------------------------------------------------------------------------------- /test/test_assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_assert.cpp -------------------------------------------------------------------------------- /test/test_assert_with_placeholder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_assert_with_placeholder.cpp -------------------------------------------------------------------------------- /test/test_basic_regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_basic_regex.cpp -------------------------------------------------------------------------------- /test/test_cycles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_cycles.cpp -------------------------------------------------------------------------------- /test/test_dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_dynamic.cpp -------------------------------------------------------------------------------- /test/test_dynamic_grammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_dynamic_grammar.cpp -------------------------------------------------------------------------------- /test/test_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_format.cpp -------------------------------------------------------------------------------- /test/test_match_results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_match_results.cpp -------------------------------------------------------------------------------- /test/test_non_char.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_non_char.cpp -------------------------------------------------------------------------------- /test/test_partial_match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_partial_match.cpp -------------------------------------------------------------------------------- /test/test_regex_algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_regex_algorithms.cpp -------------------------------------------------------------------------------- /test/test_regex_compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_regex_compiler.cpp -------------------------------------------------------------------------------- /test/test_regex_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_regex_constants.cpp -------------------------------------------------------------------------------- /test/test_regex_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_regex_error.cpp -------------------------------------------------------------------------------- /test/test_regex_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_regex_iterator.cpp -------------------------------------------------------------------------------- /test/test_regex_primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_regex_primitives.cpp -------------------------------------------------------------------------------- /test/test_regex_token_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_regex_token_iterator.cpp -------------------------------------------------------------------------------- /test/test_regex_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_regex_traits.cpp -------------------------------------------------------------------------------- /test/test_skip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_skip.cpp -------------------------------------------------------------------------------- /test/test_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_static.cpp -------------------------------------------------------------------------------- /test/test_sub_match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_sub_match.cpp -------------------------------------------------------------------------------- /test/test_symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_symbols.cpp -------------------------------------------------------------------------------- /test/test_typeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_typeof.cpp -------------------------------------------------------------------------------- /test/test_typeof2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/test/test_typeof2.cpp -------------------------------------------------------------------------------- /tools/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/tools/Jamfile.v2 -------------------------------------------------------------------------------- /tools/perl2xpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/xpressive/HEAD/tools/perl2xpr.cpp --------------------------------------------------------------------------------