Searched refs:islower (Results 1 – 25 of 80) sorted by relevance
1234
/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/include/ |
D | cctype | 26 int islower(int c); 99 #ifdef islower 100 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_islower(int __c) {return islower(__c);} 101 #undef islower 102 inline _LIBCPP_INLINE_VISIBILITY int islower(int __c) {return __libcpp_islower(__c);} 103 #else // islower 104 using ::islower; 105 #endif // islower
|
/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(islower('a')); in main()
|
/external/pcre/dist/ |
D | pcre_maketables.c | 98 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i); in pcre_maketables() 118 if (islower(i)) p[cbit_lower + i/8] |= 1 << (i&7); in pcre_maketables()
|
/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/libpcap/Win32/Src/ |
D | inet_net.c | 78 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A')); in inet_network()
|
/external/opencv3/3rdparty/jinja2/ |
D | tests.py | 67 return text_type(value).islower()
|
/external/libpcap/ |
D | etherent.c | 64 else if (islower(c))
|
D | nametoaddr.c | 348 else if (islower(c))
|
D | scanner.l | 426 else if (islower(c))
|
/external/e2fsprogs/e2fsck/ |
D | message.c | 253 if (*first && islower(*str)) { in expand_at_expression() 430 if (*first && islower(m[0])) in expand_percent_expression()
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/ |
D | crx_id.py | 74 filepath[0].islower() and
|
/external/libcxx/include/support/xlocale/ |
D | xlocale.h | 50 return islower(c); in islower_l()
|
/external/deqp/framework/delibs/decpp/ |
D | deStringUtil.cpp | 150 return std::islower(c, std::locale::classic()); in isLower()
|
/external/ppp/pppd/plugins/pppoatm/ |
D | text2atm.c | 117 value = isdigit(*text) ? *text-'0' : (islower(*text) ? in do_try_nsap()
|
/external/c-ares/ |
D | setup_once.h | 253 #define ISLOWER(x) (islower((int) ((unsigned char)x)))
|
/external/skia/src/animator/ |
D | SkParseSVGPath.cpp | 135 if (islower(op)) { in parseSVG()
|
/external/curl/lib/ |
D | curl_setup_once.h | 290 #define ISLOWER(x) (islower((int) ((unsigned char)x)))
|
/external/libedit/src/ |
D | chartype.h | 146 #define Islower(x) islower((unsigned char)x)
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/serializer/ |
D | htmlserializer.py | 35 if v not in encode_entity_map or k.islower():
|
/external/iproute2/tc/ |
D | m_ipt.c | 255 if (islower(new_name[0])) { in get_target_name()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/ |
D | connection.py | 58 if not (n + 'a').islower():
|
/external/libxml2/os400/dlfcn/ |
D | dlfcn.c | 841 if (!islower(*name)) in dl_DB2_name()
|
/external/libchrome/base/process/ |
D | process_metrics_linux.cc | 796 if (!islower(candidate[i])) in IsValidDiskName()
|
1234