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

Lines Matching defs:out

37         nstr out = m.format(fmt);
38 assert(out == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
46 nstr out = m.format(fmt, std::regex_constants::format_sed);
47 assert(out == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
55 nstr out = m.format(fmt, std::regex_constants::format_sed);
56 assert(out == "match: cdefghi, m[1]: efg, m[2]: e");
65 wstr out = m.format(fmt);
66 assert(out == L"prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
74 wstr out = m.format(fmt, std::regex_constants::format_sed);
75 assert(out == L"prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
83 wstr out = m.format(fmt, std::regex_constants::format_sed);
84 assert(out == L"match: cdefghi, m[1]: efg, m[2]: e");