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

/PHP_TRUNK/ext/ereg/regex/
H A Dregcomp.c621 ci = othercase(i);
818 - othercase - return the case counterpart of an alphabetic
819 == static char othercase(int ch);
822 othercase(ch) function
849 assert(othercase(ch) != ch); /* p_bracket() would recurse */
872 if ((p->g->cflags&REG_ICASE) && isalpha(ch) && othercase(ch) != ch)
H A Dregcomp.ih19 static unsigned char othercase(int ch);
/PHP_TRUNK/ext/pcre/pcrelib/
H A Dpcre_compile.c2900 * Get othercase range *
2912 ocptr where to put start of othercase range
2913 odptr where to put end of othercase range
2925 pcre_uint32 c, othercase, next; local
2939 if ((othercase = UCD_OTHERCASE(c)) != c) break;
2944 *ocptr = othercase;
2945 next = othercase + 1;
2953 *odptr = next - 1; /* End of othercase range */
3183 pcre_uint32 othercase; local
3184 if (next < 128) othercase
3204 pcre_uint32 othercase; local
[all...]
H A Dpcre_exec.c3315 pcre_uint32 othercase; local
3317 (othercase = UCD_OTHERCASE(fc)) != fc)
3318 oclength = PRIV(ord2utf)(othercase, occhars);

Completed in 20 milliseconds