Searched refs:human_format (Results 1 – 7 of 7) sorted by relevance
/third_party/boost/libs/regex/example/snippets/ |
D | credit_card_example.cpp | 30 const std::string human_format("\\1-\\2-\\3-\\4"); variable 39 return boost::regex_replace(s, e, human_format, boost::match_default | boost::format_sed); in human_readable_card_number()
|
D | mfc_example.cpp | 109 const CString human_format = __T("$1-$2-$3-$4"); variable 113 return boost::regex_replace(s, e, human_format); in human_readable_card_number()
|
D | icu_example.cpp | 128 const char* human_format = "$1-$2-$3-$4"; variable 132 return boost::u32regex_replace(s, e, human_format); in human_readable_card_number()
|
/third_party/boost/libs/regex/test/ |
D | quick.cpp | 24 const std::string human_format("\\1-\\2-\\3-\\4"); variable 33 return boost::regex_replace(s, card_rx, human_format, boost::match_default | boost::format_sed); in human_readable_card_number()
|
/third_party/boost/libs/regex/doc/ |
D | mfc_strings.qbk | 200 const CString human_format = __T("$1-$2-$3-$4"); 204 return boost::regex_replace(s, e, human_format);
|
D | introduction.qbk | 92 const std::string human_format("\\1-\\2-\\3-\\4"); 101 return regex_replace(s, e, human_format, boost::match_default | boost::format_sed);
|
D | icu_strings.qbk | 214 const char* human_format = "$1-$2-$3-$4"; 218 return boost::u32regex_replace(s, e, human_format);
|