Searched refs:selectInsertedText (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertTextCommand.h40 static PassRefPtrWillBeRawPtr<InsertTextCommand> create(Document& document, const String& text, bool selectInsertedText = false,
43 return adoptRefWillBeNoop(new InsertTextCommand(document, text, selectInsertedText, rebalanceType));
47 InsertTextCommand(Document&, const String& text, bool selectInsertedText, RebalanceType);
54 bool performTrivialReplace(const String&, bool selectInsertedText);
55 bool performOverwrite(const String&, bool selectInsertedText);
H A DInsertTextCommand.cpp40 InsertTextCommand::InsertTextCommand(Document& document, const String& text, bool selectInsertedText, RebalanceType rebalanceType) argument
43 , m_selectInsertedText(selectInsertedText)
81 bool InsertTextCommand::performTrivialReplace(const String& text, bool selectInsertedText) argument
95 if (!selectInsertedText)
101 bool InsertTextCommand::performOverwrite(const String& text, bool selectInsertedText) argument
116 if (!selectInsertedText)
H A DTypingCommand.h70 void insertText(const String &text, bool selectInsertedText);
71 void insertTextRunWithoutNewlines(const String &text, bool selectInsertedText);
H A DTypingCommand.cpp54 TypingCommandLineOperation(TypingCommand* typingCommand, bool selectInsertedText, const String& text) argument
56 , m_selectInsertedText(selectInsertedText)
334 void TypingCommand::insertText(const String &text, bool selectInsertedText) argument
336 // FIXME: Need to implement selectInsertedText for cases where more than one insert is involved.
341 TypingCommandLineOperation operation(this, selectInsertedText, text);
345 void TypingCommand::insertTextRunWithoutNewlines(const String &text, bool selectInsertedText) argument
347 RefPtrWillBeRawPtr<InsertTextCommand> command = InsertTextCommand::create(document(), text, selectInsertedText,
H A DEditor.h163 bool insertTextWithoutSendingTextEvent(const String&, bool selectInsertedText, TextEvent* triggeringEvent);
H A DEditor.cpp757 bool Editor::insertTextWithoutSendingTextEvent(const String& text, bool selectInsertedText, TextEvent* triggeringEvent) argument
778 if (selectInsertedText)

Completed in 970 milliseconds