Lines Matching refs:match
706 for (size_t match = first_match; match != StringType::npos;
707 match = matcher.Find(*str, match + find_length)) {
721 for (size_t match = first_match;; match = matcher.Find(src, pos)) {
722 str->append(src, pos, match - pos);
724 pos = match + find_length;
732 // Handle substring after the final match.
738 // size by shifting the data after the first match to the end of the resized
762 // will only catch up to |read_offset| at the point of the last match.
775 size_t match = std::min(matcher.Find(*str, read_offset), str_length);
777 size_t length = match - read_offset;