Home
last modified time | relevance | path

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

/external/llvm-project/mlir/tools/mlir-tblgen/
DOpDefinitionsGen.cpp128 std::string::size_type scanLoc = 0, matchLoc = std::string::npos; in replaceAllSubstrs() local
129 while ((matchLoc = str.find(match, scanLoc)) != std::string::npos) { in replaceAllSubstrs()
130 str = str.replace(matchLoc, match.size(), substitute); in replaceAllSubstrs()
131 scanLoc = matchLoc + substitute.size(); in replaceAllSubstrs()
/external/llvm-project/mlir/lib/Rewrite/
DByteCode.cpp1140 Location matchLoc = rewriter.getFusedLoc(matchLocs); in execute() local
1143 << " * Location: " << matchLoc << "\n\n"); in execute()
1144 matches->emplace_back(matchLoc, patterns[patternIndex], benefit); in execute()