Lines Matching refs:Py_CHARMASK
42 while (i < len && isspace(Py_CHARMASK(s[i]))) { in split_whitespace()
46 while (i < len && !isspace(Py_CHARMASK(s[i]))) { in split_whitespace()
60 while (i < len && isspace(Py_CHARMASK(s[i]))) { in split_whitespace()
392 while (i < len && isspace(Py_CHARMASK(s[i]))) { in do_strip()
401 } while (j >= i && isspace(Py_CHARMASK(s[j]))); in do_strip()
476 int c = Py_CHARMASK(*s++); in strop_lower()
515 int c = Py_CHARMASK(*s++); in strop_upper()
555 int c = Py_CHARMASK(*s++); in strop_capitalize()
564 int c = Py_CHARMASK(*s++); in strop_capitalize()
734 int c = Py_CHARMASK(*s++); in strop_swapcase()
783 while (*s && isspace(Py_CHARMASK(*s))) in strop_atoi()
790 if (end == s || !isalnum(Py_CHARMASK(end[-1]))) in strop_atoi()
792 while (*end && isspace(Py_CHARMASK(*end))) in strop_atoi()
839 while (*s && isspace(Py_CHARMASK(*s))) in strop_atol()
850 while (*end && isspace(Py_CHARMASK(*end))) in strop_atol()
878 while (*s && isspace(Py_CHARMASK(*s))) in strop_atof()
890 while (*end && isspace(Py_CHARMASK(*end))) in strop_atof()
979 c = Py_CHARMASK(*input++); in strop_translate()
980 if (Py_CHARMASK((*output++ = table[c])) != c) in strop_translate()
991 trans_table[i] = Py_CHARMASK(table[i]); in strop_translate()
994 trans_table[(int) Py_CHARMASK(del_table[i])] = -1; in strop_translate()
997 c = Py_CHARMASK(*input++); in strop_translate()
999 if (Py_CHARMASK(*output++ = (char)trans_table[c]) == c) in strop_translate()