Home
last modified time | relevance | path

Searched refs:REG_ICASE (Results 1 – 19 of 19) sorted by relevance

/illumos-gate/usr/src/lib/print/libpapi-lpd/common/
H A Dlpd-query.c300 (void) regcomp(&job_re, job_expr, REG_EXTENDED|REG_ICASE); in parse_lpd_query()
307 (void) regcomp(&wjob_re, wjob_expr, REG_EXTENDED|REG_ICASE); in parse_lpd_query()
308 (void) regcomp(&whjob_re, whjob_expr, REG_EXTENDED|REG_ICASE); in parse_lpd_query()
309 (void) regcomp(&wline_re, wline_expr, REG_EXTENDED|REG_ICASE); in parse_lpd_query()
346 REG_EXTENDED|REG_ICASE); in parse_lpd_query()
351 (void) regcomp(&proc_re, proc_expr, REG_EXTENDED|REG_ICASE); in parse_lpd_query()
352 (void) regcomp(&idle_re, idle_expr, REG_EXTENDED|REG_ICASE); in parse_lpd_query()
374 (void) regcomp(&doc1_re, doc1_expr, REG_EXTENDED|REG_ICASE); in parse_lpd_query()
375 (void) regcomp(&doc2_re, doc2_expr, REG_EXTENDED|REG_ICASE); in parse_lpd_query()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/misc/
H A Dglob.c312 int meta = ((gp->re_flags & REG_ICASE) && *ap->gl_begin != '/') ? MATCH_META : 0; in glob_dir()
485 if (!(gp->re_flags & REG_ICASE) && ((*gp->gl_attr)(gp, dirname, 0) & GLOB_ICASE)) in glob_dir()
489 if (err = regcomp(&rei, pat, gp->re_flags|REG_ICASE)) in glob_dir()
495 gp->re_flags = regstat(prei)->re_flags & ~REG_ICASE; in glob_dir()
515 if ((ire = gp->gl_ignore) && (gp->re_flags & REG_ICASE)) in glob_dir()
519 if (regcomp(&gp->re_ignorei, gp->gl_fignore, re_flags|REG_ICASE)) in glob_dir()
666 gp->re_flags |= REG_ICASE; in glob()
735 gp->re_flags |= REG_ICASE; in glob()
737 gp->re_flags &= ~REG_ICASE; in glob()
H A Dfastfind.c625 …(i = regcomp(&fp->decode.re, pattern, REG_SHELL|REG_AUGMENTED|(fp->decode.ignorecase?REG_ICASE:0))) in findopen()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/string/
H A Dstrmatch.c131 reflags |= REG_ICASE; in strgrpmatch()
143 …re, b, n, matchstate.match, reflags & ~(REG_MINIMAL|REG_SHELL_GROUP|REG_LEFT|REG_RIGHT|REG_ICASE))) in strgrpmatch()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/
H A Dfnmatch.c42 FNM_ICASE, REG_ICASE,
/illumos-gate/usr/src/head/
H A Dregex.h80 #define REG_ICASE 0x00004 /* Ignore case in match */ macro
/illumos-gate/usr/src/contrib/ast/src/lib/libast/include/
H A Dregex.h48 #define REG_ICASE 0x00000004 /* ignore case in match */ macro
/illumos-gate/usr/src/contrib/ast/src/lib/libast/regex/
H A Dregcomp.c158 e->map = (e->flags & REG_ICASE) ? env->MAP : env->map; in node()
1471 if (ic = env->flags & REG_ICASE) in bra()
1720 if (env->flags & REG_ICASE) in bra()
2135 env->flags |= REG_ICASE; in grp()
2137 env->flags &= ~REG_ICASE; in grp()
2610 *s++ = (env->flags & REG_ICASE) ? toupper(c) : c; in seq()
2612 else if (c == C_ESC || (env->flags & REG_ICASE)) in seq()
2615 if (env->flags & REG_ICASE) in seq()
2663 f->re.onechar = (env->flags & REG_ICASE) ? toupper(x) : x; in seq()
2960 if (a->flags & REG_ICASE) in bmstr()
H A Dregnexec.c661 ic = (rex->flags & REG_ICASE); in collmatch()
1527 if (!(rex->flags & REG_ICASE)) in parse()
1619 if (!(rex->flags & REG_ICASE)) in parse()
/illumos-gate/usr/src/test/libc-tests/tests/regex/
H A Dtestregex.c354 #ifndef REG_ICASE
435 #ifndef REG_ICASE
436 #define REG_ICASE NOTEST macro
1630 cflags |= REG_ICASE; in main()
/illumos-gate/usr/src/cmd/mandoc/
H A Dmansearch.c797 REG_EXTENDED | REG_NOSUB | (cs ? 0 : REG_ICASE)); in exprterm()
/illumos-gate/usr/src/lib/libc/port/regex/
H A Dregcomp.c867 if (p->g->cflags&REG_ICASE) in p_bracket()
1114 if ((p->g->cflags&REG_ICASE) && iswalpha(ch) && othercase(ch) != ch) in ordinary()
/illumos-gate/usr/src/cmd/sed/
H A Dcompile.c445 flags |= REG_ICASE; in compile_re()
/illumos-gate/usr/src/cmd/grep/
H A Dgrep.c236 regflags |= REG_ICASE; in main()
/illumos-gate/usr/src/lib/print/libpapi-common/common/
H A Dattribute.c662 REG_EXTENDED|REG_ICASE); in _process_value()
/illumos-gate/usr/src/cmd/man/
H A Dman.c785 if (regcomp(&preg, pkwd, REG_BASIC | REG_ICASE | REG_NOSUB) != 0) in search_whatis()
/illumos-gate/usr/src/cmd/find/
H A Dfind.c649 ((np->action == IREGEX) ? REG_ICASE : 0) | in compile()
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dmap.c6864 pflags = REG_ICASE | REG_EXTENDED | REG_NOSUB;
6883 pflags &= ~REG_ICASE;
/illumos-gate/usr/src/contrib/ast/src/lib/libast/
H A DRELEASE1114 01-09-04 regex/regnexec.c: fix REG_ICASE for multi-char collating elements