Home | History | Annotate | Download | only in re.submatch.members

Lines Matching refs:sm

24         typedef std::sub_match<const CharT*> SM;
25 SM sm = SM();
26 assert(sm.length() == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 assert(sm.length() == 3);
35 typedef std::sub_match<const CharT*> SM;
36 SM sm = SM();
37 assert(sm.length() == 0);
39 sm.first = s;
40 sm.second = s + 3;
41 sm.matched = true;
42 assert(sm.length() == 3);