Home
last modified time | relevance | path

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

/external/stlport/test/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 …]
/external/tcpdump/
Dprint-smb.c400 u_int wct, bcc; in print_negprot() local
404 wct = words[0]; in print_negprot()
408 if (wct == 1) in print_negprot()
410 else if (wct == 17) in print_negprot()
412 else if (wct == 13) in print_negprot()
417 smb_fdata(words + 1, f1, SMBMIN(words + 1 + wct * 2, maxbuf), in print_negprot()
420 print_data(words + 1, SMBMIN(wct * 2, PTR_DIFF(maxbuf, words + 1))); in print_negprot()
441 u_int wct, bcc; in print_sesssetup() local
445 wct = words[0]; in print_sesssetup()
447 if (wct == 10) in print_sesssetup()
[all …]
/external/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()