Lines Matching refs:cflags
217 test (const char *pattern, int cflags, const char *string, int eflags, in test() argument
224 n = regcomp (&re, pattern, cflags); in test()
290 if (cflags & REG_NOSUB) in test()
321 mb_test (const char *pattern, int cflags, const char *string, int eflags, in mb_test() argument
339 ret = test (pattern_mb, cflags, string_mb, eflags, expect_mb, in mb_test()
351 mb_tests (const char *pattern, int cflags, const char *string, int eflags, in mb_tests() argument
400 ret |= mb_test (pattern, cflags, string, eflags, expect, matches, in mb_tests()
441 int cflags = REG_EXTENDED, eflags = 0, try_bre_ere = 0; in main() local
477 cflags &= ~REG_EXTENDED; in main()
486 cflags |= REG_ICASE; in main()
489 cflags |= REG_NOSUB; in main()
492 cflags |= REG_NEWLINE; in main()
531 if (test (pattern, cflags, string, eflags, expect, matches, "FAIL") in main()
533 && test (pattern, cflags & ~REG_EXTENDED, string, eflags, in main()
543 else if (test (pattern, cflags, string, eflags, expect, matches, in main()
546 && test (pattern, cflags & ~REG_EXTENDED, string, in main()
549 else if (mb_tests (pattern, cflags, string, eflags, expect, matches) in main()
551 && mb_tests (pattern, cflags & ~REG_EXTENDED, string, in main()