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

/freebsd-10.0-release/contrib/llvm/lib/Support/
H A Dregcomp.c82 static char othercase(int);
706 ci = othercase(i);
890 - othercase - return the case counterpart of an alphabetic
893 othercase(int ch) function
918 assert(othercase(ch) != ch); /* p_bracket() would recurse */
938 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)
/freebsd-10.0-release/contrib/nvi/regex/
H A Dregcomp.c97 static char othercase __P((int ch));
752 ci = othercase(i);
942 - othercase - return the case counterpart of an alphabetic
943 == static char othercase(int ch);
946 othercase(int ch) function
970 assert(othercase(ch) != ch); /* p_bracket() would recurse */
993 if ((p->g->cflags&REG_ICASE) && isalpha(ch) && othercase(ch) != ch)
/freebsd-10.0-release/lib/libc/regex/
H A Dregcomp.c101 static wint_t othercase(wint_t ch);
903 - othercase - return the case counterpart of an alphabetic
904 == static wint_t othercase(wint_t ch);
907 othercase(wint_t ch) function
933 assert(othercase(ch) != ch); /* p_bracket() would recurse */
956 if ((p->g->cflags&REG_ICASE) && iswalpha(ch) && othercase(ch) != ch)

Completed in 68 milliseconds