OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SelectReplacement
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
MoveSelectionCommand.cpp
75
ReplaceSelectionCommand::CommandOptions options = ReplaceSelectionCommand::
SelectReplacement
| ReplaceSelectionCommand::PreventNesting;
ReplaceSelectionCommand.h
40
SelectReplacement
= 1 << 0,
Editor.cpp
489
void Editor::replaceSelectionWithFragment(PassRefPtr<DocumentFragment> fragment, bool
selectReplacement
, bool smartReplace, bool matchStyle)
495
if (
selectReplacement
)
496
options |= ReplaceSelectionCommand::
SelectReplacement
;
510
void Editor::replaceSelectionWithText(const String& text, bool
selectReplacement
, bool smartReplace)
512
replaceSelectionWithFragment(createFragmentFromText(selectedRange().get(), text),
selectReplacement
, smartReplace, true);
[
all
...]
CompositeEditCommand.cpp
[
all
...]
ReplaceSelectionCommand.cpp
362
, m_selectReplacement(options &
SelectReplacement
)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp
510
ReplaceSelectionCommand::CommandOptions options = ReplaceSelectionCommand::
SelectReplacement
| ReplaceSelectionCommand::PreventNesting;
526
ReplaceSelectionCommand::create(*m_documentUnderMouse.get(), createFragmentFromText(range.get(), text), ReplaceSelectionCommand::
SelectReplacement
| ReplaceSelectionCommand::MatchStyle | ReplaceSelectionCommand::PreventNesting)->apply();
[
all
...]
Completed in 73 milliseconds