Home
last modified time | relevance | path

Searched refs:InsertText (Results 1 – 19 of 19) sorted by relevance

/external/clang/include/clang/Rewrite/Core/
DRewriter.h69 void InsertText(unsigned OrigOffset, StringRef Str,
78 InsertText(OrigOffset, Str, false); in InsertTextBefore()
85 InsertText(OrigOffset, Str); in InsertTextAfter()
191 bool InsertText(SourceLocation Loc, StringRef Str,
200 return InsertText(Loc, Str); in InsertTextAfter()
213 return InsertText(Loc, Str, false); in InsertTextBefore()
/external/clang/lib/Rewrite/Core/
DRewriter.cpp92 void RewriteBuffer::InsertText(unsigned OrigOffset, StringRef Str, in InsertText() function in RewriteBuffer
238 bool Rewriter::InsertText(SourceLocation Loc, StringRef Str, in InsertText() function in Rewriter
275 getEditBuffer(FID).InsertText(StartOffs, Str, InsertAfter); in InsertText()
286 getEditBuffer(FID).InsertText(StartOffs, Str, /*InsertAfter*/true); in InsertTextAfterToken()
415 RB.InsertText(offs, indent, /*InsertAfter=*/false); in IncreaseIndentation()
/external/webkit/Source/WebCore/editing/
DTypingCommand.cpp206 …RefPtr<TypingCommand> cmd = TypingCommand::create(document, InsertText, newText, options, composit… in insertText()
309 case InsertText: in doApply()
347 …if (range && (commandType == TypingCommand::InsertText || commandType == TypingCommand::InsertLine… in markMisspellingsAfterTyping()
350 } else if (commandType == TypingCommand::InsertText) in markMisspellingsAfterTyping()
413 typingAddedToOpenCommand(InsertText); in insertTextRunWithoutNewlines()
665 case InsertText: in updatePreservesTypingStyle()
DTypingCommand.h39 InsertText, enumerator
/external/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp246 void InsertText(SourceLocation Loc, StringRef Str, in InsertText() function in __anon888766420111::RewriteObjC
249 if (!Rewrite.InsertText(Loc, Str, InsertAfter) || in InsertText()
774 InsertText(startLoc, "// "); in RewritePropertyImplDecl()
844 InsertText(onePastSemiLoc, Getr); in RewritePropertyImplDecl()
886 InsertText(onePastSemiLoc, Setr); in RewritePropertyImplDecl()
953 InsertText(LocStart, "#if 0\n"); in RewriteMethodDeclaration()
956 InsertText(LocStart, "// "); in RewriteMethodDeclaration()
1180 InsertText(IMD ? IMD->getLocStart() : CID->getLocStart(), "// "); in RewriteImplementationDecl()
1218 InsertText(IMD ? IMD->getLocEnd() : CID->getLocEnd(), "// "); in RewriteImplementationDecl()
1645 InsertText(endBodyLoc, buf); in RewriteObjCForCollectionStmt()
[all …]
DRewriteModernObjC.cpp283 void InsertText(SourceLocation Loc, StringRef Str, in InsertText() function in __anona68448870111::RewriteModernObjC
286 if (!Rewrite.InsertText(Loc, Str, InsertAfter) || in InsertText()
926 InsertText(startLoc, "// "); in RewritePropertyImplDecl()
997 InsertText(startGetterSetterLoc, Getr); in RewritePropertyImplDecl()
1040 InsertText(startGetterSetterLoc, Setr); in RewritePropertyImplDecl()
1111 InsertText(LocStart, "#if 0\n"); in RewriteMethodDeclaration()
1114 InsertText(LocStart, "// "); in RewriteMethodDeclaration()
1366 InsertText(IMD->getLocStart(), "// "); in RewriteImplementationDecl()
1370 InsertText(CID->getLocStart(), "// "); in RewriteImplementationDecl()
1408 InsertText(IMD ? IMD->getLocEnd() : CID->getLocEnd(), "// "); in RewriteImplementationDecl()
[all …]
DFixItRewriter.cpp66 Rewrite.InsertText(loc, text); in insert()
/external/clang/lib/ARCMigrate/
DObjCMT.cpp196 Rewrite.InsertText(loc, text); in insert()
DARCMT.cpp523 bool err = rewriter.InsertText(loc, text, /*InsertAfter=*/true, in insert()
/external/webkit/Source/WebKit2/UIProcess/mac/
DWebPageProxyMac.mm157 …)->sendSync(Messages::WebPage::InsertText(text, replacementRangeStart, replacementRangeEnd), Messa…
/external/chromium/chrome/browser/renderer_host/
Drender_widget_host_view_views.h112 virtual void InsertText(const string16& text) OVERRIDE;
Drender_widget_host_view_views.cc679 void RenderWidgetHostViewViews::InsertText(const string16& text) { in InsertText() function in RenderWidgetHostViewViews
/external/chromium/chrome/browser/autocomplete/
Dautocomplete_edit_view_win.h161 void InsertText(int position, const string16& text);
Dautocomplete_edit_view_win.cc797 void AutocompleteEditViewWin::InsertText(int position, in InsertText() function in AutocompleteEditViewWin
991 InsertText(string_drop_position, text); in OnPerformDropImpl()
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DWebPage.messages.in190InsertText(WTF::String text, uint64_t replacementRangeStart, uint64_t replacementRangeEnd) -> (boo…
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp4998 static void InsertText(JNIEnv* env, jobject obj, jint nativeClass, in InsertText() function
5150 (void*) InsertText },
/external/webkit/Source/WebKit/mac/
DChangeLog-2010-01-298908 Add new InsertText function.
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1064677 * editing/EditorCommand.cpp: (WebCore::CommandEntry::): Mark InsertText as a text insertion
DChangeLog-2010-12-0644521 when the editing command is InsertText.