HomeSort by relevance Sort by last modified time
    Searched refs:ctype_base (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /external/libcxx/test/localization/locale.categories/category.ctype/
ctype_base.pass.cpp 17 // class ctype_base
44 assert(std::ctype_base::space);
45 assert(std::ctype_base::print);
46 assert(std::ctype_base::cntrl);
47 assert(std::ctype_base::upper);
48 assert(std::ctype_base::lower);
49 assert(std::ctype_base::alpha);
50 assert(std::ctype_base::digit);
51 assert(std::ctype_base::punct);
52 assert(std::ctype_base::xdigit)
    [all...]
Android.mk 19 test_name := localization/locale.categories/category.ctype/ctype_base
20 test_src := ctype_base.pass.cpp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/
ctype_base.pass.cpp 17 // class ctype_base
44 assert(std::ctype_base::space);
45 assert(std::ctype_base::print);
46 assert(std::ctype_base::cntrl);
47 assert(std::ctype_base::upper);
48 assert(std::ctype_base::lower);
49 assert(std::ctype_base::alpha);
50 assert(std::ctype_base::digit);
51 assert(std::ctype_base::punct);
52 assert(std::ctype_base::xdigit)
    [all...]
  /external/libcxx/test/re/re.traits/
lookup_classname.pass.cpp 25 test(const char_type* A, std::ctype_base::mask expected, bool icase = false)
34 test("d", std::ctype_base::digit);
35 test("D", std::ctype_base::digit);
36 test("d", std::ctype_base::digit, true);
37 test("D", std::ctype_base::digit, true);
39 test("w", std::regex_traits<char>::__regex_word | std::ctype_base::alnum
40 | std::ctype_base::upper | std::ctype_base::lower);
41 test("W", std::regex_traits<char>::__regex_word | std::ctype_base::alnum
42 | std::ctype_base::upper | std::ctype_base::lower)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
lookup_classname.pass.cpp 25 test(const char_type* A, std::ctype_base::mask expected, bool icase = false)
34 test("d", std::ctype_base::digit);
35 test("D", std::ctype_base::digit);
36 test("d", std::ctype_base::digit, true);
37 test("D", std::ctype_base::digit, true);
39 test("w", std::regex_traits<char>::__regex_word | std::ctype_base::alnum
40 | std::ctype_base::upper | std::ctype_base::lower);
41 test("W", std::regex_traits<char>::__regex_word | std::ctype_base::alnum
42 | std::ctype_base::upper | std::ctype_base::lower)
    [all...]
  /external/stlport/src/
ctype.cpp 42 const ctype_base::mask*
45 static const ctype_base::mask _S_classic_table[table_size] = {
55 ctype_base::mask(space | cntrl) /* tab */,
56 ctype_base::mask(space | cntrl) /* LF */,
57 ctype_base::mask(space | cntrl) /* ^K */,
58 ctype_base::mask(space | cntrl) /* FF */,
59 ctype_base::mask(space | cntrl) /* ^M */,
78 ctype_base::mask(space | print) /* */,
79 ctype_base::mask(punct | print) /* ! */,
80 ctype_base::mask(punct | print) /* " */
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
ctype.cpp 42 const ctype_base::mask*
45 static const ctype_base::mask _S_classic_table[table_size] = {
55 ctype_base::mask(space | cntrl) /* tab */,
56 ctype_base::mask(space | cntrl) /* LF */,
57 ctype_base::mask(space | cntrl) /* ^K */,
58 ctype_base::mask(space | cntrl) /* FF */,
59 ctype_base::mask(space | cntrl) /* ^M */,
78 ctype_base::mask(space | print) /* */,
79 ctype_base::mask(punct | print) /* ! */,
80 ctype_base::mask(punct | print) /* " */
    [all...]
  /external/stlport/test/unit/
ctype_facets_test.cpp 33 CPPUNIT_ASSERT( ct.is(ctype_base::digit, '0') );
34 CPPUNIT_ASSERT( ct.is(ctype_base::upper, 'A') );
35 CPPUNIT_ASSERT( ct.is(ctype_base::lower, 'a') );
36 CPPUNIT_ASSERT( ct.is(ctype_base::alpha, 'A') );
37 CPPUNIT_ASSERT( ct.is(ctype_base::space, ' ') );
38 CPPUNIT_ASSERT( !ct.is(ctype_base::space, '2') );
39 CPPUNIT_ASSERT( ct.is(ctype_base::punct, '.') );
40 CPPUNIT_ASSERT( ct.is(ctype_base::xdigit, 'a') );
46 ctype_base::mask res[sizeof(values)];
49 CPPUNIT_ASSERT( (res[0] & ctype_base::print) != 0 )
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
ctype_facets_test.cpp 33 CPPUNIT_ASSERT( ct.is(ctype_base::digit, '0') );
34 CPPUNIT_ASSERT( ct.is(ctype_base::upper, 'A') );
35 CPPUNIT_ASSERT( ct.is(ctype_base::lower, 'a') );
36 CPPUNIT_ASSERT( ct.is(ctype_base::alpha, 'A') );
37 CPPUNIT_ASSERT( ct.is(ctype_base::space, ' ') );
38 CPPUNIT_ASSERT( !ct.is(ctype_base::space, '2') );
39 CPPUNIT_ASSERT( ct.is(ctype_base::punct, '.') );
40 CPPUNIT_ASSERT( ct.is(ctype_base::xdigit, 'a') );
46 ctype_base::mask res[sizeof(values)];
49 CPPUNIT_ASSERT( (res[0] & ctype_base::print) != 0 )
    [all...]
  /ndk/tests/device/test-stlport/unit/
ctype_facets_test.cpp 33 CPPUNIT_ASSERT( ct.is(ctype_base::digit, '0') );
34 CPPUNIT_ASSERT( ct.is(ctype_base::upper, 'A') );
35 CPPUNIT_ASSERT( ct.is(ctype_base::lower, 'a') );
36 CPPUNIT_ASSERT( ct.is(ctype_base::alpha, 'A') );
37 CPPUNIT_ASSERT( ct.is(ctype_base::space, ' ') );
38 CPPUNIT_ASSERT( !ct.is(ctype_base::space, '2') );
39 CPPUNIT_ASSERT( ct.is(ctype_base::punct, '.') );
40 CPPUNIT_ASSERT( ct.is(ctype_base::xdigit, 'a') );
46 ctype_base::mask res[sizeof(values)];
49 CPPUNIT_ASSERT( (res[0] & ctype_base::print) != 0 )
    [all...]
  /external/libcxx/src/
regex.cpp 210 ctype_base::mask mask_;
219 {"alnum", ctype_base::alnum},
220 {"alpha", ctype_base::alpha},
221 {"blank", ctype_base::blank},
222 {"cntrl", ctype_base::cntrl},
223 {"d", ctype_base::digit},
224 {"digit", ctype_base::digit},
225 {"graph", ctype_base::graph},
226 {"lower", ctype_base::lower},
227 {"print", ctype_base::print}
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
regex.cpp 210 ctype_base::mask mask_;
219 {"alnum", ctype_base::alnum},
220 {"alpha", ctype_base::alpha},
221 {"blank", ctype_base::blank},
222 {"cntrl", ctype_base::cntrl},
223 {"d", ctype_base::digit},
224 {"digit", ctype_base::digit},
225 {"graph", ctype_base::graph},
226 {"lower", ctype_base::lower},
227 {"print", ctype_base::print}
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
ctype_base.h 42 struct ctype_base struct
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
ctype_base.h 42 struct ctype_base struct
  /external/stlport/stlport/
locale 84 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::space, c); }
88 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::print, c); }
92 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::cntrl, c); }
96 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::upper, c); }
100 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::lower, c); }
104 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alpha, c); }
108 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::digit, c); }
112 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::punct, c); }
116 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::xdigit, c); }
120 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alnum, c);
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/
locale 84 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::space, c); }
88 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::print, c); }
92 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::cntrl, c); }
96 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::upper, c); }
100 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::lower, c); }
104 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alpha, c); }
108 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::digit, c); }
112 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::punct, c); }
116 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::xdigit, c); }
120 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alnum, c);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
locale 84 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::space, c); }
88 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::print, c); }
92 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::cntrl, c); }
96 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::upper, c); }
100 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::lower, c); }
104 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alpha, c); }
108 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::digit, c); }
112 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::punct, c); }
116 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::xdigit, c); }
120 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alnum, c);
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
locale 84 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::space, c); }
88 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::print, c); }
92 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::cntrl, c); }
96 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::upper, c); }
100 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::lower, c); }
104 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alpha, c); }
108 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::digit, c); }
112 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::punct, c); }
116 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::xdigit, c); }
120 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alnum, c);
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
locale 84 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::space, c); }
88 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::print, c); }
92 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::cntrl, c); }
96 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::upper, c); }
100 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::lower, c); }
104 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alpha, c); }
108 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::digit, c); }
112 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::punct, c); }
116 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::xdigit, c); }
120 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alnum, c);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
locale 84 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::space, c); }
88 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::print, c); }
92 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::cntrl, c); }
96 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::upper, c); }
100 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::lower, c); }
104 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alpha, c); }
108 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::digit, c); }
112 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::punct, c); }
116 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::xdigit, c); }
120 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alnum, c);
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
locale 84 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::space, c); }
88 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::print, c); }
92 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::cntrl, c); }
96 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::upper, c); }
100 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::lower, c); }
104 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alpha, c); }
108 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::digit, c); }
112 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::punct, c); }
116 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::xdigit, c); }
120 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alnum, c);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_noninline.h 36 const ctype_base::mask*
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_noninline.h 36 const ctype_base::mask*
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_noninline.h 36 const ctype_base::mask*
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_noninline.h 36 const ctype_base::mask*
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);

Completed in 1077 milliseconds

1 2 3 4 5 6 7