Home | History | Annotate | Download | only in re2

Lines Matching full:stringpiece

38   bool Search(const StringPiece& text, const StringPiece& context,
40 StringPiece* submatch, int nsubmatch);
50 StringPiece text_; // text being searched
51 StringPiece context_; // greater context of text being searched
55 StringPiece *submatch_; // submatches to fill in
273 submatch_[i] = StringPiece(cap_[2*i], cap_[2*i+1] - cap_[2*i]);
293 bool BitState::Search(const StringPiece& text, const StringPiece& context,
295 StringPiece* submatch, int nsubmatch) {
349 bool Prog::SearchBitState(const StringPiece& text,
350 const StringPiece& context,
353 StringPiece* match,
358 StringPiece sp0;