Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp159 ReplaceNodeWithTemplate::create(StringRef FromId, StringRef ToTemplate) { in create() argument
161 for (size_t Index = 0; Index < ToTemplate.size();) { in create()
162 if (ToTemplate[Index] == '$') { in create()
163 if (ToTemplate.substr(Index, 2) == "$$") { in create()
167 } else if (ToTemplate.substr(Index, 2) == "${") { in create()
168 size_t EndOfIdentifier = ToTemplate.find("}", Index); in create()
172 ToTemplate.substr(Index), in create()
176 ToTemplate.substr(Index + 2, EndOfIdentifier - Index - 2)); in create()
183 ToTemplate.substr(Index), in create()
187 size_t NextIndex = ToTemplate.find('$', Index + 1); in create()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h97 create(StringRef FromId, StringRef ToTemplate);