Searched defs:smartReplace (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DEditor.cpp342 void Editor::pasteAsPlainText(const String& pastingText, bool smartReplace) argument
348 target->dispatchEvent(TextEvent::createForPlainTextPaste(m_frame->domWindow(), pastingText, smartReplace), ec);
351 void Editor::pasteAsFragment(PassRefPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyle) argument
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) argument
410 if (smartReplace)
422 void Editor::replaceSelectionWithText(const String& text, bool selectReplacement, bool smartReplace) argument
424 replaceSelectionWithFragment(createFragmentFromText(selectedRange().get(), text), selectReplacement, smartReplace, true);

Completed in 475 milliseconds