Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/editing/
DInsertTextCommand.h40 …<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);
DInsertTextCommand.cpp40 …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()
DTypingCommand.cpp54 …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()
DTypingCommand.h70 void insertText(const String &text, bool selectInsertedText);
71 void insertTextRunWithoutNewlines(const String &text, bool selectInsertedText);
DEditor.h163 …bool insertTextWithoutSendingTextEvent(const String&, bool selectInsertedText, TextEvent* triggeri…
DEditor.cpp757 bool Editor::insertTextWithoutSendingTextEvent(const String& text, bool selectInsertedText, TextEve… in insertTextWithoutSendingTextEvent() argument
778 if (selectInsertedText) in insertTextWithoutSendingTextEvent()