Searched refs:selectInsertedText (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | InsertTextCommand.h | 40 …<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);
|
D | InsertTextCommand.cpp | 40 …nd::InsertTextCommand(Document& document, const String& text, bool selectInsertedText, RebalanceTy… in InsertTextCommand() argument 43 , m_selectInsertedText(selectInsertedText) in InsertTextCommand() 81 bool InsertTextCommand::performTrivialReplace(const String& text, bool selectInsertedText) in performTrivialReplace() argument 95 if (!selectInsertedText) in performTrivialReplace() 101 bool InsertTextCommand::performOverwrite(const String& text, bool selectInsertedText) in performOverwrite() argument 116 if (!selectInsertedText) in performOverwrite()
|
D | TypingCommand.cpp | 54 …TypingCommandLineOperation(TypingCommand* typingCommand, bool selectInsertedText, const String& te… in TypingCommandLineOperation() argument 56 , m_selectInsertedText(selectInsertedText) in TypingCommandLineOperation() 334 void TypingCommand::insertText(const String &text, bool selectInsertedText) in insertText() argument 341 TypingCommandLineOperation operation(this, selectInsertedText, text); in insertText() 345 void TypingCommand::insertTextRunWithoutNewlines(const String &text, bool selectInsertedText) in insertTextRunWithoutNewlines() argument 347 …RawPtr<InsertTextCommand> command = InsertTextCommand::create(document(), text, selectInsertedText, in insertTextRunWithoutNewlines()
|
D | TypingCommand.h | 70 void insertText(const String &text, bool selectInsertedText); 71 void insertTextRunWithoutNewlines(const String &text, bool selectInsertedText);
|
D | Editor.h | 163 …bool insertTextWithoutSendingTextEvent(const String&, bool selectInsertedText, TextEvent* triggeri…
|
D | Editor.cpp | 757 bool Editor::insertTextWithoutSendingTextEvent(const String& text, bool selectInsertedText, TextEve… in insertTextWithoutSendingTextEvent() argument 778 if (selectInsertedText) in insertTextWithoutSendingTextEvent()
|