/posix/ |
A D | bug-regex11.c | 36 { "a(.*)b", "a b", REG_EXTENDED, 2, { { 0, 3 }, { 1, 2 } } }, 55 { "()\\1", "x", REG_EXTENDED, 2, { { 0, 0 }, { 0, 0 } } }, 56 { "()x\\1", "x", REG_EXTENDED, 2, { { 0, 1 }, { 0, 0 } } }, 57 { "()\\1*\\1*", "", REG_EXTENDED, 2, { { 0, 0 }, { 0, 0 } } }, 72 { "^([^,]*),\\1,\\1,\\1$", "abc,abc,abc,abc", REG_EXTENDED, 2, 75 "level", REG_NOSUB | REG_EXTENDED, 0, { { -1, -1 } } }, 77 "level", REG_NOSUB | REG_EXTENDED, 0, { { -1, -1 } } }, 79 "abcdedcba", REG_EXTENDED, 1, { { 0, 9 } } }, 83 "ababababa", REG_EXTENDED, 1, { { 0, 9 } } }, 85 "level", REG_NOSUB | REG_EXTENDED, 0, { { -1, -1 } } }, [all …]
|
A D | bug-regex27.c | 30 { "a.b", "a\nb", REG_EXTENDED | REG_NEWLINE, REG_NOMATCH }, 31 { "a.b", "a\nb", REG_EXTENDED, 0 }, 32 { "a[^x]b", "a\nb", REG_EXTENDED | REG_NEWLINE, REG_NOMATCH }, 33 { "a[^x]b", "a\nb", REG_EXTENDED, 0 }
|
A D | bug-regex17.c | 51 { "[a-z]|[^a-z]", "\xcb\xa2", REG_EXTENDED, 2, 53 { "[a-z]", "\xc3\x9f", REG_EXTENDED, 2, 55 { "[^a-z]", "\xcb\x9a", REG_EXTENDED, 2,
|
A D | bug-regex18.c | 44 "\xe2\x80\x94\xc4\xb1\xc4\xb0""fIi\xc4\xb0ii", REG_ICASE | REG_EXTENDED, 47 REG_ICASE | REG_EXTENDED, 4, { { 1, 9 }, { 5, 7 }, { 7, 7 }, { 7, 9 } } }, 49 REG_ICASE | REG_EXTENDED, 4,
|
A D | BOOST.tests | 49 - match_default normal REG_EXTENDED 98 - match_default normal REG_EXTENDED 131 - match_default normal REG_EXTENDED 149 - match_default normal REG_EXTENDED 181 - match_default normal REG_EXTENDED 190 - match_default normal REG_EXTENDED 257 - match_default normal REG_EXTENDED 293 - match_default extended REG_EXTENDED 481 - match_default normal REG_EXTENDED REG_ICASE 489 - match_default normal REG_EXTENDED [all …]
|
A D | bug-regex37.c | 28 TEST_VERIFY_EXIT (regcomp (&r, pattern, REG_EXTENDED) == REG_ESUBREG); in do_test()
|
A D | bug-regex38.c | 28 TEST_VERIFY_EXIT (regcomp (&r, pattern, REG_EXTENDED) == REG_ESUBREG); in do_test()
|
A D | bug-regex23.c | 30 regcomp (&r, "[-a-z_0-9.]+@[-a-z_0-9.]+", REG_EXTENDED | REG_ICASE); in main()
|
A D | bug-regex21.c | 34 REG_EXTENDED | REG_ICASE) == 0) in main()
|
A D | bug-regex15.c | 22 REG_EXTENDED | REG_NOSUB); in do_test()
|
A D | tst-rxspencer.c | 441 int cflags = REG_EXTENDED, eflags = 0, try_bre_ere = 0; in main() 477 cflags &= ~REG_EXTENDED; in main() 533 && test (pattern, cflags & ~REG_EXTENDED, string, eflags, in main() 546 && test (pattern, cflags & ~REG_EXTENDED, string, in main() 551 && mb_tests (pattern, cflags & ~REG_EXTENDED, string, in main()
|
A D | bug-regex2.c | 37 n = regcomp (&re, "a test", REG_EXTENDED); in main()
|
A D | bug-regex31.c | 24 int rc = regcomp (®ex, buf, REG_EXTENDED); in main()
|
A D | tst-boost.c | 78 int flags = REG_EXTENDED; in main() 119 flags = REG_EXTENDED; in main()
|
A D | bug-regex9.c | 37 n = regcomp (&re, "^#! */.*/(k|ba||pdk|z)sh", REG_EXTENDED); in main()
|
A D | bug-regex12.c | 35 { "a^b", "a^b", REG_EXTENDED, 0 }
|
A D | bug-regex6.c | 47 REG_EXTENDED) != REG_NOERROR) in main()
|
A D | bug-regex24.c | 20 int err = regcomp (&rbuf, pat, REG_EXTENDED); in do_test()
|
A D | runtests.c | 66 err = regcomp (&r, t->pattern, REG_EXTENDED); in run_a_test()
|
A D | tst-pcre.c | 156 REG_EXTENDED | (ignorecase ? REG_ICASE : 0)); in main()
|
A D | tst-regex2.c | 91 REG_EXTENDED | (testno ? REG_NOSUB : 0)); in do_test()
|
A D | regex.h | 310 #define REG_EXTENDED 1 macro
|
A D | regcomp.c | 464 reg_syntax_t syntax = ((cflags & REG_EXTENDED) ? RE_SYNTAX_POSIX_EXTENDED in regcomp()
|