HomeSort by: relevance | last modified time | path
    Searched defs:othercase (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
regcomp.c 218 static char othercase(int);
842 ci = othercase(i);
1026 - othercase - return the case counterpart of an alphabetic
1029 othercase(int ch) function
1054 assert(othercase(ch) != ch); /* p_bracket() would recurse */
1074 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)
  /src/external/bsd/nvi/dist/regex/
regcomp.c 101 static RCHAR_T othercase __P((int ch));
756 ci = othercase(i);
946 - othercase - return the case counterpart of an alphabetic
947 == static char othercase(int ch);
950 othercase(int ch) function
974 assert(othercase(ch) != ch); /* p_bracket() would recurse */
997 if ((p->g->cflags&REG_ICASE) && ISALPHA2(ch) && othercase(ch) != ch)
  /src/lib/libc/regex/
regcomp.c 158 static wint_t othercase(wint_t ch);
1465 - othercase - return the case counterpart of an alphabetic
1466 == static wint_t othercase(wint_t ch);
1469 othercase(wint_t ch) function
1496 assert(othercase(ch) != ch); /* p_bracket() would recurse */
1527 if ((p->g->cflags&REG_ICASE) && iswalpha(ch) && othercase(ch) != ch)

Completed in 26 milliseconds