HomeSort by relevance Sort by last modified time
    Searched defs:cased (Results 1 - 13 of 13) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytes_methods.c 127 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...]
stringobject.c 3448 int cased; local
3482 int cased; local
3518 int cased, previous_is_cased; local
    [all...]
unicodeobject.c 6712 int cased; local
6746 int cased; local
6782 int cased, previous_is_cased; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytes_methods.c 127 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...]
stringobject.c 3427 int cased; local
3461 int cased; local
3497 int cased, previous_is_cased; local
    [all...]
unicodeobject.c 6604 int cased; local
6638 int cased; local
6674 int cased, previous_is_cased; local
    [all...]
  /external/python/cpython2/Objects/
bytes_methods.c 127 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...]
stringobject.c 3448 int cased; local
3482 int cased; local
3518 int cased, previous_is_cased; local
    [all...]
unicodeobject.c 6725 int cased; local
6759 int cased; local
6795 int cased, previous_is_cased; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
TestUScript.java 216 UnicodeSet cased = new UnicodeSet("[[:Lu:]-[:sc=Common:]-[:sc=Geor:]]"); local
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/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
TestUScript.java 213 UnicodeSet cased = new UnicodeSet("[[:Lu:]-[:sc=Common:]-[:sc=Geor:]]"); local
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));
  /external/python/cpython3/Objects/
bytes_methods.c 128 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...]
unicodeobject.c 11746 int cased; local
11787 int cased; local
11830 int cased, previous_is_cased; local
    [all...]

Completed in 4249 milliseconds