Searched refs:smartReplace (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | Editor.h | 199 …void pasteAsFragment(PassRefPtrWillBeRawPtr<DocumentFragment>, bool smartReplace, bool matchStyle); 200 void pasteAsPlainText(const String&, bool smartReplace); 222 …assRefPtrWillBeRawPtr<DocumentFragment>, bool selectReplacement, bool smartReplace, bool matchStyl… 223 void replaceSelectionWithText(const String&, bool selectReplacement, bool smartReplace);
|
D | Editor.cpp | 344 void Editor::pasteAsPlainText(const String& pastingText, bool smartReplace) in pasteAsPlainText() argument 349 …(TextEvent::createForPlainTextPaste(m_frame.domWindow(), pastingText, smartReplace), IGNORE_EXCEPT… in pasteAsPlainText() 352 …agment(PassRefPtrWillBeRawPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyl… in pasteAsFragment() argument 357 …xtEvent::createForFragmentPaste(m_frame.domWindow(), pastingFragment, smartReplace, matchStyle), I… in pasteAsFragment() 485 …WillBeRawPtr<DocumentFragment> fragment, bool selectReplacement, bool smartReplace, bool matchStyl… in replaceSelectionWithFragment() argument 493 if (smartReplace) in replaceSelectionWithFragment() 506 void Editor::replaceSelectionWithText(const String& text, bool selectReplacement, bool smartReplace) in replaceSelectionWithText() argument 508 …agment(createFragmentFromText(selectedRange().get(), text), selectReplacement, smartReplace, true); in replaceSelectionWithText()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebLocalFrameImpl.cpp | 970 bool smartReplace = true; in replaceSelection() local 971 frame()->editor().replaceSelectionWithText(text, selectReplacement, smartReplace); in replaceSelection()
|