Home
last modified time | relevance | path

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

12345

/external/libcxx/test/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 …]
DAndroid.mk51 test_name := localization/locales/locale.convenience/classification/islower
52 test_src := islower.pass.cpp
/external/libcxx/include/
Dcctype26 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/
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/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(islower('a')); in main()
/external/chromium_org/components/autofill/core/browser/
Dpassword_generator.cc59 if (islower(*iter)) { in ForceFixPassword()
66 if (islower(*iter)) { in ForceFixPassword()
Dpassword_generator_unittest.cc38 else if (islower(password[i])) in TEST()
/external/pcre/dist/
Dpcre_maketables.c98 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/
Dctype.h55 # undef islower
73 __inline int (islower)(int c) { return _isctype(c, _LOWER); }
Dlocale70 #undef islower
99 inline bool islower (_CharT c, const locale& loc)
/external/valgrind/main/coregrind/m_demangle/
Dsafe-ctype.h136 #undef islower
137 #define islower(c) do_not_use_islower_with_safe_ctype macro
/external/stlport/stlport/stl/
D_cctype.h37 using _STLP_VENDOR_CSTD::islower;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
Dutil.h202 #undef islower
230 #define islower(x) (sane_istest(x,GIT_ALPHA) && (x & 0x20)) macro
/external/libpcap/Win32/Src/
Dinet_net.c78 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A')); in inet_network()
/external/chromium_org/third_party/jinja2/
Dtests.py67 return text_type(value).islower()
/external/stlport/test/eh/
Dlocale.cpp47 if(islower('�', cout.getloc())) puts("Lower"); in main()
/external/libpcap/
Detherent.c69 else if (islower(c))
/external/arduino/hardware/arduino/cores/arduino/
DWCharacter.h99 return (islower (c) == 0 ? false : true); in isLowerCase()
/external/stlport/stlport/using/
Dlocale18 using _STLP_NEW_IO_NAMESPACE::islower;
/external/deqp/framework/delibs/decpp/
DdeStringUtil.cpp133 return std::islower(c, std::locale::classic()); in isLower()
/external/e2fsprogs/e2fsck/
Dmessage.c253 if (*first && islower(*str)) { in expand_at_expression()
430 if (*first && islower(m[0])) in expand_percent_expression()
/external/chromium_org/tools/crx_id/
Dcrx_id.py84 filepath[0].islower() and
/external/libcxx/include/support/android/
Dlocale_bionic.h48 return islower(c); in islower_l()
/external/chromium_org/tools/json_schema_compiler/
Dmodel.py486 if name[i - 1].islower():
489 elif i + 1 < len(name) and name[i + 1].islower():
/external/ppp/pppd/plugins/pppoatm/
Dtext2atm.c117 value = isdigit(*text) ? *text-'0' : (islower(*text) ? in do_try_nsap()

12345