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

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditor.cpp345 void Editor::pasteAsPlainText(const String& pastingText, bool smartReplace) argument
350 target->dispatchEvent(TextEvent::createForPlainTextPaste(frame().domWindow(), pastingText, smartReplace), IGNORE_EXCEPTION);
353 void Editor::pasteAsFragment(PassRefPtrWillBeRawPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyle) argument
358 target->dispatchEvent(TextEvent::createForFragmentPaste(frame().domWindow(), pastingFragment, smartReplace, matchStyle), IGNORE_EXCEPTION);
504 void Editor::replaceSelectionWithFragment(PassRefPtrWillBeRawPtr<DocumentFragment> fragment, bool selectReplacement, bool smartReplace, bool matchStyle) argument
512 if (smartReplace)
525 void Editor::replaceSelectionWithText(const String& text, bool selectReplacement, bool smartReplace) argument
527 replaceSelectionWithFragment(createFragmentFromText(selectedRange().get(), text), selectReplacement, smartReplace, true);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebLocalFrameImpl.cpp958 bool smartReplace = true; local
959 frame()->editor().replaceSelectionWithText(text, selectReplacement, smartReplace);

Completed in 36 milliseconds