Searched defs:cased (Results 1 - 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dbytes_methods.c127 Return True if all cased characters in B are lowercase and there is\n\
128 at least one cased character in B, False otherwise.");
136 int cased; local
147 cased = 0;
151 else if (!cased && Py_ISLOWER(*p))
152 cased = 1;
154 return PyBool_FromLong(cased);
161 Return True if all cased characters in B are uppercase and there is\n\
162 at least one cased character in B, False otherwise.");
170 int cased; local
206 int cased, previous_is_cased; local
[all...]
H A Dstringobject.c2044 characters, all remaining cased characters have lowercase.");
3439 Return True if all cased characters in S are lowercase and there is\n\
3440 at least one cased character in S, False otherwise.");
3448 int cased; local
3459 cased = 0;
3463 else if (!cased && islower(*p))
3464 cased = 1;
3466 return PyBool_FromLong(cased);
3473 Return True if all cased characters in S are uppercase and there is\n\
3474 at least one cased characte
3482 int cased; local
3518 int cased, previous_is_cased; local
[all...]
H A Dunicodeobject.c6022 characters, all remaining cased characters have lower case.");
6704 Return True if all cased characters in S are lowercase and there is\n\
6705 at least one cased character in S, False otherwise.");
6712 int cased; local
6723 cased = 0;
6729 else if (!cased && Py_UNICODE_ISLOWER(ch))
6730 cased = 1;
6732 return PyBool_FromLong(cased);
6738 Return True if all cased characters in S are uppercase and there is\n\
6739 at least one cased characte
6746 int cased; local
6782 int cased, previous_is_cased; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dbytes_methods.c127 Return True if all cased characters in B are lowercase and there is\n\
128 at least one cased character in B, False otherwise.");
136 int cased; local
147 cased = 0;
151 else if (!cased && Py_ISLOWER(*p))
152 cased = 1;
154 return PyBool_FromLong(cased);
161 Return True if all cased characters in B are uppercase and there is\n\
162 at least one cased character in B, False otherwise.");
170 int cased; local
206 int cased, previous_is_cased; local
[all...]
H A Dstringobject.c2027 characters, all remaining cased characters have lowercase.");
3418 Return True if all cased characters in S are lowercase and there is\n\
3419 at least one cased character in S, False otherwise.");
3427 int cased; local
3438 cased = 0;
3442 else if (!cased && islower(*p))
3443 cased = 1;
3445 return PyBool_FromLong(cased);
3452 Return True if all cased characters in S are uppercase and there is\n\
3453 at least one cased characte
3461 int cased; local
3497 int cased, previous_is_cased; local
[all...]
H A Dunicodeobject.c5927 characters, all remaining cased characters have lower case.");
6596 Return True if all cased characters in S are lowercase and there is\n\
6597 at least one cased character in S, False otherwise.");
6604 int cased; local
6615 cased = 0;
6621 else if (!cased && Py_UNICODE_ISLOWER(ch))
6622 cased = 1;
6624 return PyBool_FromLong(cased);
6630 Return True if all cased characters in S are uppercase and there is\n\
6631 at least one cased characte
6638 int cased; local
6674 int cased, previous_is_cased; local
[all...]

Completed in 74 milliseconds