Home
last modified time | relevance | path

Searched refs:cased (Results 1 – 25 of 44) sorted by relevance

12

/external/python/cpython2/Objects/
Dbytes_methods.c136 int cased; in _Py_bytes_islower() local
147 cased = 0; in _Py_bytes_islower()
151 else if (!cased && Py_ISLOWER(*p)) in _Py_bytes_islower()
152 cased = 1; in _Py_bytes_islower()
154 return PyBool_FromLong(cased); in _Py_bytes_islower()
170 int cased; in _Py_bytes_isupper() local
181 cased = 0; in _Py_bytes_isupper()
185 else if (!cased && Py_ISUPPER(*p)) in _Py_bytes_isupper()
186 cased = 1; in _Py_bytes_isupper()
188 return PyBool_FromLong(cased); in _Py_bytes_isupper()
[all …]
Dstringobject.c3445 int cased; in string_islower() local
3456 cased = 0; in string_islower()
3460 else if (!cased && islower(*p)) in string_islower()
3461 cased = 1; in string_islower()
3463 return PyBool_FromLong(cased); in string_islower()
3479 int cased; in string_isupper() local
3490 cased = 0; in string_isupper()
3494 else if (!cased && isupper(*p)) in string_isupper()
3495 cased = 1; in string_isupper()
3497 return PyBool_FromLong(cased); in string_isupper()
[all …]
Dunicodeobject.c6720 int cased; in unicode_islower() local
6731 cased = 0; in unicode_islower()
6737 else if (!cased && Py_UNICODE_ISLOWER(ch)) in unicode_islower()
6738 cased = 1; in unicode_islower()
6740 return PyBool_FromLong(cased); in unicode_islower()
6754 int cased; in unicode_isupper() local
6765 cased = 0; in unicode_isupper()
6771 else if (!cased && Py_UNICODE_ISUPPER(ch)) in unicode_isupper()
6772 cased = 1; in unicode_isupper()
6774 return PyBool_FromLong(cased); in unicode_isupper()
[all …]
/external/icu/icu4c/source/data/translit/
Dlt_Title.txt8 # Make any string of letters after a cased letter be lower
10 [:cased:] [:case-ignorable:]* {I } [^[:ccc=Not_Reordered:][:ccc=Above:]]* [:ccc=Above:] → i \u0307;
11 [:cased:] [:case-ignorable:]* {J } [^[:ccc=Not_Reordered:][:ccc=Above:]]* [:ccc=Above:] → j \u0307;
12 [:cased:] [:case-ignorable:]* {I \u0328 } [^[:ccc=Not_Reordered:][:ccc=Above:]]* [:ccc=Above:] → i …
13 [:cased:] [:case-ignorable:]* {I \u0300 → i \u0307 \u0300;
14 [:cased:] [:case-ignorable:]* {I \u0301 → i \u0307 \u0301;
15 [:cased:] [:case-ignorable:]* {I \u0303 → i \u0307 \u0303;
16 [:cased:] [:case-ignorable:]* { (.) → &Any-Lower($1) ;
Del_Title.txt11 # Make any string of letters after a cased letter be lower, with rules for sigma
12 [:cased:] [:case-ignorable:]* { Σ } [:case-ignorable:]* [:cased:] → σ;
13 [:cased:] [:case-ignorable:]* { Σ → ς;
14 [:cased:] [:case-ignorable:]* { (.) → &Any-Lower($1) ;
Daz_Title.txt9 # Make any string of letters after a cased letter be lower, with rules for i
10 [:cased:] [:case-ignorable:]* { İ → i;
11 [:cased:] [:case-ignorable:]* { I → ı;
12 [:cased:] [:case-ignorable:]* { (.) → &Any-Lower($1) ;
Dtr_Title.txt9 # Make any string of letters after a cased letter be lower, with rules for i
10 [:cased:] [:case-ignorable:]* { İ → i;
11 [:cased:] [:case-ignorable:]* { I → ı;
12 [:cased:] [:case-ignorable:]* { (.) → &Any-Lower($1) ;
Del_Lower.txt10 # C is preceded by a sequence consisting of a cased letter and then zero or more case-ignorable cha…
11 …ollowed by a sequence consisting of zero or more case-ignorable characters and then a cased letter.
14 Σ } [:case-ignorable:]* [:cased:] → σ;
15 [:cased:] [:case-ignorable:]* { Σ → ς;
DLatn_Kana.txt15 :: Lower (); # whenever transliterating from cased to uncased script, include this
/external/python/cpython3/Objects/
Dbytes_methods.c189 int cased; in _Py_bytes_islower() local
200 cased = 0; in _Py_bytes_islower()
204 else if (!cased && Py_ISLOWER(*p)) in _Py_bytes_islower()
205 cased = 1; in _Py_bytes_islower()
207 return PyBool_FromLong(cased); in _Py_bytes_islower()
223 int cased; in _Py_bytes_isupper() local
234 cased = 0; in _Py_bytes_isupper()
238 else if (!cased && Py_ISUPPER(*p)) in _Py_bytes_isupper()
239 cased = 1; in _Py_bytes_isupper()
241 return PyBool_FromLong(cased); in _Py_bytes_isupper()
[all …]
Dunicodeobject.c11737 int cased; in unicode_islower_impl() local
11754 cased = 0; in unicode_islower_impl()
11760 else if (!cased && Py_UNICODE_ISLOWER(ch)) in unicode_islower_impl()
11761 cased = 1; in unicode_islower_impl()
11763 return PyBool_FromLong(cased); in unicode_islower_impl()
11782 int cased; in unicode_isupper_impl() local
11799 cased = 0; in unicode_isupper_impl()
11805 else if (!cased && Py_UNICODE_ISUPPER(ch)) in unicode_isupper_impl()
11806 cased = 1; in unicode_isupper_impl()
11808 return PyBool_FromLong(cased); in unicode_isupper_impl()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DTestUScript.java213 UnicodeSet cased = new UnicodeSet("[[:Lu:]-[:sc=Common:]-[:sc=Geor:]]"); in TestScriptMetadata() local
233 assertEquals(sn + " cased vs. set", cased.contains(firstChar), UScript.isCased(sc)); in TestScriptMetadata()
239 cased.removeAll(scriptSet); in TestScriptMetadata()
244 assertEquals("no remaining cased characters", "[]", cased.toPattern(true)); in TestScriptMetadata()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
DTestUScript.java216 UnicodeSet cased = new UnicodeSet("[[:Lu:]-[:sc=Common:]-[:sc=Geor:]]"); in TestScriptMetadata() local
236 assertEquals(sn + " cased vs. set", cased.contains(firstChar), UScript.isCased(sc)); in TestScriptMetadata()
242 cased.removeAll(scriptSet); in TestScriptMetadata()
247 assertEquals("no remaining cased characters", "[]", cased.toPattern(true)); in TestScriptMetadata()
/external/mdnsresponder/android/caseMapping/
DREADME2 case-insensitive. This folder provides alternately-cased versions of header
/external/icu/icu4c/source/test/intltest/
Ducdtest.cpp458 UnicodeSet cased("[[:Lu:]-[:sc=Common:]-[:sc=Geor:]]", errorCode); in TestScriptMetadata() local
481 … assertEquals("cased vs. set", (UBool)cased.contains(firstChar), (UBool)uscript_isCased(sc)); in TestScriptMetadata()
487 cased.removeAll(scriptSet); in TestScriptMetadata()
495 UnicodeString("[]"), cased.toPattern(pattern)); in TestScriptMetadata()
/external/clang/test/Analysis/
Dlive-variables.m16 // This happens due to CFG being special cased for short circuit operators.
/external/skqp/src/sksl/
Dsksl_pipeline.inc2 // special-cased within the compiler - append takes various arguments depending on what kind of
/external/skia/src/sksl/
Dsksl_pipeline.inc2 // special-cased within the compiler - append takes various arguments depending on what kind of
/external/icu/icu4c/source/data/brkitr/rules/
Dtitle.txt23 # (at a cased character), advance through the word and through
/external/swiftshader/third_party/llvm-7.0/llvm/test/Analysis/BasicAA/
Dintrinsics-arm.ll7 ; specifically special cased exactly these two intrinsics in
/external/python/cpython2/Doc/library/
Dsimplehttpserver.rst46 and so should contain only lower-cased keys.
Dstdtypes.rst1040 Return true if all cased characters [4]_ in the string are lowercase and there is at
1041 least one cased character, false otherwise.
1058 and lowercase characters only cased ones. Return false otherwise.
1065 Return true if all cased characters [4]_ in the string are uppercase and there is at
1066 least one cased character, false otherwise.
1092 Return a copy of the string with all the cased characters [4]_ converted to
1383 Return a copy of the string with all the cased characters [4]_ converted to
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/g3doc/
Dperiodic_multires_derivation.md3 This document contains derivations for the special-cased matrix-to-powers and
/external/python/cpython3/Doc/library/
Dhttp.server.rst340 and so should contain only lower-cased keys.
Dnntplib.rst354 message headers (the key is then the lower-cased header name) or metadata

12