Home | History | Annotate | Download | only in re.results.form

Lines Matching defs:out

36         nstr out = m.format(fmt);
37 assert(out == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
45 nstr out = m.format(fmt, std::regex_constants::format_sed);
46 assert(out == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
54 nstr out = m.format(fmt, std::regex_constants::format_sed);
55 assert(out == "match: cdefghi, m[1]: efg, m[2]: e");
64 wstr out = m.format(fmt);
65 assert(out == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
73 wstr out = m.format(fmt, std::regex_constants::format_sed);
74 assert(out == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
82 wstr out = m.format(fmt, std::regex_constants::format_sed);
83 assert(out == L"match: cdefghi, m[1]: efg, m[2]: e");