Home
last modified time | relevance | path

Searched refs:ReplacementString (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/lib/Tooling/Refactoring/
H A DLookup.cpp189 StringRef ReplacementString) { in replaceNestedName() argument
190 assert(ReplacementString.startswith("::") && in replaceNestedName()
210 auto Pos = ReplacementString.rfind("::"); in replaceNestedName()
212 ? ReplacementString.substr(Pos + 2) in replaceNestedName()
213 : ReplacementString); in replaceNestedName()
219 StringRef Suggested = getBestNamespaceSubstr(UseContext, ReplacementString, in replaceNestedName()
222 return disambiguateSpellingInScope(Suggested, ReplacementString, *UseContext, in replaceNestedName()
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DLookupTest.cpp52 StringRef ReplacementString) { in TEST() argument
57 Visitor.DeclStack.back()->getDeclContext(), FD, ReplacementString); in TEST()
194 StringRef ReplacementString) { in TEST() argument
197 ReplacementString); in TEST()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Duse-noexcept.rst30 .. option:: ReplacementString
32 Users can use :option:`ReplacementString` to specify a macro to use
53 if the :option:`ReplacementString` option is set to `NOEXCEPT`.
H A Duse-nodiscard.rst50 .. option:: ReplacementString
70 if the :option:`ReplacementString` option is set to `NO_DISCARD`.
74 If the :option:`ReplacementString` is not a C++ attribute, but instead a
/llvm-project-15.0.7/clang/include/clang/Tooling/Refactoring/
H A DLookup.h45 StringRef ReplacementString);