Searched refs:op_to_match (Results 1 – 2 of 2) sorted by relevance
523 bool MatchesAnyVersion(StringPiece op_prefix, StringPiece op_to_match) { in MatchesAnyVersion() argument524 if (!absl::StartsWith(op_to_match, op_prefix)) { in MatchesAnyVersion()527 if (op_to_match.length() == op_prefix.length()) { in MatchesAnyVersion()530 size_t index = op_to_match.length() - 1; in MatchesAnyVersion()531 while (isdigit(op_to_match[index])) { in MatchesAnyVersion()534 return (op_to_match[index] == 'V') && (op_prefix.length() == index); in MatchesAnyVersion()
283 bool MatchesAnyVersion(StringPiece op_prefix, StringPiece op_to_match);