/third_party/musl/libc-test/src/functionalext/supplement/ctype/ |
D | islower.c | 29 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()
|
D | test_src_functionalext_supplement_ctype.gni | 50 "islower",
|
/third_party/musl/porting/uniproton/kernel/src/ctype/ |
D | islower.c | 2 #undef islower 4 int islower(int c) in islower() function 11 return islower(c); in __islower_l()
|
D | toupper.c | 5 if (islower(c)) return c & 0x5f; in toupper()
|
/third_party/musl/porting/liteos_m/kernel/src/ctype/ |
D | islower.c | 2 #undef islower 4 int islower(int c) in islower() function 11 return islower(c); in __islower_l()
|
D | toupper.c | 5 if (islower(c)) return c & 0x5f; in toupper()
|
/third_party/musl/src/ctype/ |
D | islower.c | 2 #undef islower 4 int islower(int c) in islower() function 11 return islower(c); in __islower_l()
|
D | toupper.c | 5 if (islower(c)) return c & 0x5f; in toupper()
|
/third_party/musl/porting/liteos_a/kernel/src/ctype/ |
D | islower.c | 2 #undef islower 4 int islower(int c) in islower() function 11 return islower(c); in __islower_l()
|
D | toupper.c | 5 if (islower(c)) return c & 0x5f; in toupper()
|
/third_party/musl/ndk_musl_include/ |
D | ctype.h | 16 int islower(int); 33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | ctype.h | 16 int islower(int); 33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | ctype.h | 16 int islower(int); 33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
|
/third_party/musl/porting/linux/user/include/ |
D | ctype.h | 16 int islower(int); 33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | ctype.h | 16 int islower(int); 33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
|
/third_party/musl/include/ |
D | ctype.h | 16 int islower(int); 33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
|
/third_party/pcre2/pcre2/src/ |
D | pcre2_maketables.c | 101 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/ |
D | secinput.h | 141 #ifndef islower 142 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro 145 #define isalpha(c) (isupper(c) || (islower(c)))
|
/third_party/python/Lib/curses/ |
D | ascii.py | 55 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/ |
D | utils.cc | 90 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/ |
D | ctype.c | 12 {int(*p)(int) = islower;} in f()
|
/third_party/python/Tools/scripts/ |
D | make_ctype.py | 79 if c.islower():
|
/third_party/openssl/test/ |
D | ctype_internal_test.c | 44 && TEST_int_eq(islower(n) != 0, ossl_islower(n) != 0) in test_ctype_chars()
|
/third_party/python/Include/ |
D | pyport.h | 629 #undef islower 630 #define islower(c) iswlower(btowc(c)) macro
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | tests.py | 69 return text_type(value).islower()
|