/external/clang/include/clang/Rewrite/Core/ |
H A D | RewriteBuffer.h | 61 /// InsertText - Insert some text at the specified point, where the offset in 65 void InsertText(unsigned OrigOffset, StringRef Str, 72 /// method is the same as InsertText with "InsertAfter == false". 74 InsertText(OrigOffset, Str, false); 81 InsertText(OrigOffset, Str);
|
H A D | Rewriter.h | 88 /// InsertText - Insert the specified string at the specified location in the 94 bool InsertText(SourceLocation Loc, StringRef Str, 101 /// at the some point (the default behavior for InsertText). 103 return InsertText(Loc, Str); 110 /// InsertText - Insert the specified string at the specified location in the 116 return InsertText(Loc, Str, false);
|
/external/clang/lib/Rewrite/ |
H A D | Rewriter.cpp | 92 void RewriteBuffer::InsertText(unsigned OrigOffset, StringRef Str, function in class:RewriteBuffer 236 /// InsertText - Insert the specified string at the specified location in the 238 bool Rewriter::InsertText(SourceLocation Loc, StringRef Str, function in class:Rewriter 275 getEditBuffer(FID).InsertText(StartOffs, Str, InsertAfter); 286 getEditBuffer(FID).InsertText(StartOffs, Str, /*InsertAfter*/true); 389 RB.InsertText(offs, indent, /*InsertAfter=*/false);
|
/external/clang/lib/Frontend/Rewrite/ |
H A D | RewriteObjC.cpp | 239 void InsertText(SourceLocation Loc, StringRef Str, function in class:__anon1712::RewriteObjC 242 if (!Rewrite.InsertText(Loc, Str, InsertAfter) || 772 InsertText(startLoc, "// "); 843 InsertText(onePastSemiLoc, Getr); 885 InsertText(onePastSemiLoc, Setr); 952 InsertText(LocStart, "#if 0\n"); 955 InsertText(LocStart, "// "); 1167 InsertText(IMD ? IMD->getLocStart() : CID->getLocStart(), "// "); 1193 InsertText(IMD ? IMD->getLocEnd() : CID->getLocEnd(), "// "); 1615 InsertText(endBodyLo [all...] |
H A D | RewriteModernObjC.cpp | 288 void InsertText(SourceLocation Loc, StringRef Str, function in class:__anon1709::RewriteModernObjC 291 if (!Rewrite.InsertText(Loc, Str, InsertAfter) || 924 InsertText(startLoc, "// "); 996 InsertText(startGetterSetterLoc, Getr); 1039 InsertText(startGetterSetterLoc, Setr); 1113 InsertText(LocStart, "#if 0\n"); 1116 InsertText(LocStart, "// "); 1341 InsertText(IMD->getLocStart(), "// "); 1345 InsertText(CID->getLocStart(), "// "); 1371 InsertText(IM [all...] |
H A D | FixItRewriter.cpp | 65 Rewrite.InsertText(loc, text);
|
/external/pdfium/fpdfsdk/pwl/ |
H A D | cpwl_edit_impl.h | 291 bool InsertText(const WideString& sText, int32_t charset); 342 bool InsertText(const WideString& sText,
|
H A D | cpwl_edit_ctrl.cpp | 66 m_pEdit->InsertText(text, FX_CHARSET_Default);
|
H A D | cpwl_edit_impl.cpp | 394 m_pEdit->InsertText(m_swText, FX_CHARSET_Default, false, true); 416 m_pEdit->InsertText(m_swText, m_nCharset, false, true); 812 bool CPWL_EditImpl::InsertText(const WideString& sText, int32_t charset) { function in class:CPWL_EditImpl 813 return InsertText(sText, charset, true, true); 1673 bool CPWL_EditImpl::InsertText(const WideString& sText, function in class:CPWL_EditImpl
|
H A D | cpwl_edit.cpp | 455 m_pEdit->InsertText(wsText, FX_CHARSET_Default);
|
/external/clang/lib/ARCMigrate/ |
H A D | ARCMT.cpp | 480 bool err = rewriter.InsertText(loc, text, /*InsertAfter=*/true,
|
H A D | ObjCMT.cpp | 1759 Rewrite.InsertText(loc, text);
|