Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

std::locale_facet(3cxx) [debian man page]

std::locale::facet(3cxx)												  std::locale::facet(3cxx)

NAME
std::locale::facet - SYNOPSIS
Inherited by std::__codecvt_abstract_base< _InternT, _ExternT, encoding_state >, std::__codecvt_abstract_base< char, char, mbstate_t >, std::__codecvt_abstract_base< wchar_t, char, mbstate_t >, std::__ctype_abstract_base< wchar_t >, std::__codecvt_abstract_base< _InternT, _ExternT, _StateT >, std::__ctype_abstract_base< _CharT >, std::__moneypunct_cache< _CharT, _Intl >, std::__numpunct_cache< _CharT >, std::__timepunct< _CharT >, std::__timepunct_cache< _CharT >, std::collate< _CharT >, std::ctype< char >, std::messages< _CharT >, std::money_get< _CharT, _InIter >, std::money_put< _CharT, _OutIter >, std::moneypunct< _CharT, _Intl >, std::num_get< _CharT, _InIter >, std::num_put< _CharT, _OutIter >, std::numpunct< _CharT >, std::time_get< _CharT, _InIter >, and std::time_put< _CharT, _OutIter >. Protected Member Functions facet (size_t __refs=0) throw () virtual ~facet () Static Protected Member Functions static __c_locale _S_clone_c_locale (__c_locale &__cloc) throw () static void _S_create_c_locale (__c_locale &__cloc, const char *__s, __c_locale __old=0) static void _S_destroy_c_locale (__c_locale &__cloc) static __c_locale _S_get_c_locale () static const char * _S_get_c_name () throw () static __c_locale _S_lc_ctype_c_locale (__c_locale __cloc, const char *__s) Friends class locale class locale::_Impl Detailed Description Localization functionality base class. The facet class is the base class for a localization feature, such as money, time, and number printing. It provides common support for facets and reference management. Facets may not be copied or assigned. Definition at line 339 of file locale_classes.h. Constructor &; Destructor Documentation std::locale::facet::facet (size_t__refs = 0) throw () [inline], [explicit], [protected] Facet constructor. This is the constructor provided by the standard. If refs is 0, the facet is destroyed when the last referencing locale is destroyed. Otherwise the facet will never be destroyed. Parameters: refs The initial value for reference count. Definition at line 371 of file locale_classes.h. virtual std::locale::facet::~facet () [protected], [virtual] Facet destructor. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::locale::facet(3cxx)

Check Out this Related Man Page

std::collate< _CharT >(3)				     Library Functions Manual					 std::collate< _CharT >(3)

