Home
last modified time | relevance | path

Searched refs:punct (Results 1 – 25 of 31) sorted by relevance

12

/ndk/sources/cxx-stl/stlport/src/
Dctype.cpp79 ctype_base::mask(punct | print) /* ! */, in classic_table()
80 ctype_base::mask(punct | print) /* " */, in classic_table()
81 ctype_base::mask(punct | print) /* # */, in classic_table()
82 ctype_base::mask(punct | print) /* $ */, in classic_table()
83 ctype_base::mask(punct | print) /* % */, in classic_table()
84 ctype_base::mask(punct | print) /* & */, in classic_table()
85 ctype_base::mask(punct | print) /* ' */, in classic_table()
86 ctype_base::mask(punct | print) /* ( */, in classic_table()
87 ctype_base::mask(punct | print) /* ) */, in classic_table()
88 ctype_base::mask(punct | print) /* * */, in classic_table()
[all …]
Dlocale_impl.cpp247 locale::facet* punct = 0; in insert_numeric_facets() local
261 punct = new numpunct_byname<char>(__lpunct); in insert_numeric_facets()
268 delete punct; in insert_numeric_facets()
276 _STLP_UNWIND(_STLP_PRIV __release_numeric(__lwpunct); delete punct); in insert_numeric_facets()
280 this->insert(punct, numpunct<char>::id); in insert_numeric_facets()
429 locale::facet *punct = 0; in insert_monetary_facets() local
449 punct = new moneypunct_byname<char, false>(__mon); in insert_monetary_facets()
455 delete punct; in insert_monetary_facets()
465 _STLP_UNWIND(_STLP_PRIV __release_monetary(__imon); delete punct); in insert_monetary_facets()
498 _STLP_UNWIND(delete ipunct; delete punct); in insert_monetary_facets()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
Dis_many.pass.cpp45 assert(!(m[0] & F::punct)); in main()
59 assert(!(m[1] & F::punct)); in main()
73 assert(!(m[2] & F::punct)); in main()
87 assert(!(m[3] & F::punct)); in main()
101 assert( (m[4] & F::punct)); in main()
115 assert(!(m[5] & F::punct)); in main()
129 assert(!(m[6] & F::punct)); in main()
154 assert(!(m[0] & F::punct)); in main()
168 assert(!(m[1] & F::punct)); in main()
182 assert(!(m[2] & F::punct)); in main()
[all …]
Dis_1.pass.cpp51 assert(f.is(F::punct, L'.')); in main()
52 assert(!f.is(F::punct, L'a')); in main()
94 assert(f.is(F::punct, L'.')); in main()
95 assert(!f.is(F::punct, L'a')); in main()
Dscan_not.pass.cpp41 assert(f.scan_not(F::punct, in.data(), in.data() + in.size()) - in.data() == 0); in main()
62 assert(f.scan_not(F::punct, in.data(), in.data() + in.size()) - in.data() == 0); in main()
Dscan_is.pass.cpp41 assert(f.scan_is(F::punct, in.data(), in.data() + in.size()) - in.data() == 4); in main()
62 assert(f.scan_is(F::punct, in.data(), in.data() + in.size()) - in.data() == 4); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/
Dctype_base.pass.cpp51 assert(std::ctype_base::punct); in main()
61 & std::ctype_base::punct in main()
64 assert(std::ctype_base::graph == (std::ctype_base::alnum | std::ctype_base::punct)); in main()
73 test(std::ctype_base::punct); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
Dis_many.pass.cpp42 assert(!(m[0] & F::punct)); in main()
56 assert(!(m[1] & F::punct)); in main()
70 assert(!(m[2] & F::punct)); in main()
84 assert( (m[3] & F::punct)); in main()
98 assert(!(m[4] & F::punct)); in main()
112 assert(!(m[5] & F::punct)); in main()
Dis_1.pass.cpp47 assert(f.is(F::punct, '.')); in main()
48 assert(!f.is(F::punct, 'a')); in main()
Dscan_not.pass.cpp38 assert(f.scan_not(F::punct, in.data(), in.data() + in.size()) - in.data() == 0); in main()
Dscan_is.pass.cpp38 assert(f.scan_is(F::punct, in.data(), in.data() + in.size()) - in.data() == 3); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
Dis_many.pass.cpp42 assert(!(m[0] & F::punct)); in main()
56 assert(!(m[1] & F::punct)); in main()
70 assert(!(m[2] & F::punct)); in main()
84 assert( (m[3] & F::punct)); in main()
98 assert(!(m[4] & F::punct)); in main()
112 assert(!(m[5] & F::punct)); in main()
Dis_1.pass.cpp47 assert(f.is(F::punct, L'.')); in main()
48 assert(!f.is(F::punct, L'a')); in main()
Dscan_is.pass.cpp38 assert(f.scan_is(F::punct, in.data(), in.data() + in.size()) - in.data() == 3); in main()
Dscan_not.pass.cpp38 assert(f.scan_not(F::punct, in.data(), in.data() + in.size()) - in.data() == 0); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
Dlookup_classname.pass.cpp98 test("punct", std::ctype_base::punct); in main()
99 test("PUNCT", std::ctype_base::punct); in main()
100 test("punct", std::ctype_base::punct, true); in main()
101 test("Punct", std::ctype_base::punct, true); in main()
186 test(L"punct", std::ctype_base::punct); in main()
187 test(L"PUNCT", std::ctype_base::punct); in main()
188 test(L"punct", std::ctype_base::punct, true); in main()
189 test(L"Punct", std::ctype_base::punct, true); in main()
/ndk/tests/device/test-stlport/unit/
Dctype_facets_test.cpp39 CPPUNIT_ASSERT( ct.is(ctype_base::punct, '.') ); in _ctype_facet()
69 CPPUNIT_ASSERT( (res[4] & ctype_base::punct) != 0 ); in _ctype_facet()
88 res = ct.scan_is(ctype_base::punct, rbeg, rend); in _ctype_facet()
108 res = ct.scan_not(ctype_base::punct, rbeg, rend); in _ctype_facet()
183 CPPUNIT_CHECK( wct.is(ctype_base::punct, L'.') ); in _ctype_facet_w()
213 CPPUNIT_CHECK( (res[4] & ctype_base::punct) != 0 ); in _ctype_facet_w()
232 res = wct.scan_is(ctype_base::punct, rbeg, rend); in _ctype_facet_w()
252 res = wct.scan_not(ctype_base::punct, rbeg, rend); in _ctype_facet_w()
455 CPPUNIT_CHECK(cfacet_byname.is(ctype_base::punct, c) == cfacet.is(ctype_base::punct, c)); in ctype_by_name()
/ndk/tests/device/test-gnustl-full/unit/
Dctype_facets_test.cpp39 CPPUNIT_ASSERT( ct.is(ctype_base::punct, '.') ); in _ctype_facet()
69 CPPUNIT_ASSERT( (res[4] & ctype_base::punct) != 0 ); in _ctype_facet()
88 res = ct.scan_is(ctype_base::punct, rbeg, rend); in _ctype_facet()
108 res = ct.scan_not(ctype_base::punct, rbeg, rend); in _ctype_facet()
183 CPPUNIT_CHECK( wct.is(ctype_base::punct, L'.') ); in _ctype_facet_w()
213 CPPUNIT_CHECK( (res[4] & ctype_base::punct) != 0 ); in _ctype_facet_w()
232 res = wct.scan_is(ctype_base::punct, rbeg, rend); in _ctype_facet_w()
252 res = wct.scan_not(ctype_base::punct, rbeg, rend); in _ctype_facet_w()
455 CPPUNIT_CHECK(cfacet_byname.is(ctype_base::punct, c) == cfacet.is(ctype_base::punct, c)); in ctype_by_name()
/ndk/sources/host-tools/sed-4.2.1/sed/
Dfmt.c126 unsigned punct:1; /* ends in punctuation */ member
382 w->punct = ISPUNCT (*finish); in check_punctuation()
497 else if ((this - 1)->punct) in base_cost()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ctype.h49 punct = _Locale_PUNCT, enumerator
52 graph = alnum | punct
/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0001-android-Add-locale-support.patch23 static const mask punct = _ISPUNCT;
36 + static const mask punct = _P;
45 static const mask punct = 1<<7;
51 static const mask graph = alnum | punct;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dregex.cpp228 {"punct", ctype_base::punct},
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
D__locale329 static const mask punct = _ISpunct;
341 static const mask punct = _PUNCT;
359 static const mask punct = _CTYPE_P;
375 static const mask punct = _ISPUNCT;
400 static const mask punct = _P;
413 static const mask punct = 1<<7;
418 static const mask graph = alnum | punct;
757 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::punct, __c);
/ndk/sources/cxx-stl/stlport/stlport/
Dlocale112 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::punct, c); }
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/
Dxlocale.c131 LOCALE_ISCTYPE(punct, _ISPUNCT) in LOCALE_ISCTYPE()

12