/external/libcxx/test/std/localization/locales/locale.convenience/classification/ |
D | islower.pass.cpp | 20 assert(!std::islower(' ', l)); in main() 21 assert(!std::islower('<', l)); in main() 22 assert(!std::islower('\x8', l)); in main() 23 assert(!std::islower('A', l)); in main() 24 assert( std::islower('a', l)); in main() 25 assert( std::islower('z', l)); in main() 26 assert(!std::islower('3', l)); in main() 27 assert(!std::islower('.', l)); in main() 28 assert( std::islower('f', l)); in main() 29 assert(!std::islower('9', l)); in main() [all …]
|
/external/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 42 #ifdef islower 43 #error islower defined 83 ASSERT_SAME_TYPE(int, decltype(std::islower(0))); in main() 98 assert( std::islower('a')); in main()
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 40 #ifdef islower 41 #error islower defined 80 static_assert((std::is_same<decltype(islower(0)), int>::value), ""); in main() 95 assert(islower('a')); in main()
|
/external/python/cpython2/Tools/pybench/ |
D | Strings.py | 478 s.islower() 486 s.islower() 494 s.islower() 502 s.islower() 510 s.islower() 518 s.islower() 526 s.islower() 534 s.islower() 542 s.islower() 550 s.islower()
|
D | Unicode.py | 400 s.islower() 410 s.islower() 420 s.islower() 430 s.islower() 440 s.islower()
|
/external/libcxx/include/ |
D | cctype | 26 int islower(int c); 71 #ifdef islower 72 #undef islower 110 using ::islower;
|
D | ctype.h | 49 #undef islower
|
/external/clang/test/Sema/ |
D | libbuiltins-ctype-powerpc64.c | 9 int islower(int); 32 (void)islower(x); in test()
|
D | libbuiltins-ctype-x86_64.c | 9 int islower(int); 32 (void)islower(x); in test()
|
/external/u-boot/include/linux/ |
D | ctype.h | 27 #define islower(c) ((__ismask(c)&(_L)) != 0) macro 52 if (islower(c)) in __toupper()
|
/external/python/cpython2/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
|
/external/pcre/dist2/src/ |
D | pcre2_maketables.c | 99 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i); 119 if (islower(i)) p[cbit_lower + i/8] |= 1 << (i&7);
|
/external/python/cpython3/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
|
/external/python/cpython2/Include/ |
D | bytes_methods.h | 47 #undef islower 48 #define islower(c) undefined_islower(c) macro
|
/external/u-boot/lib/ |
D | strto.c | 41 while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp-'0' : (islower(*cp) in simple_strtoul() 139 : (islower(*cp) ? toupper(*cp) : *cp) - 'A' + 10) < base) { in simple_strtoull()
|
/external/libtextclassifier/utils/i18n/ |
D | locale.cc | 40 if (!std::islower(language[i])) { in CheckLanguage() 59 if (!std::islower(script[i])) { in CheckScript()
|
/external/openssh/openbsd-compat/ |
D | charclass.h | 22 { "lower", islower },
|
D | inet_aton.c | 119 (c + 10 - (islower(c) ? 'a' : 'A')); in inet_aton()
|
/external/e2fsprogs/e2fsck/ |
D | message.c | 258 if (*first && islower(*str)) { in expand_at_expression() 421 if (*first && islower(m[0])) in expand_percent_expression() 494 if (*first && islower(m[0])) in expand_percent_expression()
|
/external/python/cpython2/Lib/test/ |
D | test_bool.py | 214 self.assertIs("xyz".islower(), True) 215 self.assertIs("XYZ".islower(), False) 236 self.assertIs(unicode("xyz", 'ascii').islower(), True) 237 self.assertIs(unicode("XYZ", 'ascii').islower(), False)
|
/external/python/cpython3/Tools/scripts/ |
D | smelly.py | 45 if symtype.islower() and symtype not in "uvw":
|
D | make_ctype.py | 79 if c.islower():
|
/external/python/cpython3/Include/ |
D | pyport.h | 584 #undef islower 585 #define islower(c) iswlower(btowc(c)) macro
|
/external/curl/lib/ |
D | curl_ctype.h | 47 #define ISLOWER(x) (islower((int) ((unsigned char)x)))
|
/external/libpcap/ |
D | etherent.c | 50 else if (islower(c)) in xdtoi()
|