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

  /external/webkit/Source/WebCore/editing/
TypingCommand.cpp 27 #include "TypingCommand.h"
63 TypingCommand::TypingCommand(Document *document, ETypingCommand commandType, const String &textToInsert, Options options, TextGranularity granularity, TextCompositionType compositionType)
80 void TypingCommand::deleteSelection(Document* document, Options options)
92 TypingCommand* lastTypingCommand = static_cast<TypingCommand*>(lastEditCommand);
98 TypingCommand::create(document, DeleteSelection, "", options)->apply();
101 void TypingCommand::deleteKeyPressed(Document *document, Options options, TextGranularity granularity)
110 TypingCommand* lastTypingCommand = static_cast<TypingCommand*>(lastEditCommand)
    [all...]
TypingCommand.h 33 class TypingCommand : public CompositeEditCommand {
85 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text = "", Options options = 0, TextGranularity granularity = CharacterGranularity)
87 return adoptRef(new TypingCommand(document, command, text, options, granularity, TextCompositionNone));
90 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text, Options options, TextCompositionType compositionType)
92 return adoptRef(new TypingCommand(document, command, text, options, CharacterGranularity, compositionType));
95 TypingCommand(Document*, ETypingCommand, const String& text, Options, TextGranularity, TextCompositionType);
108 static void updateSelectionIfDifferentFromCurrentSelection(TypingCommand*, Frame*);
InsertTextCommand.h 61 friend class TypingCommand;
EditingAllInOne.cpp 73 #include <TypingCommand.cpp>
Editor.cpp 81 #include "TypingCommand.h"
298 TypingCommand::deleteKeyPressed(m_frame->document(), canSmartCopyOrDelete() ? TypingCommand::SmartDelete : 0, granularity);
307 TypingCommand::Options options = 0;
309 options |= TypingCommand::SmartDelete;
311 options |= TypingCommand::KillRing;
315 TypingCommand::forwardDeleteKeyPressed(m_frame->document(), options, granularity);
319 TypingCommand::deleteKeyPressed(m_frame->document(), options, granularity);
    [all...]
EditorCommand.cpp 57 #include "TypingCommand.h"
321 TypingCommand::deleteKeyPressed(frame->document(), frame->selection()->granularity() == WordGranularity ? TypingCommand::SmartDelete : 0);
458 TypingCommand::forwardDeleteKeyPressed(frame->document());
513 TypingCommand::insertLineBreak(frame->document(), 0);
528 TypingCommand::insertParagraphSeparatorInQuotedContent(frame->document());
540 TypingCommand::insertParagraphSeparator(frame->document(), 0);
551 TypingCommand::insertText(frame->document(), value, 0);
    [all...]
SelectionController.cpp 59 #include "TypingCommand.h"
167 TypingCommand::closeTyping(m_frame->editor()->lastEditCommand());
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebFrame.mm 91 #import <WebCore/TypingCommand.h>
796 TypingCommand::insertParagraphSeparatorInQuotedContent(_private->coreFrame->document());
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 265 editing/TypingCommand.cpp \
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp 116 #include "TypingCommand.h"
    [all...]
  /external/webkit/Source/WebKit/win/
WebView.cpp 131 #include <WebCore/TypingCommand.h>
    [all...]

Completed in 259 milliseconds