HomeSort by relevance Sort by last modified time
    Searched refs:othercase (Results 1 - 3 of 3) sorted by null

  /external/webkit/JavaScriptCore/pcre/
pcre_compile.cpp 470 * Get othercase range *
481 ocptr where to put start of othercase range
482 odptr where to put end of othercase range
489 int c, othercase = 0; local
492 if ((othercase = jsc_pcre_ucp_othercase(c)) >= 0)
499 *ocptr = othercase;
500 int next = othercase + 1;
    [all...]
pcre_exec.cpp 253 int othercase = jsc_pcre_ucp_othercase(c); local
255 if (c != d && othercase != d)
450 int othercase; /* Declare here to avoid errors during jumps */ local
    [all...]
  /bionic/libc/regex/
regcomp.c 81 static char othercase(int);
670 ci = othercase(i);
854 - othercase - return the case counterpart of an alphabetic
857 othercase(int ch) function
882 assert(othercase(ch) != ch); /* p_bracket() would recurse */
902 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)
    [all...]

Completed in 381 milliseconds