HomeSort by relevance Sort by last modified time
    Searched refs:InsertText (Results 1 - 15 of 15) sorted by null

  /external/clang/include/clang/Rewrite/
Rewriter.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);
181 /// InsertText - Insert the specified string at the specified location in the
187 bool InsertText(SourceLocation Loc, StringRef Str,
194 /// at the some point (the default behavior for InsertText).
196 return InsertText(Loc, Str);
203 /// InsertText - Insert the specified string at the specified location in th
    [all...]
  /external/clang/lib/Rewrite/
Rewriter.cpp 87 void RewriteBuffer::InsertText(unsigned OrigOffset, StringRef Str,
231 /// InsertText - Insert the specified string at the specified location in the
233 bool Rewriter::InsertText(SourceLocation Loc, StringRef Str,
270 getEditBuffer(FID).InsertText(StartOffs, Str, InsertAfter);
281 getEditBuffer(FID).InsertText(StartOffs, Str, /*InsertAfter*/true);
410 RB.InsertText(offs, indent, /*InsertAfter=*/false);
RewriteObjC.cpp 244 void InsertText(SourceLocation Loc, StringRef Str,
247 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
768 InsertText(startLoc, "// ");
    [all...]
RewriteModernObjC.cpp 258 void InsertText(SourceLocation Loc, StringRef Str,
261 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
786 InsertText(startLoc, "// ");
    [all...]
FixItRewriter.cpp 66 Rewrite.InsertText(loc, text);
  /external/webkit/Source/WebCore/editing/
TypingCommand.cpp 151 void TypingCommand::insertText(Document* document, const String& text, Options options, TextCompositionType composition)
161 insertText(document, text, frame->selection()->selection(), options, composition);
165 void TypingCommand::insertText(Document* document, const String& text, const VisibleSelection& selectionForInsertion, Options options, TextCompositionType compositionType)
202 lastTypingCommand->insertText(newText, options & SelectInsertedText);
206 RefPtr<TypingCommand> cmd = TypingCommand::create(document, InsertText, newText, options, compositionType);
309 case InsertText:
310 insertText(m_textToInsert, m_selectInsertedText);
347 if (range && (commandType == TypingCommand::InsertText || commandType == TypingCommand::InsertLineBreak || commandType == TypingCommand::InsertParagraphSeparator || commandType == TypingCommand::InsertParagraphSeparatorInQuotedContent))
350 } else if (commandType == TypingCommand::InsertText)
371 void TypingCommand::insertText(const String &text, bool selectInsertedText
    [all...]
TypingCommand.h 39 InsertText,
63 static void insertText(Document*, const String&, Options, TextCompositionType = TextCompositionNone);
64 static void insertText(Document*, const String&, const VisibleSelection&, Options, TextCompositionType = TextCompositionNone);
74 void insertText(const String &text, bool selectInsertedText);
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPageProxyMac.mm 154 bool WebPageProxy::insertText(const String& text, uint64_t replacementRangeStart, uint64_t replacementRangeEnd)
157 process()->sendSync(Messages::WebPage::InsertText(text, replacementRangeStart, replacementRangeEnd), Messages::WebPage::InsertText::Reply(handled, m_editorState), m_pageID);
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_views.h 112 virtual void InsertText(const string16& text) OVERRIDE;
render_widget_host_view_views.cc 679 void RenderWidgetHostViewViews::InsertText(const string16& text) {
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 173 Rewrite.InsertText(loc, text);
ARCMT.cpp 499 bool err = rewriter.InsertText(loc, text, /*InsertAfter=*/true,
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_win.h 161 void InsertText(int position, const string16& text);
autocomplete_edit_view_win.cc 797 void AutocompleteEditViewWin::InsertText(int position,
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 302 milliseconds