Home
last modified time | relevance | path

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

12345

/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/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/libcxx/test/std/strings/c.strings/
Dcctype.pass.cpp40 #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/
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;
Dctype.h58 #undef islower
/external/syslinux/gpxe/src/include/
Dctype.h12 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro
24 if (islower(c)) in toupper()
/external/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/syslinux/com32/include/
Dctype.h75 __ctype_inline int islower(int __c) in islower() function
111 return islower(__c) ? _toupper(__c) : __c; in toupper()
/external/pcre/dist2/src/
Dpcre2_maketables.c99 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/
Dbytes_methods.h47 #undef islower
48 #define islower(c) undefined_islower(c) macro
Dpyport.h730 #undef islower
731 #define islower(c) iswlower(btowc(c)) macro
/external/python/cpython2/Lib/curses/
Dascii.py55 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/
Dsafe-ctype.h136 #undef islower
137 #define islower(c) do_not_use_islower_with_safe_ctype macro
/external/syslinux/core/lwip/src/core/ipv4/
Dip_addr.c118 #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/
Dcharclass.h22 { "lower", islower },
Dinet_aton.c119 (c + 10 - (islower(c) ? 'a' : 'A')); in inet_aton()
/external/libmojo/third_party/jinja2/
Dtests.py67 return text_type(value).islower()
/external/python/cpython2/Lib/test/
Dtest_bool.py214 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/
Detherent.c64 else if (islower(c))
/external/e2fsprogs/e2fsck/
Dmessage.c255 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/
DStringExtras.h131 if (islower(result[i])) in UppercaseString()
/external/libcxx/include/support/xlocale/
D__posix_l_fallback.h48 return ::islower(c); in islower_l()

12345