Home
last modified time | relevance | path

Searched refs:islower (Results 1 - 25 of 70) sorted by relevance

123

/third_party/musl/libc-test/src/functionalext/supplement/ctype/
H A 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()
/third_party/musl/porting/uniproton/kernel/src/ctype/
H A Dislower.c2 #undef islower macro
4 int islower(int c) in islower() function
11 return islower(c); in __islower_l()
H A Dtoupper.c5 if (islower(c)) return c & 0x5f; in toupper()
/third_party/musl/porting/liteos_a/kernel/src/ctype/
H A Dislower.c2 #undef islower macro
4 int islower(int c) in islower() function
11 return islower(c); in __islower_l()
H A Dtoupper.c5 if (islower(c)) return c & 0x5f; in toupper()
/third_party/musl/porting/liteos_m/kernel/src/ctype/
H A Dislower.c2 #undef islower macro
4 int islower(int c) in islower() function
11 return islower(c); in __islower_l()
H A Dtoupper.c5 if (islower(c)) return c & 0x5f; in toupper()
/third_party/musl/src/ctype/
H A Dislower.c2 #undef islower macro
8 int islower(int c) in islower() function
23 return islower(c); in __islower_l()
H A Dtoupper.c9 if (islower(c)) return c & 0x5f; in toupper()
/third_party/musl/porting/linux/user/include/
H A 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/
H A Dctype.h16 int islower(int);
33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
/third_party/musl/porting/uniproton/kernel/include/
H A 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/
H A Dctype.h16 int islower(int);
33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
/third_party/musl/include/
H A Dctype.h16 int islower(int);
33 #define islower(a) (0 ? islower(a) : ((unsigned)(a)-'a') < 26) macro
/third_party/pcre2/pcre2/src/
H A 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/
H A 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/
H A 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/
H A 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/
H A Dctype.c12 {int(*p)(int) = islower;} in f()
/third_party/python/Tools/scripts/
H A Dmake_ctype.py79 if c.islower():
H A Dsmelly.py25 if symtype.islower() and symtype not in "uvw":
/third_party/node/tools/inspector_protocol/jinja2/
H A Dtests.py69 return text_type(value).islower()
/third_party/openssl/test/
H A Dctype_internal_test.c44 && TEST_int_eq(islower(n) != 0, ossl_islower(n) != 0) in test_ctype_chars()
/third_party/python/Include/
H A Dpyport.h484 #undef islower macro
485 #define islower(c) iswlower(btowc(c)) macro
/third_party/node/deps/v8/third_party/jinja2/
H A Dtests.py104 return text_type(value).islower()

Completed in 9 milliseconds

123