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 | 39 …nd::InsertTextCommand(Document& document, const String& text, bool selectInsertedText, RebalanceTy… in InsertTextCommand() argument 42 , m_selectInsertedText(selectInsertedText) in InsertTextCommand() 80 bool InsertTextCommand::performTrivialReplace(const String& text, bool selectInsertedText) in performTrivialReplace() argument 94 if (!selectInsertedText) in performTrivialReplace() 100 bool InsertTextCommand::performOverwrite(const String& text, bool selectInsertedText) in performOverwrite() argument 115 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() 328 void TypingCommand::insertText(const String &text, bool selectInsertedText) in insertText() argument 335 TypingCommandLineOperation operation(this, selectInsertedText, text); in insertText() 339 void TypingCommand::insertTextRunWithoutNewlines(const String &text, bool selectInsertedText) in insertTextRunWithoutNewlines() argument 341 …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 | 164 …bool insertTextWithoutSendingTextEvent(const String&, bool selectInsertedText, TextEvent* triggeri…
|
D | Editor.cpp | 780 bool Editor::insertTextWithoutSendingTextEvent(const String& text, bool selectInsertedText, TextEve… in insertTextWithoutSendingTextEvent() argument 801 if (selectInsertedText) in insertTextWithoutSendingTextEvent()
|