• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/

Lines Matching refs:StringRef

47     StringRef Text1, Text2;
105 typedef SmallVector<StringRef, 2> TextsVec;
133 void insert(SourceLocation loc, StringRef text);
134 void insertAfterToken(SourceLocation loc, StringRef text);
137 void replace(SourceRange range, StringRef text);
139 void replaceStmt(Stmt *S, StringRef text);
140 void replaceText(SourceLocation loc, StringRef text,
141 StringRef replacementText);
154 bool canReplaceText(SourceLocation loc, StringRef text);
156 void commitInsert(SourceLocation loc, StringRef text);
157 void commitInsertAfterToken(SourceLocation loc, StringRef text);
161 void commitReplaceText(SourceLocation loc, StringRef text,
162 StringRef replacementText);
167 void addInsertion(SourceLocation loc, StringRef text);
172 StringRef getUniqueText(StringRef text);
284 void TransformActionsImpl::insert(SourceLocation loc, StringRef text) {
294 void TransformActionsImpl::insertAfterToken(SourceLocation loc, StringRef text) {
322 void TransformActionsImpl::replace(SourceRange range, StringRef text) {
339 void TransformActionsImpl::replaceText(SourceLocation loc, StringRef text,
340 StringRef replacementText) {
351 void TransformActionsImpl::replaceStmt(Stmt *S, StringRef text) {
418 bool TransformActionsImpl::canReplaceText(SourceLocation loc, StringRef text) {
430 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
437 void TransformActionsImpl::commitInsert(SourceLocation loc, StringRef text) {
442 StringRef text) {
481 StringRef text,
482 StringRef replacementText) {
506 void TransformActionsImpl::addInsertion(SourceLocation loc, StringRef text) {
584 StringRef TransformActionsImpl::getUniqueText(StringRef text) {
629 void TransformActions::insert(SourceLocation loc, StringRef text) {
634 StringRef text) {
646 void TransformActions::replace(SourceRange range, StringRef text) {
655 void TransformActions::replaceStmt(Stmt *S, StringRef text) {
659 void TransformActions::replaceText(SourceLocation loc, StringRef text,
660 StringRef replacementText) {
687 void TransformActions::reportError(StringRef message, SourceLocation loc,
692 void TransformActions::reportWarning(StringRef message, SourceLocation loc,
697 void TransformActions::reportNote(StringRef message, SourceLocation loc,