Lines Matching defs:cased
9831 \p{cased}\p{case-ignorable}*U+03A3!(\p{case-ignorable}*\p{cased})
10891 cased characters have lower case.
11904 A string is lowercase if all cased characters in the string are lowercase and
11905 there is at least one cased character in the string.
11915 int cased;
11932 cased = 0;
11938 else if (!cased && Py_UNICODE_ISLOWER(ch))
11939 cased = 1;
11941 return PyBool_FromLong(cased);
11949 A string is uppercase if all cased characters in the string are uppercase and
11950 there is at least one cased character in the string.
11960 int cased;
11977 cased = 0;
11983 else if (!cased && Py_UNICODE_ISUPPER(ch))
11984 cased = 1;
11986 return PyBool_FromLong(cased);
11992 Return True if the string is a title-cased string, False otherwise.
11994 In a title-cased string, upper- and title-case characters may only
11995 follow uncased characters and lowercase characters only cased ones.
12005 int cased, previous_is_cased;
12024 cased = 0;
12033 cased = 1;
12039 cased = 1;
12044 return PyBool_FromLong(cased);