Searched refs:InsertTextCommand (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/editing/
H A DInsertTextCommand.h44 class InsertTextCommand : public CompositeEditCommand { class in namespace:WebCore
51 static PassRefPtr<InsertTextCommand> create(Document& document, const String& text, bool selectInsertedText = false,
54 return adoptRef(new InsertTextCommand(document, text, selectInsertedText, rebalanceType));
57 static PassRefPtr<InsertTextCommand> createWithMarkerSupplier(Document& document, const String& text, PassRefPtr<TextInsertionMarkerSupplier> markerSupplier)
59 return adoptRef(new InsertTextCommand(document, text, markerSupplier));
64 InsertTextCommand(Document&, const String& text, bool selectInsertedText, RebalanceType);
65 InsertTextCommand(Document&, const String& text, PassRefPtr<TextInsertionMarkerSupplier>);
H A DInsertTextCommand.cpp27 #include "InsertTextCommand.h"
40 InsertTextCommand::InsertTextCommand(Document& document, const String& text, bool selectInsertedText, RebalanceType rebalanceType) function in class:WebCore::InsertTextCommand
48 InsertTextCommand::InsertTextCommand(Document& document, const String& text, PassRefPtr<TextInsertionMarkerSupplier> markerSupplier) function in class:WebCore::InsertTextCommand
57 Position InsertTextCommand::positionInsideTextNode(const Position& p)
77 void InsertTextCommand::setEndingSelectionWithoutValidation(const Position& startPosition, const Position& endPosition)
90 bool InsertTextCommand::performTrivialReplace(const String& text, bool selectInsertedText)
110 bool InsertTextCommand::performOverwrite(const String& text, bool selectInsertedText)
131 void InsertTextCommand
[all...]
H A DDictationCommand.cpp34 #include "InsertTextCommand.h"
118 RefPtr<InsertTextCommand> command = InsertTextCommand::createWithMarkerSupplier(document(), m_textToInsert.substring(lineStart, lineLength), DictationMarkerSupplier::create(alternativesInLine));
H A DEditingAllInOne.cpp54 #include <InsertTextCommand.cpp>
H A DTypingCommand.cpp39 #include "InsertTextCommand.h"
376 RefPtr<InsertTextCommand> command = InsertTextCommand::create(document(), text, selectInsertedText,
377 m_compositionType == TextCompositionNone ? InsertTextCommand::RebalanceLeadingAndTrailingWhitespaces : InsertTextCommand::RebalanceAllWhitespaces);
H A DCompositeEditCommand.cpp48 #include "InsertTextCommand.h"
519 RefPtr<InsertTextCommand> command = InsertTextCommand::create(document(), text.substring(offset, substringLength), false);

Completed in 186 milliseconds