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

Lines Matching defs:SM

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