HomeSort by relevance Sort by last modified time
    Searched refs:ctype (Results 226 - 250 of 1405) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
widen_many.pass.cpp 12 // template <class charT> class ctype;
25 typedef std::ctype<wchar_t> F;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
getopt.h 31 not defined, include <ctype.h>, which will pull in <features.h> for us
32 if it's from glibc. (Why ctype.h? It's guaranteed to exist and it
35 # include <ctype.h>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
getopt.h 31 not defined, include <ctype.h>, which will pull in <features.h> for us
32 if it's from glibc. (Why ctype.h? It's guaranteed to exist and it
35 # include <ctype.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
getopt.h 31 not defined, include <ctype.h>, which will pull in <features.h> for us
32 if it's from glibc. (Why ctype.h? It's guaranteed to exist and it
35 # include <ctype.h>
  /system/core/toolbox/
setenforce.c 4 #include <ctype.h>
  /external/stlport/test/eh/
locale.cpp 13 //locale sys(c_loc, "LC_TIME=UKR_UKR.OCP;LC_NUMERIC=RUS_RUS.OCP;LC_CTYPE=ukr_ukr.ocp;", locale::numeric | locale::time | locale::ctype);
42 const ctype<char>& char_type=use_facet<ctype<char> >(cout.getloc());
  /external/bluetooth/bluedroid/btif/src/
btif_rc.c 72 #define FILL_PDU_QUEUE(index, ctype, label, pending) \
74 btif_rc_cb.rc_pdu_info[index].ctype = ctype; \
87 btif_rc_cb.rc_pdu_info[index].ctype, avrc_rsp); \
88 btif_rc_cb.rc_pdu_info[index].ctype = 0; \
104 UINT8 ctype; member in struct:__anon3399
199 static void btif_rc_upstreams_evt(UINT16 event, tAVRC_COMMAND* p_param, UINT8 ctype, UINT8 label);
200 static void btif_rc_upstreams_rsp_evt(UINT16 event, tAVRC_RESPONSE *pavrc_resp, UINT8 ctype, UINT8 label);
778 remote_cmd.hdr.ctype = AVRC_CMD_CTRL;
802 UINT8 ctype = AVRC_RSP_REJ local
834 UINT8 ctype; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
locale_facets.h 132 // 22.2.1.1 Template class ctype
133 // Include host and configuration specific ctype enums for ctype_base.
136 * @brief Common base for ctype facet
156 * It does so by returning the value of ctype<char_type>::do_is().
172 * ctype<char_type>::do_is().
188 * ctype<char_type>::do_scan_is().
204 * ctype<char_type>::do_scan_not().
220 * so by returning ctype<char_type>::do_toupper().
234 * by returning ctype<char_type>:: do_toupper(lo, hi).
249 * by returning ctype<char_type>::do_tolower(c)
606 class ctype : public __ctype_abstract_base<_CharT> class in inherits:__ctype_abstract_base
617 ctype(size_t __refs = 0) : __ctype_abstract_base<_CharT>(__refs) { } function in class:ctype
675 class ctype<char> : public locale::facet, public ctype_base class in inherits:locale::facet,ctype_base
1189 class ctype<wchar_t> : public __ctype_abstract_base<wchar_t> class in inherits:__ctype_abstract_base
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
locale_facets.h 132 // 22.2.1.1 Template class ctype
133 // Include host and configuration specific ctype enums for ctype_base.
136 * @brief Common base for ctype facet
156 * It does so by returning the value of ctype<char_type>::do_is().
172 * ctype<char_type>::do_is().
188 * ctype<char_type>::do_scan_is().
204 * ctype<char_type>::do_scan_not().
220 * so by returning ctype<char_type>::do_toupper().
234 * by returning ctype<char_type>:: do_toupper(lo, hi).
249 * by returning ctype<char_type>::do_tolower(c)
606 class ctype : public __ctype_abstract_base<_CharT> class in inherits:__ctype_abstract_base
617 ctype(size_t __refs = 0) : __ctype_abstract_base<_CharT>(__refs) { } function in class:ctype
675 class ctype<char> : public locale::facet, public ctype_base class in inherits:locale::facet,ctype_base
1189 class ctype<wchar_t> : public __ctype_abstract_base<wchar_t> class in inherits:__ctype_abstract_base
    [all...]
  /external/chromium_org/v8/src/
flag-definitions.h 40 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
41 extern ctype FLAG_##nam;
42 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) \
43 static ctype const FLAG_##nam = def;
49 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
50 ctype FLAG_##nam = def;
51 #define FLAG_READONLY(ftype, ctype, nam, def, cmt)
58 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
59 static ctype const FLAGDEFAULT_##nam = def;
60 #define FLAG_READONLY(ftype, ctype, nam, def, cmt
    [all...]
  /external/stlport/test/unit/
