Home
last modified time | relevance | path

Searched refs:sre_lower_unicode (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Modules/
Dsre_lib.h266 while (ptr < end && (SRE_CODE) sre_lower_unicode(*ptr) == chr) in SRE()
304 while (ptr < end && (SRE_CODE) sre_lower_unicode(*ptr) != chr) in SRE()
711 sre_lower_unicode(*ctx->ptr) != *ctx->pattern) in SRE()
741 sre_lower_unicode(*ctx->ptr) == *ctx->pattern) in SRE()
771 (SRE_CODE)sre_lower_unicode(*ctx->ptr))) in SRE()
1210 sre_lower_unicode(*ctx->ptr) != sre_lower_unicode(*p)) in SRE()
D_sre.c134 static unsigned int sre_lower_unicode(unsigned int ch) in sre_lower_unicode() function
314 return ch != sre_lower_unicode(ch) || ch != sre_upper_unicode(ch); in _sre_unicode_iscased_impl()
344 return sre_lower_unicode(character); in _sre_unicode_tolower_impl()
/external/python/cpython2/Modules/
D_sre.c181 static unsigned int sre_lower_unicode(unsigned int ch) in sre_lower_unicode() function
1676 return Py_BuildValue("i", sre_lower_unicode(character)); in sre_getlower()
1809 state->lower = sre_lower_unicode; in state_init()