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 248 void pasteAsFragment(PassRefPtr<DocumentFragment>, bool smartReplace, bool matchStyle);
249 void pasteAsPlainText(const String&, bool smartReplace);
290 void replaceSelectionWithFragment(PassRefPtr<DocumentFragment>, bool selectReplacement, bool smartReplace, bool matchStyle);
291 void replaceSelectionWithText(const String&, bool selectReplacement, bool smartReplace);
Editor.cpp 346 void Editor::pasteAsPlainText(const String& pastingText, bool smartReplace)
351 target->dispatchEvent(TextEvent::createForPlainTextPaste(m_frame->domWindow(), pastingText, smartReplace), IGNORE_EXCEPTION);
354 void Editor::pasteAsFragment(PassRefPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyle)
359 target->dispatchEvent(TextEvent::createForFragmentPaste(m_frame->domWindow(), pastingFragment, smartReplace, matchStyle), IGNORE_EXCEPTION);
402 void Editor::replaceSelectionWithFragment(PassRefPtr<DocumentFragment> fragment, bool selectReplacement, bool smartReplace, bool matchStyle)
410 if (smartReplace)
411 options |= ReplaceSelectionCommand::SmartReplace;
427 void Editor::replaceSelectionWithText(const String& text, bool selectReplacement, bool smartReplace)
429 replaceSelectionWithFragment(createFragmentFromText(selectedRange().get(), text), selectReplacement, smartReplace, true);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrameImpl.cpp     [all...]

Completed in 81 milliseconds