Searched defs:ignorecase (Results 1 - 10 of 10) sorted by relevance
/ast/src/cmd/nmake/ |
H A D | Scanrules.mk | 180 local F L Q S T ignorecase 182 if L == "--ignorecase" 183 ignorecase = 1 macro 201 if ignorecase
|
H A D | expand.c | 786 int ignorecase; local 798 ignorecase = 0; 841 if (f->dir->ignorecase) 844 if (!ignorecase) 851 ignorecase = 1; 936 if (ignorecase)
|
H A D | make.h | 448 unsigned char ignorecase; /* pox on dirs that ignore case */ member in struct:Dir_s
|
/ast/src/lib/libast/misc/ |
H A D | fastfind.c | 368 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...] |
H A D | findlib.h | 62 int ignorecase; member in struct:__anon278
|
/ast/src/lib/libdss/ |
H A D | cxmap.c | 37 * dt string ignorecase comparison 41 ignorecase(Dt_t* dt, void* a, void* b, Dtdisc_t* disc) function 91 stricase2numdisc.comparf = ignorecase;
|
/ast/src/cmd/mailx/ |
H A D | vars.c | 729 ignorecase(Dt_t* dt, void* a, void* b, Dtdisc_t* disc) function 789 dict->disc.comparf = ignorecase;
|
/ast/src/lib/libcmd/ |
H A D | join.c | 75 "[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/tw/ |
H A D | tw.h | 41 #define ignorecase fts_number macro
|
H A D | find.c | 39 * -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...] |
Completed in 33 milliseconds