Searched refs:REG_ICASE (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-9.3-release/contrib/llvm/lib/Support/
H A Dregex_impl.h58 #define REG_ICASE 0002 macro
H A DRegex.cpp27 flags |= REG_ICASE;
H A Dregcomp.c700 if (p->g->cflags&REG_ICASE) {
938 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)
1134 * big if REG_ICASE is being used. REG_ICASE, by the way, is why the hash
/freebsd-9.3-release/include/
H A Dregex.h66 #define REG_ICASE 0002 macro
/freebsd-9.3-release/contrib/binutils/include/
H A Dxregex2.h266 #define REG_ICASE (REG_EXTENDED << 1)
271 #define REG_NEWLINE (REG_ICASE << 1)
264 #define REG_ICASE macro
/freebsd-9.3-release/contrib/cvs/lib/
H A Dregex.h233 #define REG_ICASE (REG_EXTENDED << 1)
238 #define REG_NEWLINE (REG_ICASE << 1)
231 #define REG_ICASE macro
H A Dregex.c6186 If REG_ICASE is set, then we considers upper- and lowercase
6218 if (cflags & REG_ICASE)
/freebsd-9.3-release/contrib/gcclibs/include/
H A Dxregex2.h266 #define REG_ICASE (REG_EXTENDED << 1)
271 #define REG_NEWLINE (REG_ICASE << 1)
264 #define REG_ICASE macro
/freebsd-9.3-release/contrib/gdb/include/
H A Dxregex2.h263 #define REG_ICASE (REG_EXTENDED << 1)
268 #define REG_NEWLINE (REG_ICASE << 1)
261 #define REG_ICASE macro
/freebsd-9.3-release/gnu/lib/libregex/posix/
H A Dregex.h283 #define REG_ICASE (REG_EXTENDED << 1)
288 #define REG_NEWLINE (REG_ICASE << 1)
281 #define REG_ICASE macro
/freebsd-9.3-release/lib/libc/regex/grot/
H A Dmain.c332 o |= REG_ICASE;
/freebsd-9.3-release/usr.bin/grep/
H A Dgrep.c513 cflags |= REG_ICASE;
/freebsd-9.3-release/contrib/gdb/gdb/cli/
H A Dcli-cmds.c977 if (regcomp(&pattern,searchstr,REG_ICASE) == 0)
985 regerror(regcomp(&pattern,searchstr,REG_ICASE),NULL,errorbuffer,512);
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_subst.c910 reflags |= REG_ICASE;
916 reflags |= REG_ICASE;
/freebsd-9.3-release/bin/pkill/
H A Dpkill.c245 cflags |= REG_ICASE;
/freebsd-9.3-release/contrib/amd/amd/
H A Dmapc.c424 retval = regcomp(&re, pattern, REG_ICASE);
/freebsd-9.3-release/lib/libc/regex/
H A Dregcomp.c178 = #define REG_ICASE 0002
701 if (p->g->cflags&REG_ICASE)
955 if ((p->g->cflags&REG_ICASE) && iswalpha(ch) && othercase(ch) != ch)
/freebsd-9.3-release/sbin/devd/
H A Ddevd.cc269 regcomp(&_regex, _re.c_str(), REG_EXTENDED | REG_NOSUB | REG_ICASE);
/freebsd-9.3-release/usr.bin/grep/regex/
H A Dtre-fastmatch.c465 fg->icase = (cflags & REG_ICASE); \
470 /* Cannot handle REG_ICASE with MB string */ \
473 DPRINT(("Cannot use fast matcher for MBS with REG_ICASE\n")); \
/freebsd-9.3-release/usr.bin/sed/
H A Dcompile.c453 flags |= REG_ICASE;
/freebsd-9.3-release/usr.bin/find/
H A Dfunction.c1409 regexp_flags | (option->flags & F_IGNCASE ? REG_ICASE : 0))) != 0) {
/freebsd-9.3-release/contrib/file/src/
H A Dsoftmagic.c1984 ((m->str_flags & STRING_IGNORE_CASE) ? REG_ICASE : 0));
/freebsd-9.3-release/contrib/sendmail/src/
H A Dmap.c6862 pflags = REG_ICASE | REG_EXTENDED | REG_NOSUB;
6881 pflags &= ~REG_ICASE;
/freebsd-9.3-release/gnu/lib/libregex/
H A Dregcomp.c467 If REG_ICASE is set, then we considers upper- and lowercase
496 syntax |= (cflags & REG_ICASE) ? RE_ICASE : 0;
3572 /* In case of REG_ICASE "upper" and "lower" match the both of
/freebsd-9.3-release/gnu/usr.bin/grep/
H A Ddfa.c1060 if (regcomp (&re, expr, case_fold ? REG_ICASE : 0) == REG_NOERROR) {

Completed in 233 milliseconds

12