Lines Matching refs:ovector
1097 int ovector[OVECCOUNT]; in compute_raw_from_trans() local
1123 …rc = pcre_exec(domain->base_classification_regexp, 0, work, work_len, 0, PCRE_ANCHORED, ovector, O… in compute_raw_from_trans()
1126 pcre_get_substring(work, ovector, rc, 0, &match); in compute_raw_from_trans()
1143 memset(work + ovector[0], '#', ovector[1] - ovector[0]); in compute_raw_from_trans()
1144 char *p=work + ovector[0] + ovector[1]; in compute_raw_from_trans()
1166 rc = pcre_exec(g->prefix_regexp, 0, work, work_len, 0, 0, ovector, OVECCOUNT); in compute_raw_from_trans()
1169 prefix_offset = ovector[0]; in compute_raw_from_trans()
1170 prefix_len = ovector[1] - ovector[0]; in compute_raw_from_trans()
1174 rc = pcre_exec(g->suffix_regexp, 0, work, work_len, 0, 0, ovector, OVECCOUNT); in compute_raw_from_trans()
1177 suffix_offset = ovector[0]; in compute_raw_from_trans()
1178 suffix_len = ovector[1] - ovector[0]; in compute_raw_from_trans()
1189 rc = pcre_exec(g->word_regexp, 0, s, l, 0, 0, ovector, OVECCOUNT); in compute_raw_from_trans()
1192 pcre_get_substring(s, ovector, rc, 0, &match); in compute_raw_from_trans()
1230 memset(s + ovector[0], '#', ovector[1] - ovector[0]); in compute_raw_from_trans()