Home
last modified time | relevance | path

Searched refs:wct (Results 1 – 6 of 6) sorted by relevance

/ndk/tests/device/test-gnustl-full/unit/
Dctype_facets_test.cpp174 ctype<wchar_t> const& wct = use_facet<ctype<wchar_t> >(loc); in _ctype_facet_w() local
177 CPPUNIT_CHECK( wct.is(ctype_base::digit, L'0') ); in _ctype_facet_w()
178 CPPUNIT_CHECK( wct.is(ctype_base::upper, L'A') ); in _ctype_facet_w()
179 CPPUNIT_CHECK( wct.is(ctype_base::lower, L'a') ); in _ctype_facet_w()
180 CPPUNIT_CHECK( wct.is(ctype_base::alpha, L'A') ); in _ctype_facet_w()
181 CPPUNIT_CHECK( wct.is(ctype_base::space, L' ') ); in _ctype_facet_w()
182 CPPUNIT_CHECK( !wct.is(ctype_base::space, L'2') ); in _ctype_facet_w()
183 CPPUNIT_CHECK( wct.is(ctype_base::punct, L'.') ); in _ctype_facet_w()
184 CPPUNIT_CHECK( wct.is(ctype_base::xdigit, L'a') ); in _ctype_facet_w()
191 wct.is(values, values + (sizeof(values) / sizeof(wchar_t)), res); in _ctype_facet_w()
[all …]
/ndk/tests/device/test-stlport/unit/
Dctype_facets_test.cpp174 ctype<wchar_t> const& wct = use_facet<ctype<wchar_t> >(loc); in _ctype_facet_w() local
177 CPPUNIT_CHECK( wct.is(ctype_base::digit, L'0') ); in _ctype_facet_w()
178 CPPUNIT_CHECK( wct.is(ctype_base::upper, L'A') ); in _ctype_facet_w()
179 CPPUNIT_CHECK( wct.is(ctype_base::lower, L'a') ); in _ctype_facet_w()
180 CPPUNIT_CHECK( wct.is(ctype_base::alpha, L'A') ); in _ctype_facet_w()
181 CPPUNIT_CHECK( wct.is(ctype_base::space, L' ') ); in _ctype_facet_w()
182 CPPUNIT_CHECK( !wct.is(ctype_base::space, L'2') ); in _ctype_facet_w()
183 CPPUNIT_CHECK( wct.is(ctype_base::punct, L'.') ); in _ctype_facet_w()
184 CPPUNIT_CHECK( wct.is(ctype_base::xdigit, L'a') ); in _ctype_facet_w()
191 wct.is(values, values + (sizeof(values) / sizeof(wchar_t)), res); in _ctype_facet_w()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dwctype_h.pass.cpp95 wctype_t wct = 0; in main() local
108 static_assert((std::is_same<decltype(iswctype(w, wct)), int>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
Dcwctype.pass.cpp95 std::wctype_t wct = 0; in main() local
108 static_assert((std::is_same<decltype(std::iswctype(w, wct)), int>::value), ""); in main()
/ndk/sources/cxx-stl/stlport/src/
Dmessages.cpp40 wctype const& wct = use_facet<wctype>(L); in insert()
41 if (typeid(wct) != typeid(wctype)) { in insert()
Dlocale_impl.cpp166 locale::facet* wct = 0; in insert_ctype_facets() local
197 wct = new ctype_byname<wchar_t>(__lwct); in insert_ctype_facets()
206 _STLP_UNWIND(_STLP_PRIV __release_codecvt(__lwcvt); delete wct); in insert_ctype_facets()
215 this->insert(wct, ctype<wchar_t>::id); in insert_ctype_facets()