Home
last modified time | relevance | path

Searched refs:islower (Results 1 – 25 of 208) sorted by relevance

123456789

/external/llvm-project/libcxx/test/std/localization/locales/locale.convenience/classification/
Dislower.pass.cpp21 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/localization/locales/locale.convenience/classification/
Dislower.pass.cpp20 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/
Dcctype.pass.cpp42 #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/
Dcctype.pass.cpp41 #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/
Dctype_h.pass.cpp41 #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/
Dctype_h.pass.cpp40 #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/
DStrings.py478 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()
DUnicode.py400 s.islower()
410 s.islower()
420 s.islower()
430 s.islower()
440 s.islower()
/external/libcxx/include/
Dcctype26 int islower(int c);
71 #ifdef islower
72 #undef islower
110 using ::islower;
/external/llvm-project/libcxx/include/
Dcctype25 int islower(int c);
70 #ifdef islower
71 #undef islower
109 using ::islower;
/external/llvm-project/libc/src/ctype/
DCMakeLists.txt64 islower
66 islower.cpp
68 islower.h
Dislower.cpp18 int LLVM_LIBC_ENTRYPOINT(islower)(int c) { return internal::islower(c); } in LLVM_LIBC_ENTRYPOINT() argument
/external/llvm-project/clang/test/Analysis/
Dstd-c-library-functions.c160 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/llvm-project/libc/test/src/ctype/
Dislower_test.cpp17 EXPECT_NE(__llvm_libc::islower(ch), 0); in TEST()
19 EXPECT_EQ(__llvm_libc::islower(ch), 0); in TEST()
DCMakeLists.txt64 islower
70 libc.src.ctype.islower
/external/pcre/dist2/src/
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;
/external/clang/test/Sema/
Dlibbuiltins-ctype-x86_64.c9 int islower(int);
32 (void)islower(x); in test()
Dlibbuiltins-ctype-powerpc64.c9 int islower(int);
32 (void)islower(x); in test()
/external/llvm-project/clang/test/Sema/
Dlibbuiltins-ctype-powerpc64.c9 int islower(int);
32 (void)islower(x); in test()
Dlibbuiltins-ctype-x86_64.c9 int islower(int);
32 (void)islower(x); in test()
/external/python/cpython2/Lib/curses/
Dascii.py55 def isalpha(c): return isupper(c) or islower(c)
61 def islower(c): return 97 <= _ctoi(c) <= 122 function
/external/python/cpython3/Lib/curses/
Dascii.py55 def isalpha(c): return isupper(c) or islower(c)
61 def islower(c): return 97 <= _ctoi(c) <= 122 function
/external/python/cpython2/Include/
Dbytes_methods.h47 #undef islower
48 #define islower(c) undefined_islower(c) macro
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/
Dctype.c27 i += !!islower(c); in check_ctype()
52 i += !!islower(EOF); in check_ctype()
/external/llvm-project/llvm/lib/Support/
DStringExtras.cpp124 if (capitalizeFirst && std::islower(input.front())) in convertToCamelFromSnakeCase()
131 if (input[pos] == '_' && pos != (e - 1) && std::islower(input[pos + 1])) in convertToCamelFromSnakeCase()

123456789