Home
last modified time | relevance | path

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

/ndk/sources/host-tools/sed-4.2.1/testsuite/
Dbug-regex11.c44 { "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 …]
Dbug-regex27.c33 { "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 }
DBOOST.tests49 - 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 …]
Dtst-rxspencer.c441 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()
Dtst-boost.c86 int flags = REG_EXTENDED; in main()
129 flags = REG_EXTENDED; in main()
Dbug-regex21.c44 REG_EXTENDED | REG_ICASE) == 0) in main()
Dbug-regex15.c38 REG_EXTENDED | REG_NOSUB); in main()
Dbug-regex9.c47 n = regcomp (&re, "^#! */.*/(k|ba||pdk|z)sh", REG_EXTENDED); in main()
Dbug-regex12.c43 { "a^b", "a^b", REG_EXTENDED, 0 }
Druntests.c70 err = regcomp (&r, t->pattern, REG_EXTENDED); in run_a_test()
Dtst-regex2.c77 REG_EXTENDED | (testno ? REG_NOSUB : 0)); in main()
Dtst-pcre.c166 REG_EXTENDED | (ignorecase ? REG_ICASE : 0)); in main()
/ndk/sources/host-tools/ndk-stack/
Dndk-stack-parser.c142 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/
Dregex.h66 #define REG_EXTENDED 0001 macro
Dregcomp.c163 if ((cflags&REG_EXTENDED) && (cflags&REG_NOSPEC)) in regcomp()
215 if (cflags&REG_EXTENDED) in regcomp()
/ndk/sources/host-tools/sed-4.2.1/sed/
Dsed.c294 extended_regexp_flags = REG_EXTENDED;
Dregexp.c66 int syntax = ((extended_regexp_flags & REG_EXTENDED)
Dcompile.c625 flags |= REG_EXTENDED;
975 flags |= REG_EXTENDED;
/ndk/sources/host-tools/sed-4.2.1/lib/
Dregex.h338 #define REG_EXTENDED 1 macro
Dregcomp.c482 reg_syntax_t syntax = ((cflags & REG_EXTENDED) ? RE_SYNTAX_POSIX_EXTENDED