HomeSort by relevance Sort by last modified time
    Searched defs:ReplaceText (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 88 /// ReplaceText - This method replaces a range of characters in the input
91 void ReplaceText(unsigned OrigOffset, unsigned OrigLength,
231 /// ReplaceText - This method replaces a range of characters in the input
234 bool ReplaceText(SourceLocation Start, unsigned OrigLength,
237 /// ReplaceText - This method replaces a range of characters in the input
240 bool ReplaceText(SourceRange range, StringRef NewStr) {
241 return ReplaceText(range.getBegin(), getRangeSize(range), NewStr);
244 /// ReplaceText - This method replaces a range of characters in the input
247 bool ReplaceText(SourceRange range, SourceRange replacementRange);
  /external/clang/lib/Rewrite/Core/
Rewriter.cpp 105 /// ReplaceText - This method replaces a range of characters in the input
108 void RewriteBuffer::ReplaceText(unsigned OrigOffset, unsigned OrigLength,
300 /// ReplaceText - This method replaces a range of characters in the input
303 bool Rewriter::ReplaceText(SourceLocation Start, unsigned OrigLength,
309 getEditBuffer(StartFileID).ReplaceText(StartOffs, OrigLength, NewStr);
313 bool Rewriter::ReplaceText(SourceRange range, SourceRange replacementRange) {
324 return ReplaceText(start, origLength, MB.substr(newOffs, newLength));
342 ReplaceText(From->getLocStart(), Size, Str);
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 236 if (!Rewrite.ReplaceText(SrcRange.getBegin(), Size, Str)) {
256 void ReplaceText(SourceLocation Start, unsigned OrigLength,
259 if (!Rewrite.ReplaceText(Start, OrigLength, Str) ||
751 ReplaceText(ImportLoc, ImportLen, "include");
    [all...]
RewriteModernObjC.cpp 273 if (!Rewrite.ReplaceText(SrcRange.getBegin(), Size, Str)) {
293 void ReplaceText(SourceLocation Start, unsigned OrigLength,
296 if (!Rewrite.ReplaceText(Start, OrigLength, Str) ||
    [all...]

Completed in 103 milliseconds