/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/llvm-project/libcxx/test/std/localization/locales/locale.convenience/classification/ |
D | islower.pass.cpp | 21 assert(!std::islower(' ', l)); in main() 22 assert(!std::islower('<', l)); in main() 23 assert(!std::islower('\x8', l)); in main() 24 assert(!std::islower('A', l)); in main() 25 assert( std::islower('a', l)); in main() 26 assert( std::islower('z', l)); in main() 27 assert(!std::islower('3', l)); in main() 28 assert(!std::islower('.', l)); in main() 29 assert( std::islower('f', l)); in main() 30 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/llvm-project/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 41 #ifdef islower 42 #error islower defined 82 ASSERT_SAME_TYPE(int, decltype(std::islower(0))); in main() 97 assert( std::islower('a')); in main()
|
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 41 #ifdef islower 42 #error islower defined 81 static_assert((std::is_same<decltype(islower(0)), int>::value), ""); in main() 96 assert(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/libcxx/include/ |
D | cctype | 26 int islower(int c); 71 #ifdef islower 72 #undef islower 110 using ::islower;
|
/external/llvm-project/libcxx/include/ |
D | cctype | 25 int islower(int c); 70 #ifdef islower 71 #undef islower 109 using ::islower;
|
/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/llvm-project/libc/src/ctype/ |
D | islower.cpp | 18 int LLVM_LIBC_ENTRYPOINT(islower)(int c) { return internal::islower(c); } in LLVM_LIBC_ENTRYPOINT() argument
|
D | CMakeLists.txt | 64 islower 66 islower.cpp 68 islower.h
|
D | islower.h | 14 int islower(int c);
|
/external/llvm-project/libc/test/src/ctype/ |
D | islower_test.cpp | 17 EXPECT_NE(__llvm_libc::islower(ch), 0); in TEST() 19 EXPECT_EQ(__llvm_libc::islower(ch), 0); in TEST()
|
D | CMakeLists.txt | 64 islower 70 libc.src.ctype.islower
|
/external/llvm-project/clang/test/Analysis/ |
D | std-c-library-functions.c | 160 int islower(int); 162 clang_analyzer_eval(islower('x')); // expected-warning{{TRUE}} in test_islower() 163 clang_analyzer_eval(islower('X')); // expected-warning{{FALSE}} in test_islower() 164 if (islower(x)) in test_islower()
|
/external/pcre/dist2/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;
|
/external/clang/test/Sema/ |
D | libbuiltins-ctype-x86_64.c | 9 int islower(int); 32 (void)islower(x); in test()
|
D | libbuiltins-ctype-powerpc64.c | 9 int islower(int); 32 (void)islower(x); in test()
|
/external/llvm-project/clang/test/Sema/ |
D | libbuiltins-ctype-x86_64.c | 9 int islower(int); 32 (void)islower(x); in test()
|
D | libbuiltins-ctype-powerpc64.c | 9 int islower(int); 32 (void)islower(x); in test()
|
/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/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/llvm-project/compiler-rt/test/sanitizer_common/TestCases/ |
D | ctype.c | 27 i += !!islower(c); in check_ctype() 52 i += !!islower(EOF); in check_ctype()
|
/external/python/cpython2/Include/ |
D | bytes_methods.h | 47 #undef islower 48 #define islower(c) undefined_islower(c) macro
|