Searched refs:nocase (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libshell/common/edit/
H A Dcompletion.c65 static int charcmp(int a, int b, int nocase) argument
67 if(nocase)
82 static char *overlaid(register char *str,register const char *newstr,int nocase) argument
85 while((c= *(unsigned char *)str) && ((d= *(unsigned char*)newstr++),charcmp(c,d,nocase)))
299 int nocase=0,narg,cmd_completion=0; local
363 nocase = (strchr(saveout,'c')!=0);
413 out = overlaid(begin,path_basename(*com++),nocase);
415 out = overlaid(begin,*com++,nocase);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/File/Glob/
H A Dbsd_glob.c843 int nocase; local
883 nocase = ((pglob->gl_flags & GLOB_NOCASE) != 0);
905 if (!match(pathend, pattern, restpattern, nocase)) {
932 nocase = ((pglob->gl_flags & GLOB_NOCASE) != 0);
956 if (!match(pathend, pattern, restpattern, nocase)) {
1058 match(register Char *name, register Char *pat, register Char *patend, int nocase) argument
1070 if (match(name, pat, patend, nocase))
1087 if (nocase) {
1095 } else if (nocase ? (tolower(c) == tolower(k)) : (c == k))
1102 if (nocase
[all...]
H A DGlob.pm65 if ($_[$i] =~ /^:(case|nocase|globally)$/) {
68 $DEFAULT_FLAGS |= GLOB_NOCASE() if $1 eq 'nocase';
214 use File::Glob qw(:globally :nocase);

Completed in 31 milliseconds