Definition at line 676 of file locale_facets.h.
|
Typedef for the template parameter char.
Definition at line 681 of file locale_facets.h. |
|
Constructor performs initialization. This is the constructor provided by the standard.
|
|
Constructor performs static initialization. This constructor is used to construct the initial C locale facet.
|
|
Destructor. This function deletes table() if del was true in the constructor. |
|
Returns a pointer to the C locale mask table.
|
|
Narrow char array to char array. This virtual function converts each char in the range [lo,hi) to char using the simplest reasonable transformation and writes the results to the destination array. For any char in the input that cannot be converted, dfault is used instead. For an underived ctype<char> facet, the argument will be copied unchanged. do_narrow() is a hook for a derived facet to change the behavior of narrowing. do_narrow() must always return the same result for the same input. Note: this is not what you want for codepage conversions. See codecvt for that.
Definition at line 1150 of file locale_facets.h. |
|
Narrow char. This virtual function converts the char to char using the simplest reasonable transformation. If the conversion fails, dfault is returned instead. For an underived ctype<char> facet, c will be returned unchanged. do_narrow() is a hook for a derived facet to change the behavior of narrowing. do_narrow() must always return the same result for the same input. Note: this is not what you want for codepage conversions. See codecvt for that.
Definition at line 1124 of file locale_facets.h. |
|
Convert array to lowercase. This virtual function converts each char in the range [lo,hi) to lowercase if possible. Other chars remain untouched. do_tolower() is a hook for a derived facet to change the behavior of lowercasing. do_tolower() must always return the same result for the same input.
|
|
Convert to lowercase. This virtual function converts the char argument to lowercase if possible. If not possible (for example, '2'), returns the argument. do_tolower() is a hook for a derived facet to change the behavior of lowercasing. do_tolower() must always return the same result for the same input.
|
|
Convert array to uppercase. This virtual function converts each char in the range [lo,hi) to uppercase if possible. Other chars remain untouched. do_toupper() is a hook for a derived facet to change the behavior of uppercasing. do_toupper() must always return the same result for the same input.
|
|
Convert to uppercase. This virtual function converts the char argument to uppercase if possible. If not possible (for example, '2'), returns the argument. do_toupper() is a hook for a derived facet to change the behavior of uppercasing. do_toupper() must always return the same result for the same input.
|
|
Widen char array. This function converts each char in the range [lo,hi) to char using the simplest reasonable transformation. For an underived ctype<char> facet, the argument will be copied unchanged. do_widen() is a hook for a derived facet to change the behavior of widening. do_widen() must always return the same result for the same input. Note: this is not what you want for codepage conversions. See codecvt for that.
Definition at line 1098 of file locale_facets.h. |
|
Widen char. This virtual function converts the char to char using the simplest reasonable transformation. For an underived ctype<char> facet, the argument will be returned unchanged. do_widen() is a hook for a derived facet to change the behavior of widening. do_widen() must always return the same result for the same input. Note: this is not what you want for codepage conversions. See codecvt for that.
Definition at line 1075 of file locale_facets.h. |
|
Return a mask array. This function finds the mask for each char in the range [lo, hi) and successively writes it to vec. vec must have as many elements as the char array.
Definition at line 51 of file ctype_inline.h. |
|
Test char classification. This function compares the mask table[c] to m.
Definition at line 46 of file ctype_inline.h. |
|
Narrow char array. This function converts each char in the input to char using the simplest reasonable transformation and writes the results to the destination array. For any char in the input that cannot be converted, dfault is used instead. For an underived ctype<char> facet, the argument will be copied unchanged. This function works as if it returns ctype<char>::do_narrow(lo, hi, dfault, to). do_narrow() must always return the same result for the same input. Note: this is not what you want for codepage conversions. See codecvt for that.
Definition at line 958 of file locale_facets.h. |
|
Narrow char. This function converts the char to char using the simplest reasonable transformation. If the conversion fails, dfault is returned instead. For an underived ctype<char> facet, c will be returned unchanged. This function works as if it returns ctype<char>::do_narrow(c). do_narrow() must always return the same result for the same input. Note: this is not what you want for codepage conversions. See codecvt for that.
Definition at line 925 of file locale_facets.h. |
|
Find char matching a mask. This function searches for and returns the first char in [lo,hi) for which is(m,char) is true.
Definition at line 60 of file ctype_inline.h. |
|
Find char not matching a mask. This function searches for and returns a pointer to the first char in [lo,hi) for which is(m,char) is false.
Definition at line 70 of file ctype_inline.h. |
|
the default from classic_table() if none was provided.
Definition at line 975 of file locale_facets.h. |
|
Convert array to lowercase. This function converts each char in the range [lo,hi) to lowercase if possible. Other chars remain untouched. tolower() acts as if it returns ctype<char>:: do_tolower(lo, hi). do_tolower() must always return the same result for the same input.
Definition at line 847 of file locale_facets.h. |
|
Convert to lowercase. This function converts the char argument to lowercase if possible. If not possible (for example, '2'), returns the argument. tolower() acts as if it returns ctype<char>::do_tolower(c). do_tolower() must always return the same result for the same input.
Definition at line 830 of file locale_facets.h. |
|
Convert array to uppercase. This function converts each char in the range [lo,hi) to uppercase if possible. Other chars remain untouched. toupper() acts as if it returns ctype<char>:: do_toupper(lo, hi). do_toupper() must always return the same result for the same input.
Definition at line 814 of file locale_facets.h. |
|
Convert to uppercase. This function converts the char argument to uppercase if possible. If not possible (for example, '2'), returns the argument. toupper() acts as if it returns ctype<char>::do_toupper(c). do_toupper() must always return the same result for the same input.
Definition at line 797 of file locale_facets.h. |
|
Widen char array. This function converts each char in the input to char using the simplest reasonable transformation. For an underived ctype<char> facet, the argument will be copied unchanged. This function works as if it returns ctype<char>::do_widen(c). do_widen() must always return the same result for the same input. Note: this is not what you want for codepage conversions. See codecvt for that.
Definition at line 894 of file locale_facets.h. |
|
Widen char. This function converts the char to char_type using the simplest reasonable transformation. For an underived ctype<char> facet, the argument will be returned unchanged. This function works as if it returns ctype<char>::do_widen(c). do_widen() must always return the same result for the same input. Note: this is not what you want for codepage conversions. See codecvt for that.
Definition at line 867 of file locale_facets.h. |
|
The facet id for ctype<char>.
Definition at line 698 of file locale_facets.h. |
|
The size of the mask table. It is SCHAR_MAX + 1.
Definition at line 700 of file locale_facets.h. |