/external/libcxx/test/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 …]
|
D | Android.mk | 51 test_name := localization/locales/locale.convenience/classification/islower 52 test_src := islower.pass.cpp
|
/external/libcxx/include/ |
D | cctype | 26 int islower(int c); 98 #ifdef islower 99 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_islower(int __c) {return islower(__c);} 100 #undef islower 101 inline _LIBCPP_INLINE_VISIBILITY int islower(int __c) {return __libcpp_islower(__c);} 102 #else // islower 103 using ::islower; 104 #endif // islower
|
/external/libcxx/test/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/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/chromium_org/components/autofill/core/browser/ |
D | password_generator.cc | 59 if (islower(*iter)) { in ForceFixPassword() 66 if (islower(*iter)) { in ForceFixPassword()
|
D | password_generator_unittest.cc | 38 else if (islower(password[i])) in TEST()
|
/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/stlport/stlport/ |
D | ctype.h | 55 # undef islower 73 __inline int (islower)(int c) { return _isctype(c, _LOWER); }
|
D | locale | 70 #undef islower 99 inline bool islower (_CharT c, const locale& loc)
|
/external/valgrind/main/coregrind/m_demangle/ |
D | safe-ctype.h | 136 #undef islower 137 #define islower(c) do_not_use_islower_with_safe_ctype macro
|
/external/stlport/stlport/stl/ |
D | _cctype.h | 37 using _STLP_VENDOR_CSTD::islower;
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
D | util.h | 202 #undef islower 230 #define islower(x) (sane_istest(x,GIT_ALPHA) && (x & 0x20)) macro
|
/external/libpcap/Win32/Src/ |
D | inet_net.c | 78 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A')); in inet_network()
|
/external/chromium_org/third_party/jinja2/ |
D | tests.py | 67 return text_type(value).islower()
|
/external/stlport/test/eh/ |
D | locale.cpp | 47 if(islower('�', cout.getloc())) puts("Lower"); in main()
|
/external/libpcap/ |
D | etherent.c | 69 else if (islower(c))
|
/external/arduino/hardware/arduino/cores/arduino/ |
D | WCharacter.h | 99 return (islower (c) == 0 ? false : true); in isLowerCase()
|
/external/stlport/stlport/using/ |
D | locale | 18 using _STLP_NEW_IO_NAMESPACE::islower;
|
/external/deqp/framework/delibs/decpp/ |
D | deStringUtil.cpp | 133 return std::islower(c, std::locale::classic()); in isLower()
|
/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_org/tools/crx_id/ |
D | crx_id.py | 84 filepath[0].islower() and
|
/external/libcxx/include/support/android/ |
D | locale_bionic.h | 48 return islower(c); in islower_l()
|
/external/chromium_org/tools/json_schema_compiler/ |
D | model.py | 486 if name[i - 1].islower(): 489 elif i + 1 < len(name) and name[i + 1].islower():
|
/external/ppp/pppd/plugins/pppoatm/ |
D | text2atm.c | 117 value = isdigit(*text) ? *text-'0' : (islower(*text) ? in do_try_nsap()
|