Home | History | Annotate | Download | only in 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) {
320 void TransformActionsImpl::replace(SourceRange range, StringRef text) {
337 void TransformActionsImpl::replaceText(SourceLocation loc, StringRef text,
338 StringRef replacementText) {
349 void TransformActionsImpl::replaceStmt(Stmt *S, StringRef text) {
416 bool TransformActionsImpl::canReplaceText(SourceLocation loc, StringRef text) {
428 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
435 void TransformActionsImpl::commitInsert(SourceLocation loc, StringRef text) {
440 StringRef text) {
479 StringRef text,
480 StringRef replacementText) {
504 void TransformActionsImpl::addInsertion(SourceLocation loc, StringRef text) {
582 StringRef TransformActionsImpl::getUniqueText(StringRef text) {
624 void TransformActions::insert(SourceLocation loc, StringRef text) {
629 StringRef text) {
641 void TransformActions::replace(SourceRange range, StringRef text) {
650 void TransformActions::replaceStmt(Stmt *S, StringRef text) {
654 void TransformActions::replaceText(SourceLocation loc, StringRef text,
655 StringRef replacementText) {
675 void TransformActions::reportError(StringRef error, SourceLocation loc,
695 void TransformActions::reportWarning(StringRef warning, SourceLocation loc,
714 void TransformActions::reportNote(StringRef note, SourceLocation loc,