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

  /external/webkit/Source/WebCore/editing/
EditingAllInOne.cpp 64 #include <SmartReplace.cpp>
MoveSelectionCommand.cpp 75 options |= ReplaceSelectionCommand::SmartReplace;
ReplaceSelectionCommand.h 41 SmartReplace = 1 << 1,
ReplaceSelectionCommand.cpp 48 #include "SmartReplace.h"
347 , m_smartReplace(options & SmartReplace)
    [all...]
Editor.cpp 342 void Editor::pasteAsPlainText(const String& pastingText, bool smartReplace)
348 target->dispatchEvent(TextEvent::createForPlainTextPaste(m_frame->domWindow(), pastingText, smartReplace), ec);
351 void Editor::pasteAsFragment(PassRefPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyle)
357 target->dispatchEvent(TextEvent::createForFragmentPaste(m_frame->domWindow(), pastingFragment, smartReplace, matchStyle), ec);
402 void Editor::replaceSelectionWithFragment(PassRefPtr<DocumentFragment> fragment, bool selectReplacement, bool smartReplace, bool matchStyle)
410 if (smartReplace)
411 options |= ReplaceSelectionCommand::SmartReplace;
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 472 options |= ReplaceSelectionCommand::SmartReplace;
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebFrame.mm 86 #import <WebCore/SmartReplace.h>
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/WebKit/chromium/src/
WebFrameImpl.cpp     [all...]

Completed in 177 milliseconds