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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.h 52 SelectInsertedText = 1 << 0,
70 void insertText(const String &text, bool selectInsertedText);
71 void insertTextRunWithoutNewlines(const String &text, bool selectInsertedText);
TypingCommand.cpp 54 TypingCommandLineOperation(TypingCommand* typingCommand, bool selectInsertedText, const String& text)
56 , m_selectInsertedText(selectInsertedText)
83 , m_selectInsertedText(options & SelectInsertedText)
191 lastTypingCommand->insertText(newText, options & SelectInsertedText);
334 void TypingCommand::insertText(const String &text, bool selectInsertedText)
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)
347 RefPtrWillBeRawPtr<InsertTextCommand> command = InsertTextCommand::create(document(), text, selectInsertedText,
InputMethodController.cpp 287 TypingCommand::insertText(*frame().document(), text, TypingCommand::SelectInsertedText | TypingCommand::PreventSpellChecking, TypingCommand::TextCompositionUpdate);
Editor.cpp 757 bool Editor::insertTextWithoutSendingTextEvent(const String& text, bool selectInsertedText, TextEvent* triggeringEvent)
778 if (selectInsertedText)
779 options |= TypingCommand::SelectInsertedText;
    [all...]

Completed in 67 milliseconds