Home | History | Annotate | Download | only in ARCMigrate

Lines Matching refs:StringRef

48     StringRef Text1, Text2;
106 typedef SmallVector<StringRef, 2> TextsVec;
134 void insert(SourceLocation loc, StringRef text);
135 void insertAfterToken(SourceLocation loc, StringRef text);
138 void replace(SourceRange range, StringRef text);
140 void replaceStmt(Stmt *S, StringRef text);
141 void replaceText(SourceLocation loc, StringRef text,
142 StringRef replacementText);
155 bool canReplaceText(SourceLocation loc, StringRef text);
157 void commitInsert(SourceLocation loc, StringRef text);
158 void commitInsertAfterToken(SourceLocation loc, StringRef text);
162 void commitReplaceText(SourceLocation loc, StringRef text,
163 StringRef replacementText);
168 void addInsertion(SourceLocation loc, StringRef text);
173 StringRef getUniqueText(StringRef text);
285 void TransformActionsImpl::insert(SourceLocation loc, StringRef text) {
295 void TransformActionsImpl::insertAfterToken(SourceLocation loc, StringRef text) {
321 void TransformActionsImpl::replace(SourceRange range, StringRef text) {
338 void TransformActionsImpl::replaceText(SourceLocation loc, StringRef text,
339 StringRef replacementText) {
350 void TransformActionsImpl::replaceStmt(Stmt *S, StringRef text) {
417 bool TransformActionsImpl::canReplaceText(SourceLocation loc, StringRef text) {
429 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
436 void TransformActionsImpl::commitInsert(SourceLocation loc, StringRef text) {
441 StringRef text) {
480 StringRef text,
481 StringRef replacementText) {
505 void TransformActionsImpl::addInsertion(SourceLocation loc, StringRef text) {
583 StringRef TransformActionsImpl::getUniqueText(StringRef text) {
625 void TransformActions::insert(SourceLocation loc, StringRef text) {
630 StringRef text) {
642 void TransformActions::replace(SourceRange range, StringRef text) {
651 void TransformActions::replaceStmt(Stmt *S, StringRef text) {
655 void TransformActions::replaceText(SourceLocation loc, StringRef text,
656 StringRef replacementText) {
683 void TransformActions::reportError(StringRef message, SourceLocation loc,
688 void TransformActions::reportWarning(StringRef message, SourceLocation loc,
693 void TransformActions::reportNote(StringRef message, SourceLocation loc,