/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
D | bug-regex11.c | 44 { "a(.*)b", "a b", REG_EXTENDED, 2, { { 0, 3 }, { 1, 2 } } }, 57 { "(^|foo)bar", "bar", REG_EXTENDED, 2, { { 0, 3 }, { -1, -1 } } }, 58 { "(foo|^)bar", "bar", REG_EXTENDED, 2, { { 0, 3 }, { -1, -1 } } }, 63 { "()\\1", "x", REG_EXTENDED, 2, { { 0, 0 }, { 0, 0 } } }, 64 { "()x\\1", "x", REG_EXTENDED, 2, { { 0, 1 }, { 0, 0 } } }, 65 { "()\\1*\\1*", "", REG_EXTENDED, 2, { { 0, 0 }, { 0, 0 } } }, 66 { "([0-9]).*\\1(a*)", "7;7a6", REG_EXTENDED, 3, { { 0, 4 }, { 0, 1 }, { 3, 4 } } }, 67 { "([0-9]).*\\1(a*)", "7;7a", REG_EXTENDED, 3, { { 0, 4 }, { 0, 1 }, { 3, 4 } } }, 68 { "(b)()c\\1", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 1 }, { 1, 1 } } }, 69 { "()(b)c\\2", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 0 }, { 0, 1 } } }, [all …]
|
D | bug-regex27.c | 33 { "a.b", "a\nb", REG_EXTENDED | REG_NEWLINE, REG_NOMATCH }, 34 { "a.b", "a\nb", REG_EXTENDED, 0 }, 35 { "a[^x]b", "a\nb", REG_EXTENDED | REG_NEWLINE, REG_NOMATCH }, 36 { "a[^x]b", "a\nb", REG_EXTENDED, 0 }
|
D | BOOST.tests | 49 - match_default normal REG_EXTENDED 89 - match_default normal REG_EXTENDED REG_STARTEND 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 262 - match_default match_not_bol match_not_eol normal REG_EXTENDED REG_NOTBOL REG_NOTEOL 293 - match_default extended REG_EXTENDED [all …]
|
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()
|
D | tst-boost.c | 86 int flags = REG_EXTENDED; in main() 129 flags = REG_EXTENDED; in main()
|
D | bug-regex21.c | 44 REG_EXTENDED | REG_ICASE) == 0) in main()
|
D | bug-regex15.c | 38 REG_EXTENDED | REG_NOSUB); in main()
|
D | bug-regex9.c | 47 n = regcomp (&re, "^#! */.*/(k|ba||pdk|z)sh", REG_EXTENDED); in main()
|
D | bug-regex12.c | 43 { "a^b", "a^b", REG_EXTENDED, 0 }
|
D | runtests.c | 70 err = regcomp (&r, t->pattern, REG_EXTENDED); in run_a_test()
|
D | tst-regex2.c | 77 REG_EXTENDED | (testno ? REG_NOSUB : 0)); in main()
|
D | tst-pcre.c | 166 REG_EXTENDED | (ignorecase ? REG_ICASE : 0)); in main()
|
/ndk/sources/host-tools/ndk-stack/ |
D | ndk-stack-parser.c | 142 if (regcomp(&parser->re_pid_header, _pid_header, REG_EXTENDED | REG_NEWLINE) || in CreateNdkCrashParser() 143 regcomp(&parser->re_sig_header, _sig_header, REG_EXTENDED | REG_NEWLINE) || in CreateNdkCrashParser() 144 regcomp(&parser->re_frame_header, _frame_header, REG_EXTENDED | REG_NEWLINE)) in CreateNdkCrashParser()
|
/ndk/sources/host-tools/ndk-stack/regex/ |
D | regex.h | 66 #define REG_EXTENDED 0001 macro
|
D | regcomp.c | 163 if ((cflags®_EXTENDED) && (cflags®_NOSPEC)) in regcomp() 215 if (cflags®_EXTENDED) in regcomp()
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
D | sed.c | 294 extended_regexp_flags = REG_EXTENDED;
|
D | regexp.c | 66 int syntax = ((extended_regexp_flags & REG_EXTENDED)
|
D | compile.c | 625 flags |= REG_EXTENDED; 975 flags |= REG_EXTENDED;
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | regex.h | 338 #define REG_EXTENDED 1 macro
|
D | regcomp.c | 482 reg_syntax_t syntax = ((cflags & REG_EXTENDED) ? RE_SYNTAX_POSIX_EXTENDED
|