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 348 void Editor::pasteAsPlainText(const String& pastingText, bool smartReplace)
353 target->dispatchEvent(TextEvent::createForPlainTextPaste(m_frame.domWindow(), pastingText, smartReplace), IGNORE_EXCEPTION);
356 void Editor::pasteAsFragment(PassRefPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyle)
361 target->dispatchEvent(TextEvent::createForFragmentPaste(m_frame.domWindow(), pastingFragment, smartReplace, matchStyle), IGNORE_EXCEPTION);
489 void Editor::replaceSelectionWithFragment(PassRefPtr<DocumentFragment> fragment, bool selectReplacement, bool smartReplace, bool matchStyle)
497 if (smartReplace)
498 options |= ReplaceSelectionCommand::SmartReplace;
510 void Editor::replaceSelectionWithText(const String& text, bool selectReplacement, bool smartReplace)
512 replaceSelectionWithFragment(createFragmentFromText(selectedRange().get(), text), selectReplacement, smartReplace, true);
    [all...]
ReplaceSelectionCommand.cpp 44 #include "core/editing/SmartReplace.h"
363 , m_smartReplace(options & SmartReplace)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp 512 options |= ReplaceSelectionCommand::SmartReplace;
    [all...]

Completed in 28 milliseconds