Lines Matching refs:dfault
785 char ctype<wchar_t>::do_narrow(char_type c, char dfault) const { in do_narrow()
788 return dfault; in do_narrow()
791 const wchar_t* ctype<wchar_t>::do_narrow(const char_type* low, const char_type* high, char dfault, … in do_narrow() argument
796 *dest = dfault; in do_narrow()
877 char ctype<char>::do_narrow(char_type c, char dfault) const { in do_narrow()
880 return dfault; in do_narrow()
883 const char* ctype<char>::do_narrow(const char_type* low, const char_type* high, char dfault, char* … in do_narrow() argument
888 *dest = dfault; in do_narrow()
1268 char ctype_byname<wchar_t>::do_narrow(char_type c, char dfault) const { in do_narrow()
1270 return (r != EOF) ? static_cast<char>(r) : dfault; in do_narrow()
1274 ctype_byname<wchar_t>::do_narrow(const char_type* low, const char_type* high, char dfault, char* de… in do_narrow() argument
1277 *dest = (r != EOF) ? static_cast<char>(r) : dfault; in do_narrow()