Home
last modified time | relevance | path

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

1234567

/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/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;
Dctype.h49 #undef islower
/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/u-boot/include/linux/
Dctype.h27 #define islower(c) ((__ismask(c)&(_L)) != 0) macro
52 if (islower(c)) in __toupper()
/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/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/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/u-boot/lib/
Dstrto.c41 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/
Dlocale.cc40 if (!std::islower(language[i])) { in CheckLanguage()
59 if (!std::islower(script[i])) { in CheckScript()
/external/openssh/openbsd-compat/
Dcharclass.h22 { "lower", islower },
Dinet_aton.c119 (c + 10 - (islower(c) ? 'a' : 'A')); in inet_aton()
/external/e2fsprogs/e2fsck/
Dmessage.c258 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/
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/python/cpython3/Tools/scripts/
Dsmelly.py45 if symtype.islower() and symtype not in "uvw":
Dmake_ctype.py79 if c.islower():
/external/python/cpython3/Include/
Dpyport.h584 #undef islower
585 #define islower(c) iswlower(btowc(c)) macro
/external/curl/lib/
Dcurl_ctype.h47 #define ISLOWER(x) (islower((int) ((unsigned char)x)))
/external/libpcap/
Detherent.c50 else if (islower(c)) in xdtoi()

1234567