Lines Matching refs:match
53 String16 match = multiline
57 size_t newLine = match.find("\n");
58 if (newLine != String16::kNotFound) match = match.substring(0, newLine);
59 match = match.stripWhiteSpace();
61 for (size_t i = 0; i < match.length(); ++i) {
62 UChar c = match[i];
66 return match;
117 if (regex.match(line, 0, &matchLength) != -1)
155 for (const auto& match : matches)
156 result.push_back(buildObjectForSearchMatch(match.first, match.second));