Home | History | Annotate | Download | only in Objects

Lines Matching defs:cased

6029 characters, all remaining cased characters have lower case.");
6717 Return True if all cased characters in S are lowercase and there is\n\
6718 at least one cased character in S, False otherwise.");
6725 int cased;
6736 cased = 0;
6742 else if (!cased && Py_UNICODE_ISLOWER(ch))
6743 cased = 1;
6745 return PyBool_FromLong(cased);
6751 Return True if all cased characters in S are uppercase and there is\n\
6752 at least one cased character in S, False otherwise.");
6759 int cased;
6770 cased = 0;
6776 else if (!cased && Py_UNICODE_ISUPPER(ch))
6777 cased = 1;
6779 return PyBool_FromLong(cased);
6787 follow uncased characters and lowercase characters only cased ones.\n\
6795 int cased, previous_is_cased;
6807 cased = 0;
6816 cased = 1;
6822 cased = 1;
6827 return PyBool_FromLong(cased);