/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/ |
D | tolower_1.pass.cpp | 32 assert(f.tolower(' ') == ' '); in main() 33 assert(f.tolower('A') == 'a'); in main() 34 assert(f.tolower('\x07') == '\x07'); in main() 35 assert(f.tolower('.') == '.'); in main() 36 assert(f.tolower('a') == 'a'); in main() 37 assert(f.tolower('1') == '1'); in main() 38 assert(f.tolower('\xDA') == '\xFA'); in main() 39 assert(f.tolower('\xFA') == '\xFA'); in main() 48 assert(f.tolower(' ') == ' '); in main() 49 assert(f.tolower('A') == 'a'); in main() [all …]
|
D | tolower_many.pass.cpp | 34 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 51 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 68 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 85 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.character/ |
D | tolower.pass.cpp | 20 assert(std::tolower(' ', l) == ' '); in main() 21 assert(std::tolower('<', l) == '<'); in main() 22 assert(std::tolower('\x8', l) == '\x8'); in main() 23 assert(std::tolower('A', l) == 'a'); in main() 24 assert(std::tolower('a', l) == 'a'); in main() 25 assert(std::tolower('z', l) == 'z'); in main() 26 assert(std::tolower('3', l) == '3'); in main() 27 assert(std::tolower('.', l) == '.'); in main() 28 assert(std::tolower('f', l) == 'f'); in main() 29 assert(std::tolower('9', l) == '9'); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
D | tolower_1.pass.cpp | 26 assert(f.tolower(' ') == ' '); in main() 27 assert(f.tolower('A') == 'a'); in main() 28 assert(f.tolower('\x07') == '\x07'); in main() 29 assert(f.tolower('.') == '.'); in main() 30 assert(f.tolower('a') == 'a'); in main() 31 assert(f.tolower('1') == '1'); in main()
|
D | tolower_many.pass.cpp | 28 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/ |
D | tolower_1.pass.cpp | 26 assert(f.tolower(L' ') == L' '); in main() 27 assert(f.tolower(L'A') == L'a'); in main() 28 assert(f.tolower(L'\x07') == L'\x07'); in main() 29 assert(f.tolower(L'.') == L'.'); in main() 30 assert(f.tolower(L'a') == L'a'); in main() 31 assert(f.tolower(L'1') == L'1'); in main()
|
D | tolower_many.pass.cpp | 28 assert(f.tolower(&in[0], in.data() + in.size()) == in.data() + in.size()); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 64 #ifdef tolower 65 #error tolower defined 86 static_assert((std::is_same<decltype(tolower(0)), int>::value), ""); in main() 101 assert(tolower('A') == 'a'); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/ |
D | cctype.pass.cpp | 64 #ifdef tolower 65 #error tolower defined 86 static_assert((std::is_same<decltype(std::tolower(0)), int>::value), ""); in main() 101 assert(tolower('A') == 'a'); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cctype | 32 int tolower(int c); 146 #ifdef tolower 147 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_tolower(int __c) {return tolower(__c);} 148 #undef tolower 149 inline _LIBCPP_INLINE_VISIBILITY int tolower(int __c) {return __libcpp_tolower(__c);} 150 #else // tolower 151 using ::tolower; 152 #endif // tolower
|
/ndk/sources/android/support/src/musl-locale/ |
D | tolower_l.c | 5 return tolower(c); in tolower_l()
|
/ndk/tests/device/test-stlport/unit/ |
D | ctype_facets_test.cpp | 130 CPPUNIT_ASSERT( ct.tolower('A') == 'a' ); in _ctype_facet() 131 CPPUNIT_ASSERT( ct.tolower('a') == 'a' ); in _ctype_facet() 132 CPPUNIT_ASSERT( ct.tolower('1') == '1' ); in _ctype_facet() 139 ct.tolower(range, range + sizeof(range)); in _ctype_facet() 274 CPPUNIT_CHECK( wct.tolower(L'A') == L'a' ); in _ctype_facet_w() 275 CPPUNIT_CHECK( wct.tolower(L'a') == L'a' ); in _ctype_facet_w() 276 CPPUNIT_CHECK( wct.tolower(L'1') == L'1' ); in _ctype_facet_w() 283 wct.tolower(range, range + sizeof(range) / sizeof(wchar_t)); in _ctype_facet_w()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | ctype_facets_test.cpp | 130 CPPUNIT_ASSERT( ct.tolower('A') == 'a' ); in _ctype_facet() 131 CPPUNIT_ASSERT( ct.tolower('a') == 'a' ); in _ctype_facet() 132 CPPUNIT_ASSERT( ct.tolower('1') == '1' ); in _ctype_facet() 139 ct.tolower(range, range + sizeof(range)); in _ctype_facet() 274 CPPUNIT_CHECK( wct.tolower(L'A') == L'a' ); in _ctype_facet_w() 275 CPPUNIT_CHECK( wct.tolower(L'a') == L'a' ); in _ctype_facet_w() 276 CPPUNIT_CHECK( wct.tolower(L'1') == L'1' ); in _ctype_facet_w() 283 wct.tolower(range, range + sizeof(range) / sizeof(wchar_t)); in _ctype_facet_w()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ctype.h | 96 char (tolower)(char __c) const { return do_tolower(__c); } 97 const char* (tolower)(char* __low, const char* __high) const { 202 wchar_t (tolower)(wchar_t __c) const { return do_tolower(__c); } in wchar_t() argument 203 const wchar_t* (tolower)(wchar_t* __low, const wchar_t* __high) const
|
D | _cctype.h | 43 using _STLP_VENDOR_CSTD::tolower;
|
/ndk/sources/cxx-stl/stlport/stlport/ |
D | locale | 78 #undef tolower 131 inline _CharT tolower(_CharT c, const locale& loc) 132 { return (use_facet<ctype<_CharT> >(loc)).tolower(c); }
|
D | ctype.h | 63 # undef tolower
|
/ndk/build/awk/ |
D | extract-package-name.awk | 93 _xml_attrib = tolower(_xml_attrib);
|
D | extract-minsdkversion.awk | 89 _xml_attrib = tolower(_xml_attrib);
|
D | extract-debuggable.awk | 92 _xml_attrib = tolower(_xml_attrib);
|
D | xml.awk | 77 _xml_attrib = tolower(_xml_attrib);
|
D | gen-windows-host-path.awk | 78 lo = tolower(letter)
|
D | extract-launchable.awk | 151 _xml_attrib = tolower(_xml_attrib);
|
/ndk/sources/host-tools/make-3.81/ |
D | hash.h | 156 (RESULT) += ((isupper (*_key_) ? tolower (*_key_) : *_key_) << (_key_[1] & 0xf)); \ 167 (RESULT) += ((isupper (*_key_) ? tolower (*_key_) : *_key_) << (_key_[1] & 0x7)); \
|
/ndk/sources/cxx-stl/stlport/stlport/using/ |
D | locale | 26 using _STLP_NEW_IO_NAMESPACE::tolower;
|