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

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dnewgetopt.pl39 $ignorecase = 1; # ignore case when matching options
61 $Getopt::Long::ignorecase = $newgetopt::ignorecase
62 if defined $newgetopt::ignorecase;
63 $Getopt::Long::ignorecase = $newgetopt::ignorecase
64 if defined $newgetopt::ignorecase;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Getopt/Long/t/
H A Dgol-compat.t15 $newgetopt::ignorecase = 0;
16 $newgetopt::ignorecase = 0;
/osnet-11/usr/src/lib/libast/common/misc/
H A Dfindlib.h62 int ignorecase; member in struct:__anon1154
H A Dfastfind.c389 fp->decode.ignorecase = 1;
646 if (i = regcomp(&fp->decode.re, pattern, REG_SHELL|REG_AUGMENTED|(fp->decode.ignorecase?REG_ICASE:0)))
663 if (fp->decode.ignorecase)
710 int ignorecase; local
722 ignorecase = fp->decode.ignorecase ? STR_ICASE : 0;
848 if (!(n = strcasecmp(*fp->dirs, fp->decode.path)) && (ignorecase || !strcmp(*fp->dirs, fp->decode.path)))
900 if (*s == *fp->decode.end || ignorecase && tolower(*s) == *fp->decode.end)
902 if (ignorecase)
909 if (!fp->decode.match || strgrpmatch(fp->decode.path, fp->decode.pattern, NiL, 0, STR_MAXIMAL|STR_LEFT|STR_RIGHT|ignorecase))
[all...]
/osnet-11/usr/src/lib/libcmd/common/
H A Djoin.c75 "[i:ignorecase?Ignore case in field comparisons.]"
158 int ignorecase; member in struct:Join_s
662 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)))
667 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))
920 jp->ignorecase = !opt_info.num;
H A Dfind.c39 * -ignorecase
107 #define ignorecase fts_number macro
325 "ignorecase", ICASE, Unary, 0, 0, 0,
1383 ent->ignorecase = (state->icase || (!ent->fts_level || !ent->fts_parent->ignorecase) && strchr(astconf("PATH_ATTRIBUTES", ent->fts_name, NiL), 'c')) ? STR_ICASE : 0;
1386 ent->ignorecase = ent->fts_level ? ent->fts_parent->ignorecase : (state->icase || strchr(astconf("PATH_ATTRIBUTES", ent->fts_name, NiL), 'c')) ? STR_ICASE : 0;
1550 val = strgrpmatch(ent->fts_name, np->first.cp, NiL, 0, STR_MAXIMAL|STR_LEFT|STR_RIGHT|(np->action == INAME ? STR_ICASE : ent->ignorecase)) != 0;
1555 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);
1561 val = strgrpmatch(ent->fts_path, np->first.cp, NiL, 0, STR_MAXIMAL|STR_LEFT|STR_RIGHT|ent->ignorecase) !
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Getopt/
H A DLong.pm63 use vars qw($autoabbrev $getopt_compat $ignorecase $bundling $order
105 $ignorecase = 1; # ignore case when matching options
278 "ignorecase=$ignorecase,",
759 if $ignorecase > (($bundling && length($_) == 1) ? 1 : 0);
824 $tryopt = $ignorecase ? lc($opt) : $opt;
837 $tryopt = lc ($tryopt) if $ignorecase > 1;
849 $opt = lc ($opt) if $ignorecase;
890 $tryopt = lc ($tryopt) if $ignorecase;
897 elsif ( $ignorecase ) {
[all...]

Completed in 37 milliseconds