/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_locale.h | 78 class _STLP_CLASS_DECLSPEC facet : protected _Refcount_Base { class in class:locale 82 * have lower sizeof and generate roll issues. 1 is enough to keep the facet 84 explicit facet(size_t __init_count = 0) : _Refcount_Base( __init_count == 0 ? 0 : 1 ) {} function in class:locale::facet 85 virtual ~facet(); 88 friend facet * _STLP_CALL _get_facet( facet * ); 89 friend void _STLP_CALL _release_facet( facet *& ); 92 facet(const facet& ) /* : _Refcount_Base(1) {} */; 93 void operator=(const facet&) [all...] |
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_locale.h | 78 class _STLP_CLASS_DECLSPEC facet : protected _Refcount_Base { class in class:locale 82 * have lower sizeof and generate roll issues. 1 is enough to keep the facet 84 explicit facet(size_t __init_count = 0) : _Refcount_Base( __init_count == 0 ? 0 : 1 ) {} function in class:locale::facet 85 virtual ~facet(); 88 friend facet * _STLP_CALL _get_facet( facet * ); 89 friend void _STLP_CALL _release_facet( facet *& ); 92 facet(const facet& ) /* : _Refcount_Base(1) {} */; 93 void operator=(const facet&) [all...] |
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_locale.h | 80 class _STLP_CLASS_DECLSPEC facet : protected _Refcount_Base { class in class:locale 84 * have lower sizeof and generate roll issues. 1 is enough to keep the facet 86 explicit facet(size_t __init_count = 0) : _Refcount_Base( __init_count == 0 ? 0 : 1 ) {} function in class:locale::facet 87 virtual ~facet(); 90 friend facet * _STLP_CALL _get_facet( facet * ); 91 friend void _STLP_CALL _release_facet( facet *& ); 94 facet(const facet& ) /* : _Refcount_Base(1) {} */; 95 void operator=(const facet&) [all...] |
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_locale.h | 80 class _STLP_CLASS_DECLSPEC facet : protected _Refcount_Base { class in class:locale 84 * have lower sizeof and generate roll issues. 1 is enough to keep the facet 86 explicit facet(size_t __init_count = 0) : _Refcount_Base( __init_count == 0 ? 0 : 1 ) {} function in class:locale::facet 87 virtual ~facet(); 90 friend facet * _STLP_CALL _get_facet( facet * ); 91 friend void _STLP_CALL _release_facet( facet *& ); 94 facet(const facet& ) /* : _Refcount_Base(1) {} */; 95 void operator=(const facet&) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/ |
messages_members.h | 46 : facet(__refs), _M_c_locale_messages(_S_get_c_locale()), 53 : facet(__refs), _M_c_locale_messages(0), _M_name_messages(0) 108 if (this->_M_name_messages != locale::facet::_S_get_c_name()) 111 if (__builtin_strcmp(__s, locale::facet::_S_get_c_name()) != 0) 119 this->_M_name_messages = locale::facet::_S_get_c_name();
|
time_members.h | 45 : facet(__refs), _M_data(0), _M_c_locale_timepunct(0), 51 : facet(__refs), _M_data(__cache), _M_c_locale_timepunct(0), 58 : facet(__refs), _M_data(0), _M_c_locale_timepunct(0),
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/bits/ |
messages_members.h | 46 : facet(__refs), _M_c_locale_messages(_S_get_c_locale()), 53 : facet(__refs), _M_c_locale_messages(0), _M_name_messages(0) 108 if (this->_M_name_messages != locale::facet::_S_get_c_name()) 111 if (__builtin_strcmp(__s, locale::facet::_S_get_c_name()) != 0) 119 this->_M_name_messages = locale::facet::_S_get_c_name();
|
time_members.h | 45 : facet(__refs), _M_data(0), _M_c_locale_timepunct(0), 51 : facet(__refs), _M_data(__cache), _M_c_locale_timepunct(0), 58 : facet(__refs), _M_data(0), _M_c_locale_timepunct(0),
|
/external/stlport/src/ |
locale_impl.cpp | 36 locale::facet * _STLP_CALL _get_facet(locale::facet *f) 43 void _STLP_CALL _release_facet(locale::facet *&f) 110 //facets with a reference counter telling to _release_facet when the facet can be 126 locale::facet* _Locale_impl::insert(locale::facet *f, const locale::id& n) { 163 locale::facet* ct = 0; 164 locale::facet* cvt = 0; 166 locale::facet* wct = 0; 167 locale::facet* wcvt = 0 [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
locale_impl.cpp | 36 locale::facet * _STLP_CALL _get_facet(locale::facet *f) 43 void _STLP_CALL _release_facet(locale::facet *&f) 110 //facets with a reference counter telling to _release_facet when the facet can be 126 locale::facet* _Locale_impl::insert(locale::facet *f, const locale::id& n) { 163 locale::facet* ct = 0; 164 locale::facet* cvt = 0; 166 locale::facet* wct = 0; 167 locale::facet* wcvt = 0 [all...] |
/external/clang/test/CXX/class/class.friend/ |
p1.cpp | 66 class facet; 67 friend class facet; // should not assert 68 class facet {}; class in class:A
|
/external/llvm/test/CodeGen/Generic/ |
2007-04-30-LandingPadBranchFolding.ll | 6 %"struct.std::locale::_Impl" = type { i32, %"struct.std::locale::facet"**, i32, %"struct.std::locale::facet"**, i8** } 7 %"struct.std::locale::facet" = type { i32 (...)**, i32 }
|
/external/stlport/doc/ |
README.utf8 | 3 the C++ Standard library is handle by the codecvt locale facet which is part 23 is to specifically signal that the codecvt facet should be based on utf8 35 You can also access the facet directly to perform utf8 encoding/decoding operations:
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.collate/locale.collate/ |
types.pass.cpp | 14 // : public locale::facet { 37 static_assert((std::is_base_of<std::locale::facet, std::collate<char> >::value), ""); 47 static_assert((std::is_base_of<std::locale::facet, std::collate<wchar_t> >::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.messages/locale.messages/ |
types.pass.cpp | 14 // : public locale::facet, 26 static_assert((std::is_base_of<std::locale::facet, std::messages<char> >::value), ""); 28 static_assert((std::is_base_of<std::locale::facet, std::messages<wchar_t> >::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.monetary/locale.money.get/ |
types.pass.cpp | 14 // : public locale::facet 26 static_assert((std::is_base_of<std::locale::facet, std::money_get<char> >::value), ""); 27 static_assert((std::is_base_of<std::locale::facet, std::money_get<wchar_t> >::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.monetary/locale.money.put/ |
types.pass.cpp | 14 // : public locale::facet 26 static_assert((std::is_base_of<std::locale::facet, std::money_put<char> >::value), ""); 27 static_assert((std::is_base_of<std::locale::facet, std::money_put<wchar_t> >::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.monetary/locale.moneypunct/ |
types.pass.cpp | 14 // : public locale::facet, 30 static_assert((std::is_base_of<std::locale::facet, std::moneypunct<char> >::value), ""); 31 static_assert((std::is_base_of<std::locale::facet, std::moneypunct<wchar_t> >::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.time/locale.time.get/ |
types.pass.cpp | 20 // : public locale::facet, 33 static_assert((std::is_base_of<std::locale::facet, std::time_get<char> >::value), ""); 34 static_assert((std::is_base_of<std::locale::facet, std::time_get<wchar_t> >::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/facet.numpunct/locale.numpunct/ |
types.pass.cpp | 14 // : public locale::facet 36 static_assert((std::is_base_of<std::locale::facet, std::numpunct<char> >::value), ""); 46 static_assert((std::is_base_of<std::locale::facet, std::numpunct<wchar_t> >::value), "");
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/ |
time_members.h | 42 : facet(__refs), _M_data(NULL) 50 : facet(__refs), _M_data(__cache) 59 : facet(__refs), _M_data(NULL)
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/ |
time_members.h | 42 : facet(__refs), _M_data(NULL) 50 : facet(__refs), _M_data(__cache) 59 : facet(__refs), _M_data(NULL)
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/ |
time_members.h | 42 : facet(__refs), _M_data(NULL) 50 : facet(__refs), _M_data(__cache) 59 : facet(__refs), _M_data(NULL)
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/ |
time_members.h | 42 : facet(__refs), _M_data(NULL) 50 : facet(__refs), _M_data(__cache) 59 : facet(__refs), _M_data(NULL)
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/ |
time_members.h | 42 : facet(__refs), _M_data(NULL) 50 : facet(__refs), _M_data(__cache) 59 : facet(__refs), _M_data(NULL)
|