Searched refs:ignorecase (Results 1 - 13 of 13) sorted by relevance

/ast/src/lib/libast/misc/
H A Dfindlib.h62 int ignorecase; member in struct:__anon278
H A Dfastfind.c368 fp->decode.ignorecase = 1;
625 if (i = regcomp(&fp->decode.re, pattern, REG_SHELL|REG_AUGMENTED|(fp->decode.ignorecase?REG_ICASE:0)))
642 if (fp->decode.ignorecase)
689 int ignorecase; local
701 ignorecase = fp->decode.ignorecase ? STR_ICASE : 0;
827 if (!(n = strcasecmp(*fp->dirs, fp->decode.path)) && (ignorecase || !strcmp(*fp->dirs, fp->decode.path)))
879 if (*s == *fp->decode.end || ignorecase && tolower(*s) == *fp->decode.end)
881 if (ignorecase)
888 if (!fp->decode.match || strgrpmatch(fp->decode.path, fp->decode.pattern, NiL, 0, STR_MAXIMAL|STR_LEFT|STR_RIGHT|ignorecase))
[all...]
/ast/src/cmd/nmake/
H A DScanrules.mk180 local F L Q S T ignorecase
182 if L == "--ignorecase"
183 ignorecase = 1 macro
201 if ignorecase
H A Dexpand.c786 int ignorecase; local
798 ignorecase = 0;
841 if (f->dir->ignorecase)
844 if (!ignorecase)
851 ignorecase = 1;
936 if (ignorecase)
H A Dbind.c67 return ((File_t*)hashgetbucket(s)->value)->dir->ignorecase ? strcasecmp(s, t) : strcmp(s, t);
227 d->ignorecase = d->directory;
270 message((-12, "%s: %s %s%s", d->name, name, timestr(date), d->ignorecase ? " [ignorecase]" : null));
H A Dmake.h448 unsigned char ignorecase; /* pox on dirs that ignore case */ member in struct:Dir_s
/ast/src/cmd/tw/
H A Dtw.h41 #define ignorecase fts_number macro
H A Dtw.c572 ftw->ignorecase = (state.icase || (!ftw->level || !ftw->parent->ignorecase) && strchr(astconf("PATH_ATTRIBUTES", ftw->name, NiL), 'c')) ? STR_ICASE : 0;
575 ftw->ignorecase = ftw->level ? ftw->parent->ignorecase : (state.icase || strchr(astconf("PATH_ATTRIBUTES", ftw->name, NiL), 'c')) ? STR_ICASE : 0;
H A Dfind.c39 * -ignorecase
107 #define ignorecase fts_number macro
324 "ignorecase", ICASE, Unary, 0, 0, 0,
1384 ent->ignorecase = (state->icase || (!ent->fts_level || !ent->fts_parent->ignorecase) && strchr(astconf("PATH_ATTRIBUTES", ent->fts_name, NiL), 'c')) ? STR_ICASE : 0;
1387 ent->ignorecase = ent->fts_level ? ent->fts_parent->ignorecase : (state->icase || strchr(astconf("PATH_ATTRIBUTES", ent->fts_name, NiL), 'c')) ? STR_ICASE : 0;
1551 val = strgrpmatch(ent->fts_name, np->first.cp, NiL, 0, STR_MAXIMAL|STR_LEFT|STR_RIGHT|(np->action == INAME ? STR_ICASE : ent->ignorecase)) != 0;
1556 val = S_ISLNK(ent->fts_statp->st_mode) && pathgetlink(PATH(ent), state->txt, sizeof(state->txt)) > 0 && strgrpmatch(state->txt, np->first.cp, NiL, 0, STR_MAXIMAL|STR_LEFT|STR_RIGHT|ent->ignorecase);
1562 val = strgrpmatch(ent->fts_path, np->first.cp, NiL, 0, STR_MAXIMAL|STR_LEFT|STR_RIGHT|ent->ignorecase) !
[all...]
H A Dexpr.c675 return strgrpmatch(str, pat, NiL, 0, STR_MAXIMAL|STR_LEFT|STR_RIGHT|((Ftw_t*)env)->ignorecase);
/ast/src/lib/libdss/
H A Dcxmap.c37 * dt string ignorecase comparison
41 ignorecase(Dt_t* dt, void* a, void* b, Dtdisc_t* disc) function
91 stricase2numdisc.comparf = ignorecase;
/ast/src/lib/libcmd/
H A Djoin.c75 "[i:ignorecase?Ignore case in field comparisons.]"
158 int ignorecase; member in struct:Join_s
652 if (!n && !(cmp = n1 < n2 ? -1 : (n1 > n2)) || n && !(cmp = (int)*cp1 - (int)*cp2) && !(cmp = jp->ignorecase ? strncasecmp((char*)cp1, (char*)cp2, n) : memcmp(cp1, cp2, n)))
657 if (!n && !(cmp = n1 < n2 ? -1 : (n1 > n2)) || n && !(cmp = (int)*cp1 - (int)*cp2) && !(cmp = jp->ignorecase ? strncasecmp((char*)cp1, (char*)cp2, n) : memcmp(cp1, cp2, n)) && !(cmp = n1 - n2))
910 jp->ignorecase = !opt_info.num;
/ast/src/cmd/mailx/
H A Dvars.c729 ignorecase(Dt_t* dt, void* a, void* b, Dtdisc_t* disc) function
789 dict->disc.comparf = ignorecase;

Completed in 54 milliseconds