ctype_facets_test.cpp 29 CPPUNIT_ASSERT( has_facet<ctype<char> >(loc) );
30 ctype<char> const& ct = use_facet<ctype<char> >(loc);
173 CPPUNIT_ASSERT( has_facet<ctype<wchar_t> >(loc) );
174 ctype<wchar_t> const& wct = use_facet<ctype<wchar_t> >(loc);
341 locale tmp(locale::classic(), tested_locales[i], locale::ctype); member in class:locale
428 CPPUNIT_ASSERT( has_facet<ctype<char> >(loc) );
429 ctype<char> const& ct = use_facet<ctype<char> >(loc)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
ctype_facets_test.cpp 29 CPPUNIT_ASSERT( has_facet<ctype<char> >(loc) );
30 ctype<char> const& ct = use_facet<ctype<char> >(loc);
173 CPPUNIT_ASSERT( has_facet<ctype<wchar_t> >(loc) );
174 ctype<wchar_t> const& wct = use_facet<ctype<wchar_t> >(loc);
341 locale tmp(locale::classic(), tested_locales[i], locale::ctype); member in class:locale
428 CPPUNIT_ASSERT( has_facet<ctype<char> >(loc) );
429 ctype<char> const& ct = use_facet<ctype<char> >(loc)
    [all...]
  /ndk/tests/device/test-stlport/unit/
ctype_facets_test.cpp 29 CPPUNIT_ASSERT( has_facet<ctype<char> >(loc) );
30 ctype<char> const& ct = use_facet<ctype<char> >(loc);
173 CPPUNIT_ASSERT( has_facet<ctype<wchar_t> >(loc) );
174 ctype<wchar_t> const& wct = use_facet<ctype<wchar_t> >(loc);
341 locale tmp(locale::classic(), tested_locales[i], locale::ctype); member in class:locale
428 CPPUNIT_ASSERT( has_facet<ctype<char> >(loc) );
429 ctype<char> const& ct = use_facet<ctype<char> >(loc)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetypes.py 245 ctype = _winreg.EnumKey(mimedb, i)
249 ctype = ctype.encode(default_encoding) # omit in 3.x!
253 yield ctype
259 for ctype in enum_types(mimedb):
261 with _winreg.OpenKey(mimedb, ctype) as key:
272 self.add_type(ctype, suffix, strict)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetypes.py 245 ctype = _winreg.EnumKey(mimedb, i)
249 ctype = ctype.encode(default_encoding) # omit in 3.x!
253 yield ctype
259 for ctype in enum_types(mimedb):
261 with _winreg.OpenKey(mimedb, ctype) as key:
272 self.add_type(ctype, suffix, strict)
  /external/clang/test/SemaTemplate/
nested-template.cpp 148 template< class Topology, class ctype >
153 template< class Topology, class ctype >
155 class ReferenceElement< Topology, ctype > :: BaryCenterArray // expected-error{{out-of-line definition of 'BaryCenterArray' does not match any declaration in 'ReferenceElement<Topology, ctype>'}}
  /external/stlport/stlport/stl/
_iosfwd.h 98 template <class _CharT> class ctype;
103 _STLP_TEMPLATE_NULL class ctype<char>;
109 _STLP_TEMPLATE_NULL class ctype<wchar_t>;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.cons/
locale_facetptr.pass.cpp 39 assert(std::has_facet<std::ctype<char> >(loc));
40 assert(std::has_facet<std::ctype<wchar_t> >(loc));
97 std::locale loc2(loc, (std::ctype<char>*)0);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_iosfwd.h 98 template <class _CharT> class ctype;
103 _STLP_TEMPLATE_NULL class ctype<char>;
109 _STLP_TEMPLATE_NULL class ctype<wchar_t>;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_iosfwd.h 98 template <class _CharT> class ctype;
103 _STLP_TEMPLATE_NULL class ctype<char>;
109 _STLP_TEMPLATE_NULL class ctype<wchar_t>;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_iosfwd.h 98 template <class _CharT> class ctype;
103 _STLP_TEMPLATE_NULL class ctype<char>;
109 _STLP_TEMPLATE_NULL class ctype<wchar_t>;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_iosfwd.h 98 template <class _CharT> class ctype;
103 _STLP_TEMPLATE_NULL class ctype<char>;
109 _STLP_TEMPLATE_NULL class ctype<wchar_t>;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_iosfwd.h 98 template <class _CharT> class ctype;
103 _STLP_TEMPLATE_NULL class ctype<char>;
109 _STLP_TEMPLATE_NULL class ctype<wchar_t>;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_iosfwd.h 98 template <class _CharT> class ctype;
103 _STLP_TEMPLATE_NULL class ctype<char>;
109 _STLP_TEMPLATE_NULL class ctype<wchar_t>;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_field.cc 102 switch (field->options().ctype()) {
117 switch (field->options().ctype()) {

Completed in 1003 milliseconds

1 2 3 4 5 6 7 8 91011>>