Home
last modified time | relevance | path

Searched refs:islower (Results 1 – 25 of 95) sorted by relevance

1234

/third_party/musl/libc-test/src/functionalext/supplement/ctype/
Dislower.c29 int ret = islower('a'); in islower_0100()
40 int ret = islower('A'); in islower_0200()
51 int ret = islower('1'); in islower_0300()
62 int ret = islower('['); in islower_0400()
75 int ret = islower((char)i); in islower_0500()
Dtest_src_functionalext_supplement_ctype.gni50 "islower",
/third_party/musl/porting/uniproton/kernel/src/ctype/
Dislower.c2 #undef islower
4 int islower(int c) in islower() function
11 return islower(c); in __islower_l()
Dtoupper.c5 if (islower(c)) return c & 0x5f; in toupper()
/third_party/musl/porting/liteos_m/kernel/src/ctype/
Dislower.c2 #undef islower
4 int islower(int c) in islower() function
11 return islower(c); in __islower_l()
Dtoupper.c5 if (islower(c)) return c & 0x5f; in toupper()
/third_party/musl/src/ctype/
Dislower.c2 #undef islower
4 int islower(int c) in islower() function
11 return islower(c); in __islower_l()
Dtoupper.c5 if (islower(c)) return c & 0x5f; in toupper()
/third_party/musl/porting/liteos_a/kernel/src/ctype/
Dislower.c2 #undef islower
4 int islower(int c) in islower() function
11 return islower(c); in __islower_l()
Dtoupper.c5 if (islower(c)) return c & 0x5f; in toupper()
/third_party/musl/ndk_musl_include/
Dctype.h16 int islower(int);
33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
/third_party/musl/porting/uniproton/kernel/include/
Dctype.h16 int islower(int);
33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dctype.h16 int islower(int);
33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
/third_party/musl/porting/linux/user/include/
Dctype.h16 int islower(int);
33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
/third_party/musl/porting/liteos_a/kernel/include/
Dctype.h16 int islower(int);
33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
/third_party/musl/include/
Dctype.h16 int islower(int);
33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
/third_party/pcre2/pcre2/src/
Dpcre2_maketables.c101 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i);
121 if (islower(i)) p[cbit_lower + i/8] |= 1u << (i&7);
143 if (islower(i)) x += ctype_lcletter;
/third_party/bounds_checking_function/src/
Dsecinput.h141 #ifndef islower
142 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro
145 #define isalpha(c) (isupper(c) || (islower(c)))
/third_party/python/Lib/curses/
Dascii.py55 def isalpha(c): return isupper(c) or islower(c)
61 def islower(c): return 97 <= _ctoi(c) <= 122 function
/third_party/node/deps/v8/src/torque/
Dutils.cc90 DCHECK(islower(c)); in HexCharToInt()
223 return islower(s[start]) && !ContainsUnderscore(s.substr(start)); in IsLowerCamelCase()
271 previousWasLowerOrDigit = islower(current) || isdigit(current); in CapifyStringWithUnderscores()
301 previousWasLower = (islower(current)); in SnakeifyString()
/third_party/musl/libc-test/src/api/
Dctype.c12 {int(*p)(int) = islower;} in f()
/third_party/python/Tools/scripts/
Dmake_ctype.py79 if c.islower():
/third_party/openssl/test/
Dctype_internal_test.c44 && TEST_int_eq(islower(n) != 0, ossl_islower(n) != 0) in test_ctype_chars()
/third_party/python/Include/
Dpyport.h629 #undef islower
630 #define islower(c) iswlower(btowc(c)) macro
/third_party/node/tools/inspector_protocol/jinja2/
Dtests.py69 return text_type(value).islower()

1234