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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.h 199 void pasteAsFragment(PassRefPtrWillBeRawPtr<DocumentFragment>, bool smartReplace, bool matchStyle);
200 void pasteAsPlainText(const String&, bool smartReplace);
222 void replaceSelectionWithFragment(PassRefPtrWillBeRawPtr<DocumentFragment>, bool selectReplacement, bool smartReplace, bool matchStyle);
223 void replaceSelectionWithText(const String&, bool selectReplacement, bool smartReplace);
Editor.cpp 344 void Editor::pasteAsPlainText(const String& pastingText, bool smartReplace)
349 target->dispatchEvent(TextEvent::createForPlainTextPaste(m_frame.domWindow(), pastingText, smartReplace), IGNORE_EXCEPTION);
352 void Editor::pasteAsFragment(PassRefPtrWillBeRawPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyle)
357 target->dispatchEvent(TextEvent::createForFragmentPaste(m_frame.domWindow(), pastingFragment, smartReplace, matchStyle), IGNORE_EXCEPTION);
485 void Editor::replaceSelectionWithFragment(PassRefPtrWillBeRawPtr<DocumentFragment> fragment, bool selectReplacement, bool smartReplace, bool matchStyle)
493 if (smartReplace)
494 options |= ReplaceSelectionCommand::SmartReplace;
506 void Editor::replaceSelectionWithText(const String& text, bool selectReplacement, bool smartReplace)
508 replaceSelectionWithFragment(createFragmentFromText(selectedRange().get(), text), selectReplacement, smartReplace, true);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebLocalFrameImpl.cpp     [all...]

Completed in 171 milliseconds