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

/external/llvm/lib/Support/
H A Dregcomp.c90 static char othercase(int);
714 ci = othercase(i);
898 - othercase - return the case counterpart of an alphabetic
901 othercase(int ch) function
926 assert(othercase(ch) != ch); /* p_bracket() would recurse */
946 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)
/external/swiftshader/third_party/LLVM/lib/Support/
H A Dregcomp.c82 static char othercase(int);
678 ci = othercase(i);
862 - othercase - return the case counterpart of an alphabetic
865 othercase(int ch) function
890 assert(othercase(ch) != ch); /* p_bracket() would recurse */
910 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A Dregcomp.c90 static char othercase(int);
714 ci = othercase(i);
898 - othercase - return the case counterpart of an alphabetic
901 othercase(int ch) function
926 assert(othercase(ch) != ch); /* p_bracket() would recurse */
946 if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)
/external/pcre/dist2/src/
H A Dpcre2_dfa_match.c2075 unsigned int othercase; local
2077 othercase = fcc[c];
2079 othercase = UCD_OTHERCASE(c);
2080 if (d == othercase) { ADD_NEW(state_offset + dlen + 1, 0); }
H A Dpcre2_compile.c2712 * Get othercase range *
2723 ocptr where to put start of othercase range
2724 odptr where to put end of othercase range
2736 uint32_t c, othercase, next; local
2750 if ((othercase = UCD_OTHERCASE(c)) != c) break;
2759 *ocptr = othercase;
2760 next = othercase + 1;
2768 *odptr = next - 1; /* End of othercase range */
H A Dpcre2_match.c3525 uint32_t othercase; local
3527 (othercase = UCD_OTHERCASE(fc)) != fc)
3528 oclength = PRIV(ord2utf)(othercase, occhars);
H A Dpcre2_jit_compile.c2603 /* Detects if the character has an othercase. */
2626 /* Returns with the othercase. */
2638 /* Detects if the character and its othercase has only 1 bit difference. */
3490 PCRE2_UCHAR othercase[8]; local
3492 PCRE2_UCHAR othercase[2]; local
3494 PCRE2_UCHAR othercase[1]; local
3827 if ((int)PRIV(ord2utf)(char_othercase(common, chr), othercase) != len)
3834 othercase[0] = TABLE_GET(chr, common->fcc, chr);
3840 othercase[0] = 0; /* Stops compiler warning - PH */
3847 oc = othercase;
[all...]

Completed in 651 milliseconds