HomeSort by relevance Sort by last modified time
    Searched defs:InsertTextCommand (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
InsertTextCommand.h 44 class InsertTextCommand : public CompositeEditCommand {
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>);
InsertTextCommand.cpp 27 #include "core/editing/InsertTextCommand.h"
39 InsertTextCommand::InsertTextCommand(Document* document, const String& text, bool selectInsertedText, RebalanceType rebalanceType)
47 InsertTextCommand::InsertTextCommand(Document* document, const String& text, PassRefPtr<TextInsertionMarkerSupplier> markerSupplier)
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::doApply(
    [all...]

Completed in 32 milliseconds