REG_EXTENDED      288 daemons/attrd/attrd_commands.c         if (regcomp(r_patt, regex, REG_EXTENDED|REG_NOSUB)) {
REG_EXTENDED      326 daemons/attrd/attrd_utils.c     rc = regcomp(regex, pattern, REG_EXTENDED|REG_NOSUB);
REG_EXTENDED       94 daemons/controld/controld_metadata.c         regcomp(version_format_regex, regex_string, REG_EXTENDED | REG_NOSUB);
REG_EXTENDED      854 daemons/fenced/fenced_remote.c             if (regcomp(&r_patt, tp->target_pattern, REG_EXTENDED|REG_NOSUB)) {
REG_EXTENDED      148 lib/common/operations.c                      REG_EXTENDED);
REG_EXTENDED     1106 lib/common/strings.c         int reg_flags = REG_EXTENDED | REG_NOSUB;
REG_EXTENDED      313 lib/pacemaker/pcmk_sched_location.c         if (regcomp(r_patt, value, REG_EXTENDED)) {
REG_EXTENDED      218 lib/pengine/failcounts.c     CRM_LOG_ASSERT(regcomp(re, pattern, REG_EXTENDED|REG_NOSUB) == 0);
REG_EXTENDED      541 maint/gnulib/lib/exclude.c           int cflags = REG_NOSUB|REG_EXTENDED|
REG_EXTENDED      442 maint/gnulib/lib/regcomp.c   reg_syntax_t syntax = ((cflags & REG_EXTENDED) ? RE_SYNTAX_POSIX_EXTENDED
REG_EXTENDED      112 maint/gnulib/lib/rpmatch.c       if (regcomp (re, safe_pattern, REG_EXTENDED) != 0)
REG_EXTENDED       87 maint/gnulib/tests/test-regex-quote.c   check ("aBc", REG_EXTENDED, "aBc");
REG_EXTENDED       88 maint/gnulib/tests/test-regex-quote.c   check ("(foo[$HOME])", REG_EXTENDED, "\\(foo\\[\\$HOME\\]\\)");
REG_EXTENDED       69 maint/gnulib/tests/test-regex.c   { "a(.*)b", "a b", REG_EXTENDED, 2, { { 0, 3 }, { 1, 2 } } },
REG_EXTENDED       82 maint/gnulib/tests/test-regex.c   { "(^|foo)bar", "bar", REG_EXTENDED, 2, { { 0, 3 }, { -1, -1 } } },
REG_EXTENDED       83 maint/gnulib/tests/test-regex.c   { "(foo|^)bar", "bar", REG_EXTENDED, 2, { { 0, 3 }, { -1, -1 } } },
REG_EXTENDED       88 maint/gnulib/tests/test-regex.c   { "()\\1", "x", REG_EXTENDED, 2, { { 0, 0 }, { 0, 0 } } },
REG_EXTENDED       89 maint/gnulib/tests/test-regex.c   { "()x\\1", "x", REG_EXTENDED, 2, { { 0, 1 }, { 0, 0 } } },
REG_EXTENDED       90 maint/gnulib/tests/test-regex.c   { "()\\1*\\1*", "", REG_EXTENDED, 2, { { 0, 0 }, { 0, 0 } } },
REG_EXTENDED       91 maint/gnulib/tests/test-regex.c   { "([0-9]).*\\1(a*)", "7;7a6", REG_EXTENDED, 3, { { 0, 4 }, { 0, 1 }, { 3, 4 } } },
REG_EXTENDED       92 maint/gnulib/tests/test-regex.c   { "([0-9]).*\\1(a*)", "7;7a", REG_EXTENDED, 3, { { 0, 4 }, { 0, 1 }, { 3, 4 } } },
REG_EXTENDED       93 maint/gnulib/tests/test-regex.c   { "(b)()c\\1", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 1 }, { 1, 1 } } },
REG_EXTENDED       94 maint/gnulib/tests/test-regex.c   { "()(b)c\\2", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 0 }, { 0, 1 } } },
REG_EXTENDED       95 maint/gnulib/tests/test-regex.c   { "a(b)()c\\1", "abcb", REG_EXTENDED, 3, { { 0, 4 }, { 1, 2 }, { 2, 2 } } },
REG_EXTENDED       96 maint/gnulib/tests/test-regex.c   { "a()(b)c\\2", "abcb", REG_EXTENDED, 3, { { 0, 4 }, { 1, 1 }, { 1, 2 } } },
REG_EXTENDED       97 maint/gnulib/tests/test-regex.c   { "()(b)\\1c\\2", "bcb", REG_EXTENDED, 3, { { 0, 3 }, { 0, 0 }, { 0, 1 } } },
REG_EXTENDED       98 maint/gnulib/tests/test-regex.c   { "(b())\\2\\1", "bbbb", REG_EXTENDED, 3, { { 0, 2 }, { 0, 1 }, { 1, 1 } } },
REG_EXTENDED       99 maint/gnulib/tests/test-regex.c   { "a()(b)\\1c\\2", "abcb", REG_EXTENDED, 3, { { 0, 4 }, { 1, 1 }, { 1, 2 } } },
REG_EXTENDED      100 maint/gnulib/tests/test-regex.c   { "a()d(b)\\1c\\2", "adbcb", REG_EXTENDED, 3, { { 0, 5 }, { 1, 1 }, { 2, 3 } } },
REG_EXTENDED      101 maint/gnulib/tests/test-regex.c   { "a(b())\\2\\1", "abbbb", REG_EXTENDED, 3, { { 0, 3 }, { 1, 2 }, { 2, 2 } } },
REG_EXTENDED      102 maint/gnulib/tests/test-regex.c   { "(bb())\\2\\1", "bbbb", REG_EXTENDED, 3, { { 0, 4 }, { 0, 2 }, { 2, 2 } } },
REG_EXTENDED      103 maint/gnulib/tests/test-regex.c   { "^([^,]*),\\1,\\1$", "a,a,a", REG_EXTENDED, 2, { { 0, 5 }, { 0, 1 } } },
REG_EXTENDED      104 maint/gnulib/tests/test-regex.c   { "^([^,]*),\\1,\\1$", "ab,ab,ab", REG_EXTENDED, 2, { { 0, 8 }, { 0, 2 } } },
REG_EXTENDED      105 maint/gnulib/tests/test-regex.c   { "^([^,]*),\\1,\\1,\\1$", "abc,abc,abc,abc", REG_EXTENDED, 2,
REG_EXTENDED      108 maint/gnulib/tests/test-regex.c     "level", REG_NOSUB | REG_EXTENDED, 0, { { -1, -1 } } },
REG_EXTENDED      110 maint/gnulib/tests/test-regex.c     "level", REG_NOSUB | REG_EXTENDED, 0, { { -1, -1 } } },
REG_EXTENDED      112 maint/gnulib/tests/test-regex.c     "abcdedcba", REG_EXTENDED, 1, { { 0, 9 } } },
REG_EXTENDED      114 maint/gnulib/tests/test-regex.c     "ababababa", REG_EXTENDED, 1, { { 0, 9 } } },
REG_EXTENDED      116 maint/gnulib/tests/test-regex.c     "level", REG_NOSUB | REG_EXTENDED, 0, { { -1, -1 } } },
REG_EXTENDED      118 maint/gnulib/tests/test-regex.c     "ababababa", REG_EXTENDED, 1, { { 0, 9 } } },
REG_EXTENDED      120 maint/gnulib/tests/test-regex.c   { "^a*+(.)", "ab", REG_EXTENDED, 2, { { 0, 2 }, { 1, 2 } } },
REG_EXTENDED      122 maint/gnulib/tests/test-regex.c   { "^(a*)*(.)", "ab", REG_EXTENDED, 3, { { 0, 2 }, { 0, 1 }, { 1, 2 } } },