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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
MoveSelectionCommand.cpp 77 options |= ReplaceSelectionCommand::SmartReplace;
ReplaceSelectionCommand.h 41 SmartReplace = 1 << 1,
Editor.cpp 345 void Editor::pasteAsPlainText(const String& pastingText, bool smartReplace)
350 target->dispatchEvent(TextEvent::createForPlainTextPaste(frame().domWindow(), pastingText, smartReplace), IGNORE_EXCEPTION);
353 void Editor::pasteAsFragment(PassRefPtrWillBeRawPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyle)
358 target->dispatchEvent(TextEvent::createForFragmentPaste(frame().domWindow(), pastingFragment, smartReplace, matchStyle), IGNORE_EXCEPTION);
504 void Editor::replaceSelectionWithFragment(PassRefPtrWillBeRawPtr<DocumentFragment> fragment, bool selectReplacement, bool smartReplace, bool matchStyle)
512 if (smartReplace)
513 options |= ReplaceSelectionCommand::SmartReplace;
525 void Editor::replaceSelectionWithText(const String& text, bool selectReplacement, bool smartReplace)
527 replaceSelectionWithFragment(createFragmentFromText(selectedRange().get(), text), selectReplacement, smartReplace, true);
    [all...]
ReplaceSelectionCommand.cpp 45 #include "core/editing/SmartReplace.h"
378 , m_smartReplace(options & SmartReplace)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp 511 options |= ReplaceSelectionCommand::SmartReplace;
    [all...]

Completed in 282 milliseconds