Searched defs:InsertTextCommand (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/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 "core/editing/InsertTextCommand.h"
39 InsertTextCommand::InsertTextCommand(Document& document, const String& text, bool selectInsertedText, RebalanceType rebalanceType) function in class:WebCore::InsertTextCommand
47 InsertTextCommand::InsertTextCommand(Document& document, const String& text, PassRefPtr<TextInsertionMarkerSupplier> markerSupplier) function in class:WebCore::InsertTextCommand
56 Position InsertTextCommand::positionInsideTextNode(const Position& p)
76 void InsertTextCommand::setEndingSelectionWithoutValidation(const Position& startPosition, const Position& endPosition)
89 bool InsertTextCommand::performTrivialReplace(const String& text, bool selectInsertedText)
109 bool InsertTextCommand::performOverwrite(const String& text, bool selectInsertedText)
130 void InsertTextCommand
[all...]

Completed in 51 milliseconds