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

  /external/webkit/Source/WebCore/editing/
TypingCommand.h 52 SelectInsertedText = 1 << 0,
74 void insertText(const String &text, bool selectInsertedText);
75 void insertTextRunWithoutNewlines(const String &text, bool selectInsertedText);
TypingCommand.cpp 68 , m_selectInsertedText(options & SelectInsertedText)
202 lastTypingCommand->insertText(newText, options & SelectInsertedText);
371 void TypingCommand::insertText(const String &text, bool selectInsertedText)
373 // FIXME: Need to implement selectInsertedText for cases where more than one insert is involved.
387 insertTextRunWithoutNewlines(text, selectInsertedText);
391 insertTextRunWithoutNewlines(text.substring(offset, length - offset), selectInsertedText);
395 void TypingCommand::insertTextRunWithoutNewlines(const String &text, bool selectInsertedText)
411 command->input(text, selectInsertedText,
Editor.cpp     [all...]

Completed in 627 milliseconds