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

  /external/webkit/Source/WebCore/editing/
ReplaceSelectionCommand.h 42 MatchStyle = 1 << 2,
SpellingCorrectionCommand.cpp 101 applyCommandToComposite(ReplaceSelectionCommand::create(document(), fragment, ReplaceSelectionCommand::MatchStyle | ReplaceSelectionCommand::PreventNesting, EditActionPaste));
CompositeEditCommand.cpp     [all...]
ReplaceSelectionCommand.cpp 69 ReplacementFragment(Document*, DocumentFragment*, bool matchStyle, const VisibleSelection&);
127 ReplacementFragment::ReplacementFragment(Document* document, DocumentFragment* fragment, bool matchStyle, const VisibleSelection& selection)
130 m_matchStyle(matchStyle),
348 , m_matchStyle(options & MatchStyle)
    [all...]
Editor.cpp 351 void Editor::pasteAsFragment(PassRefPtr<DocumentFragment> pastingFragment, bool smartReplace, bool matchStyle)
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)
412 if (matchStyle)
413 options |= ReplaceSelectionCommand::MatchStyle;
    [all...]
  /external/webkit/Source/WebCore/page/
DragController.cpp 474 options |= ReplaceSelectionCommand::MatchStyle;
487 applyCommand(ReplaceSelectionCommand::create(m_documentUnderMouse.get(), createFragmentFromText(range.get(), text), ReplaceSelectionCommand::SelectReplacement | ReplaceSelectionCommand::MatchStyle | ReplaceSelectionCommand::PreventNesting));
    [all...]
ContextMenuController.cpp 282 RefPtr<ReplaceSelectionCommand> command = ReplaceSelectionCommand::create(document, createFragmentFromMarkup(document, item->title(), ""), ReplaceSelectionCommand::SelectReplacement | ReplaceSelectionCommand::MatchStyle | ReplaceSelectionCommand::PreventNesting);
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp     [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebFrame.mm 784 - (void)_replaceSelectionWithNode:(DOMNode *)node selectReplacement:(BOOL)selectReplacement smartReplace:(BOOL)smartReplace matchStyle:(BOOL)matchStyle
788 [self _replaceSelectionWithFragment:fragment selectReplacement:selectReplacement smartReplace:smartReplace matchStyle:matchStyle];
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp     [all...]

Completed in 98 milliseconds