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

  /external/webkit/Source/WebCore/editing/
MoveSelectionCommand.cpp 73 ReplaceSelectionCommand::CommandOptions options = ReplaceSelectionCommand::SelectReplacement | ReplaceSelectionCommand::PreventNesting;
ReplaceSelectionCommand.h 40 SelectReplacement = 1 << 0,
CompositeEditCommand.cpp     [all...]
ReplaceSelectionCommand.cpp 346 , m_selectReplacement(options & SelectReplacement)
    [all...]
Editor.cpp 402 void Editor::replaceSelectionWithFragment(PassRefPtr<DocumentFragment> fragment, bool selectReplacement, bool smartReplace, bool matchStyle)
408 if (selectReplacement)
409 options |= ReplaceSelectionCommand::SelectReplacement;
422 void Editor::replaceSelectionWithText(const String& text, bool selectReplacement, bool smartReplace)
424 replaceSelectionWithFragment(createFragmentFromText(selectedRange().get(), text), selectReplacement, smartReplace, true);
    [all...]
  /external/webkit/Source/WebCore/page/
DragController.cpp 470 ReplaceSelectionCommand::CommandOptions options = ReplaceSelectionCommand::SelectReplacement | ReplaceSelectionCommand::PreventNesting;
487 applyCommand(ReplaceSelectionCommand::create(m_documentUnderMouse.get(), createFragmentFromText(range.get(), text), ReplaceSelectionCommand::SelectReplacement | ReplaceSelectionCommand::MatchStyle | ReplaceSelectionCommand::PreventNesting));
    [all...]
ContextMenuController.cpp 282 RefPtr<ReplaceSelectionCommand> command = ReplaceSelectionCommand::create(document, createFragmentFromMarkup(document, item->title(), ""), ReplaceSelectionCommand::SelectReplacement | ReplaceSelectionCommand::MatchStyle | ReplaceSelectionCommand::PreventNesting);
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebFrame.mm 784 - (void)_replaceSelectionWithNode:(DOMNode *)node selectReplacement:(BOOL)selectReplacement smartReplace:(BOOL)smartReplace matchStyle:(BOOL)matchStyle
788 [self _replaceSelectionWithFragment:fragment selectReplacement:selectReplacement smartReplace:smartReplace matchStyle:matchStyle];
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp     [all...]

Completed in 823 milliseconds