/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/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/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 40 #ifdef islower 41 #error islower defined 80 static_assert((std::is_same<decltype(std::islower(0)), int>::value), ""); in main() 95 assert(std::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 | 58 #undef islower
|
/external/syslinux/gpxe/src/include/ |
D | ctype.h | 12 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro 24 if (islower(c)) in toupper()
|
/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/syslinux/com32/include/ |
D | ctype.h | 75 __ctype_inline int islower(int __c) in islower() function 111 return islower(__c) ? _toupper(__c) : __c; in toupper()
|
/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/cpython2/Include/ |
D | bytes_methods.h | 47 #undef islower 48 #define islower(c) undefined_islower(c) macro
|
D | pyport.h | 730 #undef islower 731 #define islower(c) iswlower(btowc(c)) macro
|
/external/python/cpython2/Lib/curses/ |
D | ascii.py | 55 def isalpha(c): return isupper(c) or islower(c) 61 def islower(c): return _ctoi(c) >= 97 and _ctoi(c) <= 122 function
|
/external/valgrind/coregrind/m_demangle/ |
D | safe-ctype.h | 136 #undef islower 137 #define islower(c) do_not_use_islower_with_safe_ctype macro
|
/external/syslinux/core/lwip/src/core/ipv4/ |
D | ip_addr.c | 118 #define islower(c) in_range(c, 'a', 'z') macro 184 val = (val << 4) | (int)(c + 10 - (islower(c) ? 'a' : 'A')); in ipaddr_aton()
|
/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/libmojo/third_party/jinja2/ |
D | tests.py | 67 return text_type(value).islower()
|
/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/libpcap/ |
D | etherent.c | 64 else if (islower(c))
|
/external/e2fsprogs/e2fsck/ |
D | message.c | 255 if (*first && islower(*str)) { in expand_at_expression() 431 if (*first && islower(m[0])) in expand_percent_expression()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | StringExtras.h | 131 if (islower(result[i])) in UppercaseString()
|
/external/libcxx/include/support/xlocale/ |
D | __posix_l_fallback.h | 48 return ::islower(c); in islower_l()
|