Searched refs:rm_so (Results 1 – 8 of 8) sorted by relevance
42 if (match.rm_so == -1) return 0; in match_to_uint32()44 size_t len = match.rm_eo - match.rm_so; in match_to_uint32()45 std::string s(expression + match.rm_so, len); in match_to_uint32()
51 if (match.rm_so == -1) return 0; in match_to_uint32()53 size_t len = match.rm_eo - match.rm_so; in match_to_uint32()54 std::string s(expression + match.rm_so, len); in match_to_uint32()
203 start = string + (size_t)pmatch[0].rm_so; in matcher()269 m->pmatch[i].rm_so = m->pmatch[i].rm_eo = (regoff_t)-1; in matcher()300 assert(m->pmatch[i].rm_so == (regoff_t)-1); in matcher()320 pmatch[0].rm_so = m->coldp - m->offp; in matcher()329 pmatch[i].rm_so = (regoff_t)-1; in matcher()539 m->pmatch[i].rm_so = sp - m->offp; in dissect()676 assert(m->pmatch[i].rm_so != (regoff_t)-1); in backref()683 ssp = m->offp + (size_t)m->pmatch[i].rm_so; in backref()736 offsave = m->pmatch[i].rm_so; in backref()737 m->pmatch[i].rm_so = sp - m->offp; in backref()[all …]
204 if (match.rm_so == -1) return 0; in match_to_uint32()206 size_t len = match.rm_eo - match.rm_so; in match_to_uint32()207 std::string s(expression + match.rm_so, len); in match_to_uint32()
45 return status == 0 && match.rm_so == 0 && match.rm_eo >= 0 && in matches()
45 ASSERT_EQ(1, matches[0].rm_so); in TEST()
40 STRUCT_MEMBER(regmatch_t, regoff_t, rm_so); in regex_h()
57 regoff_t rm_so; /* start of match */ member