Home | History | Annotate | Download | only in re2

Lines Matching defs:out

380   string out;
386 out.append(p, vec[0].begin() - p);
390 out.append(p, 1);
394 re.Rewrite(&out, rewrite, vec, nvec);
404 out.append(p, ep - p);
405 swap(out, *str);
412 string *out) {
421 out->clear();
422 return re.Rewrite(out, rewrite, vec, nvec);
547 // Use DFAs to find exact location of match, filter out non-matches.
725 // DFA ran out of memory or was skipped:
851 // to string "out".
852 bool RE2::Rewrite(string *out, const StringPiece &rewrite,
871 out->append(snip.data(), snip.size());
873 out->push_back('\\');
880 out->push_back(c);
986 // (Numbers that are still too long will be out of range.)
1068 if ((short)r != r) return false; // Out of range
1080 if ((ushort)r != r) return false; // Out of range
1092 if ((int)r != r) return false; // Out of range
1104 if ((uint)r != r) return false; // Out of range