OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SelectInsertedText
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.h
52
SelectInsertedText
= 1 << 0,
70
void insertText(const String &text, bool
selectInsertedText
);
71
void insertTextRunWithoutNewlines(const String &text, bool
selectInsertedText
);
TypingCommand.cpp
54
TypingCommandLineOperation(TypingCommand* typingCommand, bool
selectInsertedText
, const String& text)
56
, m_selectInsertedText(
selectInsertedText
)
83
, m_selectInsertedText(options &
SelectInsertedText
)
191
lastTypingCommand->insertText(newText, options &
SelectInsertedText
);
328
void TypingCommand::insertText(const String &text, bool
selectInsertedText
)
330
// FIXME: Need to implement
selectInsertedText
for cases where more than one insert is involved.
335
TypingCommandLineOperation operation(this,
selectInsertedText
, text);
339
void TypingCommand::insertTextRunWithoutNewlines(const String &text, bool
selectInsertedText
)
341
RefPtrWillBeRawPtr<InsertTextCommand> command = InsertTextCommand::create(document(), text,
selectInsertedText
,
InputMethodController.cpp
287
TypingCommand::insertText(*m_frame.document(), text, TypingCommand::
SelectInsertedText
| TypingCommand::PreventSpellChecking, TypingCommand::TextCompositionUpdate);
Editor.cpp
780
bool Editor::insertTextWithoutSendingTextEvent(const String& text, bool
selectInsertedText
, TextEvent* triggeringEvent)
801
if (
selectInsertedText
)
802
options |= TypingCommand::
SelectInsertedText
;
[
all
...]
Completed in 818 milliseconds