Searched refs:cased (Results 1 - 10 of 10) sorted by relevance

/external/python/cpython2/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.c6029 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; local
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 characte
6759 int cased; local
6795 int cased, previous_is_cased; local
[all...]
/external/valgrind/none/tests/ppc32/
H A Dlsw.stdout.exp1 ------ lswi n == 8 (fe special cased) ------
46 ------ stswi n == 8 (fe special cased) ------
/external/valgrind/none/tests/ppc64/
H A Dlsw.stdout.exp1 ------ lswi n == 8 (fe special cased) ------
46 ------ stswi n == 8 (fe special cased) ------
/external/python/cpython3/Objects/
H A Dbytes_methods.c128 Return True if all cased characters in B are lowercase and there is\n\
129 at least one cased character in B, False otherwise.");
137 int cased; local
148 cased = 0;
152 else if (!cased && Py_ISLOWER(*p))
153 cased = 1;
155 return PyBool_FromLong(cased);
162 Return True if all cased characters in B are uppercase and there is\n\
163 at least one cased character in B, False otherwise.");
171 int cased; local
207 int cased, previous_is_cased; local
[all...]
H A Dunicodeobject.c9687 \p{cased}\p{case-ignorable}*U+03A3!(\p{case-ignorable}*\p{cased})
10755 characters, all remaining cased characters have lower case.");
11737 Return True if all cased characters in S are lowercase and there is\n\
11738 at least one cased character in S, False otherwise.");
11746 int cased; local
11763 cased = 0;
11769 else if (!cased && Py_UNICODE_ISLOWER(ch))
11770 cased = 1;
11772 return PyBool_FromLong(cased);
11787 int cased; local
11830 int cased, previous_is_cased; local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DTestUScript.java216 UnicodeSet cased = new UnicodeSet("[[:Lu:]-[:sc=Common:]-[:sc=Geor:]]");
227 assertFalse(sn + " not encoded, not cased", UScript.isCased(sc));
236 assertEquals(sn + " cased vs. set", cased.contains(firstChar), UScript.isCased(sc));
242 cased.removeAll(scriptSet);
247 assertEquals("no remaining cased characters", "[]", cased.toPattern(true));
/external/icu/icu4c/source/test/intltest/
H A Ducdtest.cpp447 UnicodeSet cased("[[:Lu:]-[:sc=Common:]-[:sc=Geor:]]", errorCode);
461 assertFalse("not encoded, not cased", uscript_isCased(sc));
470 assertEquals("cased vs. set", (UBool)cased.contains(firstChar), (UBool)uscript_isCased(sc));
476 cased.removeAll(scriptSet);
483 assertEquals("no remaining cased characters",
484 UnicodeString("[]"), cased.toPattern(pattern));
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DTestUScript.java213 UnicodeSet cased = new UnicodeSet("[[:Lu:]-[:sc=Common:]-[:sc=Geor:]]");
224 assertFalse(sn + " not encoded, not cased", UScript.isCased(sc));
233 assertEquals(sn + " cased vs. set", cased.contains(firstChar), UScript.isCased(sc));
239 cased.removeAll(scriptSet);
244 assertEquals("no remaining cased characters", "[]", cased.toPattern(true));

Completed in 400 milliseconds