Home
last modified time | relevance | path

Searched refs:test_match (Results 1 – 25 of 1343) sorted by relevance

12345678910>>...54

/dports/textproc/bibtool/BibTool/regex-0.12/test/
H A Dpsx-generic.c38 test_match ("\\a","a"); in test_posix_generic()
39 test_match ("\\0", "0"); in test_posix_generic()
48 test_match ("\n", "\n"); in test_posix_generic()
55 test_match ("a*", "aa"); in test_posix_generic()
66 test_match ("\\{", "{"); in test_posix_generic()
67 test_match ("\\^", "^"); in test_posix_generic()
68 test_match ("\\.", "."); in test_posix_generic()
80 test_match (".", "a"); in test_posix_generic()
199 test_match ("^", ""); in test_posix_generic()
201 test_match ("$", ""); in test_posix_generic()
[all …]
H A Dpsx-basic.c30 test_match ("\\(*\\)", "*"); in test_posix_basic()
31 test_match ("\\(^*\\)", "*"); in test_posix_basic()
32 test_match ("**", "***"); in test_posix_basic()
33 test_match ("***", "****"); in test_posix_basic()
45 test_match ("a\\+", "a+"); in test_posix_basic()
46 test_match ("a\\?", "a?"); in test_posix_basic()
48 test_match ("^*", "*"); in test_posix_basic()
49 test_match ("^+", "+"); in test_posix_basic()
50 test_match ("^?", "?"); in test_posix_basic()
51 test_match ("^{", "{"); in test_posix_basic()
[all …]
H A Dpsx-group.c14 test_match (PARENS_TO_OPS ("(a)"), "a"); in test_grouping()
18 test_match (PARENS_TO_OPS ("((a))"), "a"); in test_grouping()
24 test_match (PARENS_TO_OPS ("(a)(b)"), "ab"); in test_grouping()
40 test_match (PARENS_TO_OPS ("(a)*"), ""); in test_grouping()
45 test_match (PARENS_TO_OPS ("(a*)"), ""); in test_grouping()
49 test_match (PARENS_TO_OPS ("(a*)"), "a"); in test_grouping()
53 test_match (PARENS_TO_OPS ("(a*)b"), "b"); in test_grouping()
56 test_match (PARENS_TO_OPS ("(a*)b"), "ab"); in test_grouping()
81 test_match (PARENS_TO_OPS ("(ab)*"), ""); in test_grouping()
94 test_match (PARENS_TO_OPS ("(a)*b"), "b"); in test_grouping()
[all …]
H A Dpsx-interv.c17 test_match (BRACES_TO_OPS ("a{0}"), ""); in test_intervals()
22 test_match (BRACES_TO_OPS ("a{0,}"), ""); in test_intervals()
23 test_match (BRACES_TO_OPS ("a{0,}"), "a"); in test_intervals()
28 test_match (BRACES_TO_OPS ("a{1}"), "a"); in test_intervals()
29 test_match (BRACES_TO_OPS ("a{1,}"), "a"); in test_intervals()
30 test_match (BRACES_TO_OPS ("a{1,}"), "aa"); in test_intervals()
31 test_match (BRACES_TO_OPS ("a{0,0}"), ""); in test_intervals()
32 test_match (BRACES_TO_OPS ("a{0,1}"), ""); in test_intervals()
33 test_match (BRACES_TO_OPS ("a{0,1}"), "a"); in test_intervals()
34 test_match (BRACES_TO_OPS ("a{1,3}"), "a"); in test_intervals()
[all …]
H A Dpsx-extend.c29 test_match ("\\(a", "(a"); in test_posix_extended()
30 test_match ("a\\+", "a+"); in test_posix_extended()
49 test_match ("a+", "a"); in test_posix_extended()
50 test_match ("a+", "aa"); in test_posix_extended()
51 test_match ("a?", ""); in test_posix_extended()
52 test_match ("a?", "a"); in test_posix_extended()
55 test_match ("[(]", "("); in test_posix_extended()
56 test_match ("[+]", "+"); in test_posix_extended()
57 test_match ("[?]", "?"); in test_posix_extended()
58 test_match ("[{]", "{"); in test_posix_extended()
[all …]
H A Dother.c20 test_match ("(a*)*", ""); in test_others()
58 test_match ("a|*", "*"); in test_others()
59 test_match ("(*)", "*"); in test_others()
62 test_match ("a|+", "+"); in test_others()
63 test_match ("(+)", "+"); in test_others()
66 test_match ("a|?", "?"); in test_others()
98 test_match ("()", ""); in test_others()
110 test_match ("()*", ""); in test_others()
115 test_match ("*", ""); in test_others()
137 test_match ("|", ""); in test_others()
[all …]
H A Dtregress.c363 test_match ("^\\([^ \n]+:\n\\)+\\([^ \n]+:\\)", in test_regress()
417 test_match ("(o|t)", "o"); in test_regress()
418 test_match ("(o()|t)", "o"); in test_regress()
419 test_match ("(o|t)", "o"); in test_regress()
421 test_match ("(o|t())", "o"); in test_regress()
422 test_match ("(o()|t())", "o"); in test_regress()
424 test_match ("(o()|t())-a-(t\\2|f\\3)", "o-a-t"); in test_regress()
425 test_match ("(o()|t())-a-(t\\2|f\\3)", "t-a-f"); in test_regress()
428 test_match ("(foo(bar)|second)\\2", "second"); in test_regress()
429 test_match ("(o()|t())-a-(t\\2|f\\3)", "t-a-t"); in test_regress()
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/regex/performance/
H A Dperformance.cpp113 void test_match(const char* expression, const char* text, bool isperl = false) in test_match() function
166 test_match("abc", "abc"); in cpp_main()
169 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in cpp_main()
177 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in cpp_main()
179 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in cpp_main()
180 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in cpp_main()
181 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "-3.14159"); in cpp_main()
185 test_match("abc", "abc", true); in cpp_main()
198 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123", true); in cpp_main()
199 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159", true); in cpp_main()
[all …]
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/libs/regex/performance/
H A Dperformance.cpp113 void test_match(const char* expression, const char* text, bool isperl = false) in test_match() function
166 test_match("abc", "abc"); in cpp_main()
169 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in cpp_main()
177 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in cpp_main()
179 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in cpp_main()
180 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in cpp_main()
181 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "-3.14159"); in cpp_main()
185 test_match("abc", "abc", true); in cpp_main()
198 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123", true); in cpp_main()
199 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159", true); in cpp_main()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/regex/performance/
H A Dperformance.cpp113 void test_match(const char* expression, const char* text, bool isperl = false) in test_match() function
166 test_match("abc", "abc"); in cpp_main()
169 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in cpp_main()
177 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in cpp_main()
179 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in cpp_main()
180 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in cpp_main()
181 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "-3.14159"); in cpp_main()
185 test_match("abc", "abc", true); in cpp_main()
198 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123", true); in cpp_main()
199 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159", true); in cpp_main()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/regex/performance/
H A Dperformance.cpp113 void test_match(const char* expression, const char* text, bool isperl = false) in test_match() function
166 test_match("abc", "abc"); in cpp_main()
169 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in cpp_main()
177 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in cpp_main()
179 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in cpp_main()
180 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in cpp_main()
181 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "-3.14159"); in cpp_main()
185 test_match("abc", "abc", true); in cpp_main()
198 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123", true); in cpp_main()
199 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159", true); in cpp_main()
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/regex/performance/
H A Dperformance.cpp113 void test_match(const char* expression, const char* text, bool isperl = false) in test_match() function
166 test_match("abc", "abc"); in cpp_main()
169 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in cpp_main()
177 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in cpp_main()
179 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in cpp_main()
180 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in cpp_main()
181 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "-3.14159"); in cpp_main()
185 test_match("abc", "abc", true); in cpp_main()
198 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123", true); in cpp_main()
199 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159", true); in cpp_main()
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/xpressive/perf/
H A Dmain.cpp19 void test_match(const std::string& re, const std::string& text, const std::string& description) in test_match() function
143test_match("^([0-9]+)(\\-| |$)(.*)$", "100- this is a line of ftp response which contains a messag… in main()
144 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in main()
149 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in main()
150 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in main()
151 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in main()
152 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in main()
153 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in main()
154 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in main()
155 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in main()
[all …]
/dports/databases/percona57-server/boost_1_59_0/libs/xpressive/perf/
H A Dmain.cpp19 void test_match(const std::string& re, const std::string& text, const std::string& description) in test_match() function
143test_match("^([0-9]+)(\\-| |$)(.*)$", "100- this is a line of ftp response which contains a messag… in main()
144 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in main()
149 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in main()
150 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in main()
151 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in main()
152 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in main()
153 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in main()
154 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in main()
155 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in main()
[all …]
/dports/databases/xtrabackup/boost_1_59_0/libs/xpressive/perf/
H A Dmain.cpp19 void test_match(const std::string& re, const std::string& text, const std::string& description) in test_match() function
143test_match("^([0-9]+)(\\-| |$)(.*)$", "100- this is a line of ftp response which contains a messag… in main()
144 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in main()
149 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in main()
150 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in main()
151 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in main()
152 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in main()
153 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in main()
154 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in main()
155 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in main()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/xpressive/perf/
H A Dmain.cpp19 void test_match(const std::string& re, const std::string& text, const std::string& description) in test_match() function
143test_match("^([0-9]+)(\\-| |$)(.*)$", "100- this is a line of ftp response which contains a messag… in main()
144 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in main()
149 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in main()
150 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in main()
151 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in main()
152 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in main()
153 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in main()
154 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in main()
155 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in main()
[all …]
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/libs/xpressive/perf/
H A Dmain.cpp19 void test_match(const std::string& re, const std::string& text, const std::string& description) in test_match() function
143test_match("^([0-9]+)(\\-| |$)(.*)$", "100- this is a line of ftp response which contains a messag… in main()
144 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in main()
149 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in main()
150 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in main()
151 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in main()
152 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in main()
153 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in main()
154 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in main()
155 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in main()
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/xpressive/perf/
H A Dmain.cpp19 void test_match(const std::string& re, const std::string& text, const std::string& description) in test_match() function
143test_match("^([0-9]+)(\\-| |$)(.*)$", "100- this is a line of ftp response which contains a messag… in main()
144 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in main()
149 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in main()
150 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in main()
151 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in main()
152 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in main()
153 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in main()
154 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in main()
155 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in main()
[all …]
/dports/databases/percona57-client/boost_1_59_0/libs/xpressive/perf/
H A Dmain.cpp19 void test_match(const std::string& re, const std::string& text, const std::string& description) in test_match() function
143test_match("^([0-9]+)(\\-| |$)(.*)$", "100- this is a line of ftp response which contains a messag… in main()
144 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in main()
149 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in main()
150 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in main()
151 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in main()
152 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in main()
153 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in main()
154 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in main()
155 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in main()
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/xpressive/perf/
H A Dmain.cpp19 void test_match(const std::string& re, const std::string& text, const std::string& description) in test_match() function
143test_match("^([0-9]+)(\\-| |$)(.*)$", "100- this is a line of ftp response which contains a messag… in main()
144 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in main()
149 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in main()
150 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in main()
151 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in main()
152 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in main()
153 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in main()
154 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in main()
155 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in main()
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/xpressive/perf/
H A Dmain.cpp19 void test_match(const std::string& re, const std::string& text, const std::string& description) in test_match() function
143test_match("^([0-9]+)(\\-| |$)(.*)$", "100- this is a line of ftp response which contains a messag… in main()
144 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in main()
149 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in main()
150 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in main()
151 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in main()
152 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in main()
153 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in main()
154 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in main()
155 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in main()
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/xpressive/perf/
H A Dmain.cpp19 void test_match(const std::string& re, const std::string& text, const std::string& description) in test_match() function
143test_match("^([0-9]+)(\\-| |$)(.*)$", "100- this is a line of ftp response which contains a messag… in main()
144 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in main()
149 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in main()
150 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in main()
151 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in main()
152 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in main()
153 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in main()
154 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in main()
155 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in main()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/regex/performance/
H A Dmain.cpp20 void test_match(const std::string& re, const std::string& text, const std::string& description, boo… in test_match() function
175 test_match("abc", "abc"); in cpp_main()
178 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in cpp_main()
183 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in cpp_main()
184 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in cpp_main()
185 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in cpp_main()
186 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in cpp_main()
187 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in cpp_main()
188 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in cpp_main()
189 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in cpp_main()
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/regex/performance/
H A Dmain.cpp20 void test_match(const std::string& re, const std::string& text, const std::string& description, boo… in test_match() function
175 test_match("abc", "abc"); in cpp_main()
178 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in cpp_main()
183 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in cpp_main()
184 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in cpp_main()
185 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in cpp_main()
186 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in cpp_main()
187 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in cpp_main()
188 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in cpp_main()
189 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in cpp_main()
[all …]
/dports/databases/percona57-server/boost_1_59_0/libs/regex/performance/
H A Dmain.cpp20 void test_match(const std::string& re, const std::string& text, const std::string& description, boo… in test_match() function
175 test_match("abc", "abc"); in cpp_main()
178 test_match("([[:digit:]]{4}[- ]){3}[[:digit:]]{3,4}", "1234-5678-1234-456"); in cpp_main()
183 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "EH10 2QQ"); in cpp_main()
184 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "G1 1AA"); in cpp_main()
185 test_match("^[a-zA-Z]{1,2}[0-9][0-9A-Za-z]{0,1} {0,1}[0-9][A-Za-z]{2}$", "SW1 1ZZ"); in cpp_main()
186 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "4/1/2001"); in cpp_main()
187 test_match("^[[:digit:]]{1,2}/[[:digit:]]{1,2}/[[:digit:]]{4}$", "12/12/2001"); in cpp_main()
188 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "123"); in cpp_main()
189 test_match("^[-+]?[[:digit:]]*\\.?[[:digit:]]*$", "+3.14159"); in cpp_main()
[all …]

12345678910>>...54