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

1 2 3 4

  /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/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/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);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/x86/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/7/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/7/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/7/sources/cxx-stl/gnu-libstdc++/libs/x86/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/8/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/8/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/8/sources/cxx-stl/gnu-libstdc++/libs/mips/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/8/sources/cxx-stl/gnu-libstdc++/libs/x86/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/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
ctype_base.h 30 /** @file ctype_base.h
40 struct ctype_base struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
ctype_base.h 26 /** @file bits/ctype_base.h
42 struct ctype_base struct

Completed in 458 milliseconds

1 2 3 4