NAME
std::collate< _CharT > - SYNOPSIS
Inherits std::locale::facet. Inherited by std::collate_byname< _CharT >. Public Types typedef _CharT char_type typedef basic_string< _CharT > string_type Public Member Functions collate (size_t __refs=0) collate (__c_locale __cloc, size_t __refs=0) int _M_compare (const _CharT *, const _CharT *) const throw () template<> int _M_compare (const char *, const char *) const throw() template<> int _M_compare (const wchar_t *, const wchar_t *) const throw() size_t _M_transform (_CharT *, const _CharT *, size_t) const throw () template<> size_t _M_transform (char *, const char *, size_t) const throw() template<> size_t _M_transform (wchar_t *, const wchar_t *, size_t) const throw() int compare (const _CharT *__lo1, const _CharT *__hi1, const _CharT *__lo2, const _CharT *__hi2) const long hash (const _CharT *__lo, const _CharT *__hi) const string_type transform (const _CharT *__lo, const _CharT *__hi) const Static Public Attributes static locale::id id Protected Member Functions virtual ~collate () virtual int do_compare (const _CharT *__lo1, const _CharT *__hi1, const _CharT *__lo2, const _CharT *__hi2) const virtual long do_hash (const _CharT *__lo, const _CharT *__hi) const virtual string_type do_transform (const _CharT *__lo, const _CharT *__hi) const Static Protected Member Functions static __c_locale _S_clone_c_locale (__c_locale &__cloc) throw () static void _S_create_c_locale (__c_locale &__cloc, const char *__s, __c_locale __old=0) static void _S_destroy_c_locale (__c_locale &__cloc) static __c_locale _S_get_c_locale () static const char * _S_get_c_name () throw () static __c_locale _S_lc_ctype_c_locale (__c_locale __cloc, const char *__s) Protected Attributes __c_locale _M_c_locale_collate Detailed Description template<typename _CharT>class std::collate< _CharT > Facet for localized string comparison. This facet encapsulates the code to compare strings in a localized manner. The collate template uses protected virtual functions to provide the actual results. The public accessors forward the call to the virtual functions. These virtual functions are hooks for developers to implement the behavior they require from the collate facet. Definition at line 584 of file locale_classes.h. Member Typedef Documentation template<typename _CharT> typedef _CharT std::collate< _CharT >::char_type Public typedefs. Definition at line 590 of file locale_classes.h. template<typename _CharT> typedef basic_string<_CharT> std::collate< _CharT >::string_type Public typedefs. Definition at line 591 of file locale_classes.h. Constructor &; Destructor Documentation template<typename _CharT> std::collate< _CharT >::collate (size_t__refs = 0) [inline], [explicit] Constructor performs initialization. This is the constructor provided by the standard. Parameters: __refs Passed to the base facet class. Definition at line 611 of file locale_classes.h. template<typename _CharT> std::collate< _CharT >::collate (__c_locale__cloc, size_t__refs = 0) [inline], [explicit] Internal constructor. Not for general use. This is a constructor for use by the library itself to set up new locales. Parameters: __cloc The C locale. __refs Passed to the base facet class. Definition at line 625 of file locale_classes.h. template<typename _CharT> virtual std::collate< _CharT >::~collate () [inline], [protected], [virtual] Destructor. Definition at line 688 of file locale_classes.h. Member Function Documentation template<typename _CharT> int std::collate< _CharT >::compare (const _CharT *__lo1, const _CharT *__hi1, const _CharT *__lo2, const _CharT *__hi2) const [inline] Compare two strings. This function compares two strings and returns the result by calling collate::do_compare(). Parameters: __lo1 Start of string 1. __hi1 End of string 1. __lo2 Start of string 2. __hi2 End of string 2. Returns: 1 if string1 > string2, -1 if string1 < string2, else 0. Definition at line 642 of file locale_classes.h. template<typename _CharT> int std::collate< _CharT >::do_compare (const _CharT *__lo1, const _CharT *__hi1, const _CharT *__lo2, const _CharT *__hi2) const [protected], [virtual] Compare two strings. This function is a hook for derived classes to change the value returned. See Also: compare(). Parameters: __lo1 Start of string 1. __hi1 End of string 1. __lo2 Start of string 2. __hi2 End of string 2. Returns: 1 if string1 > string2, -1 if string1 < string2, else 0. Definition at line 161 of file locale_classes.tcc. References std::basic_string< _CharT, _Traits, _Alloc >::c_str(), std::basic_string< _CharT, _Traits, _Alloc >::data(), and std::basic_string< _CharT, _Traits, _Alloc >::length(). template<typename _CharT> long std::collate< _CharT >::do_hash (const _CharT *__lo, const _CharT *__hi) const [protected], [virtual] Return hash of a string. This function computes and returns a hash on the input string. This function is a hook for derived classes to change the value returned. Parameters: __lo Start of string. __hi End of string. Returns: Hash value. Definition at line 256 of file locale_classes.tcc. template<typename _CharT> collate< _CharT >::string_type std::collate< _CharT >::do_transform (const _CharT *__lo, const _CharT *__hi) const [protected], [virtual] Transform string to comparable form. This function is a hook for derived classes to change the value returned. Parameters: __lo Start. __hi End. Returns: transformed string. Definition at line 200 of file locale_classes.tcc. References std::basic_string< _CharT, _Traits, _Alloc >::append(), std::basic_string< _CharT, _Traits, _Alloc >::c_str(), std::basic_string< _CharT, _Traits, _Alloc >::data(), std::basic_string< _CharT, _Traits, _Alloc >::length(), and std::basic_string< _CharT, _Traits, _Alloc >::push_back(). template<typename _CharT> long std::collate< _CharT >::hash (const _CharT *__lo, const _CharT *__hi) const [inline] Return hash of a string. This function computes and returns a hash on the input string. It does so by returning collate::do_hash(). Parameters: __lo Start of string. __hi End of string. Returns: Hash value. Definition at line 675 of file locale_classes.h. template<typename _CharT> string_type std::collate< _CharT >::transform (const _CharT *__lo, const _CharT *__hi) const [inline] Transform string to comparable form. This function is a wrapper for strxfrm functionality. It takes the input string and returns a modified string that can be directly compared to other transformed strings. In the C locale, this function just returns a copy of the input string. In some other locales, it may replace two chars with one, change a char for another, etc. It does so by returning collate::do_transform(). Parameters: __lo Start of string. __hi End of string. Returns: Transformed string_type. Definition at line 661 of file locale_classes.h. Member Data Documentation template<typename _CharT> locale::id std::collate< _CharT >::id [static] Numpunct facet id. Definition at line 601 of file locale_classes.h. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 std::collate< _CharT >(3)
Man Page