Home
last modified time | relevance | path

Searched refs:op_to_match (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/data/
Ddataset_utils.cc523 bool MatchesAnyVersion(StringPiece op_prefix, StringPiece op_to_match) { in MatchesAnyVersion() argument
524 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()
Ddataset_utils.h283 bool MatchesAnyVersion(StringPiece op_prefix, StringPiece op_to_match);