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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.cpp 27 #include "core/editing/TypingCommand.h"
54 TypingCommandLineOperation(TypingCommand* typingCommand, bool selectInsertedText, const String& text)
55 : m_typingCommand(typingCommand)
73 TypingCommand* m_typingCommand;
78 TypingCommand::TypingCommand(Document& document, ETypingCommand commandType, const String &textToInsert, Options options, TextGranularity granularity, TextCompositionType compositionType)
95 void TypingCommand::deleteSelection(Document& document, Options options)
103 if (RefPtrWillBeRawPtr<TypingCommand> lastTypingCommand = lastTypingCommandIfStillOpenForTyping(frame)) {
109 TypingCommand::create(document, DeleteSelection, "", options)->apply()
    [all...]
TypingCommand.h 33 class TypingCommand FINAL : public TextInsertionBaseCommand {
81 static PassRefPtrWillBeRawPtr<TypingCommand> create(Document& document, ETypingCommand command, const String& text = "", Options options = 0, TextGranularity granularity = CharacterGranularity)
83 return adoptRefWillBeNoop(new TypingCommand(document, command, text, options, granularity, TextCompositionNone));
86 static PassRefPtrWillBeRawPtr<TypingCommand> create(Document& document, ETypingCommand command, const String& text, Options options, TextCompositionType compositionType)
88 return adoptRefWillBeNoop(new TypingCommand(document, command, text, options, CharacterGranularity, compositionType));
91 TypingCommand(Document&, ETypingCommand, const String& text, Options, TextGranularity, TextCompositionType);
97 static PassRefPtrWillBeRawPtr<TypingCommand> lastTypingCommandIfStillOpenForTyping(LocalFrame*);
107 static void updateSelectionIfDifferentFromCurrentSelection(TypingCommand*, LocalFrame*);
114 void updateCommandTypeOfOpenCommand(ETypingCommand typingCommand) { m_commandType = typingCommand; }
    [all...]
InsertTextCommand.h 58 friend class TypingCommand;
InputMethodController.cpp 36 #include "core/editing/TypingCommand.h"
211 TypingCommand::deleteSelection(*m_frame.document(), 0);
221 TypingCommand::closeTyping(&m_frame);
279 TypingCommand::deleteSelection(*m_frame.document(), TypingCommand::PreventSpellChecking);
287 TypingCommand::insertText(*m_frame.document(), text, TypingCommand::SelectInsertedText | TypingCommand::PreventSpellChecking, TypingCommand::TextCompositionUpdate);
424 TypingCommand::deleteSelection(*m_frame.document())
    [all...]
Editor.cpp 56 #include "core/editing/TypingCommand.h"
297 TypingCommand::deleteKeyPressed(*m_frame.document(), canSmartCopyOrDelete() ? TypingCommand::SmartDelete : 0, granularity);
306 TypingCommand::Options options = 0;
308 options |= TypingCommand::SmartDelete;
310 options |= TypingCommand::KillRing;
315 TypingCommand::forwardDeleteKeyPressed(*m_frame.document(), options, granularity);
320 TypingCommand::deleteKeyPressed(*m_frame.document(), options, granularity);
800 TypingCommand::Options options = 0;
802 options |= TypingCommand::SelectInsertedText
    [all...]
EditorCommand.cpp 46 #include "core/editing/TypingCommand.h"
326 TypingCommand::deleteKeyPressed(*frame.document(), frame.selection().granularity() == WordGranularity ? TypingCommand::SmartDelete : 0);
463 TypingCommand::forwardDeleteKeyPressed(*frame.document());
523 TypingCommand::insertLineBreak(*frame.document(), 0);
539 TypingCommand::insertParagraphSeparatorInQuotedContent(*frame.document());
553 TypingCommand::insertParagraphSeparator(*frame.document(), 0);
565 TypingCommand::insertText(*frame.document(), value, 0);
    [all...]
FrameSelection.cpp 45 #include "core/editing/TypingCommand.h"
253 TypingCommand::closeTyping(m_frame);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 304 third_party/WebKit/Source/core/editing/TypingCommand.cpp \
    [all...]
webcore_remaining.target.darwin-arm64.mk 304 third_party/WebKit/Source/core/editing/TypingCommand.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 304 third_party/WebKit/Source/core/editing/TypingCommand.cpp \
    [all...]
webcore_remaining.target.darwin-x86.mk 304 third_party/WebKit/Source/core/editing/TypingCommand.cpp \
    [all...]
webcore_remaining.target.darwin-x86_64.mk 304 third_party/WebKit/Source/core/editing/TypingCommand.cpp \
    [all...]
webcore_remaining.target.linux-arm.mk 304 third_party/WebKit/Source/core/editing/TypingCommand.cpp \
    [all...]
webcore_remaining.target.linux-arm64.mk 304 third_party/WebKit/Source/core/editing/TypingCommand.cpp \
    [all...]
webcore_remaining.target.linux-mips.mk 304 third_party/WebKit/Source/core/editing/TypingCommand.cpp \
    [all...]
webcore_remaining.target.linux-x86.mk 304 third_party/WebKit/Source/core/editing/TypingCommand.cpp \
    [all...]
webcore_remaining.target.linux-x86_64.mk 304 third_party/WebKit/Source/core/editing/TypingCommand.cpp \
    [all...]

Completed in 474 milliseconds