HomeSort by relevance Sort by last modified time
    Searched full:smartreplace (Results 1 - 25 of 31) sorted by null

1 2

  /external/webkit/Source/WebKit/mac/WebView/
WebFramePrivate.h 118 - (void)_replaceSelectionWithFragment:(DOMDocumentFragment *)fragment selectReplacement:(BOOL)selectReplacement smartReplace:(BOOL)smartReplace matchStyle:(BOOL)matchStyle;
119 - (void)_replaceSelectionWithText:(NSString *)text selectReplacement:(BOOL)selectReplacement smartReplace:(BOOL)smartReplace;
120 - (void)_replaceSelectionWithMarkupString:(NSString *)markupString baseURLString:(NSString *)baseURLString selectReplacement:(BOOL)selectReplacement smartReplace:(BOOL)smartReplace;
WebFrame.mm 86 #import <WebCore/SmartReplace.h>
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...]
WebFrameInternal.h 150 - (void)_replaceSelectionWithNode:(DOMNode *)node selectReplacement:(BOOL)selectReplacement smartReplace:(BOOL)smartReplace matchStyle:(BOOL)matchStyle;
WebTextCompletionController.mm 80 [frame _replaceSelectionWithText:newText selectReplacement:YES smartReplace:NO];
232 [frame _replaceSelectionWithText:_originalString selectReplacement:YES smartReplace:NO];
WebDataSource.mm 285 [[self webFrame] _replaceSelectionWithFragment:fragment selectReplacement:selectReplacement smartReplace:NO matchStyle:NO];
WebView.mm     [all...]
WebHTMLView.mm     [all...]
  /external/webkit/Source/WebCore/editing/
SmartReplace.cpp 30 #include "SmartReplace.h"
EditingAllInOne.cpp 64 #include <SmartReplace.cpp>
Editor.h 333 void pasteAsFragment(PassRefPtr<DocumentFragment>, bool smartReplace, bool matchStyle);
334 void pasteAsPlainText(const String&, bool smartReplace);
412 void replaceSelectionWithFragment(PassRefPtr<DocumentFragment>, bool selectReplacement, bool smartReplace, bool matchStyle);
413 void replaceSelectionWithText(const String&, bool selectReplacement, bool smartReplace);
ReplaceSelectionCommand.h 41 SmartReplace = 1 << 1,
MoveSelectionCommand.cpp 75 options |= ReplaceSelectionCommand::SmartReplace;
SmartReplaceCF.cpp 30 #include "SmartReplace.h"
SmartReplaceICU.cpp 31 #include "SmartReplace.h"
Editor.cpp 342 void Editor::pasteAsPlainText(const String& pastingText, bool smartReplace)
348 target->dispatchEvent(TextEvent::createForPlainTextPaste(m_frame->domWindow(), pastingText, smartReplace), ec);
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)
410 if (smartReplace)
411 options |= ReplaceSelectionCommand::SmartReplace;
422 void Editor::replaceSelectionWithText(const String& text, bool selectReplacement, bool smartReplace)
424 replaceSelectionWithFragment(createFragmentFromText(selectedRange().get(), text), selectReplacement, smartReplace, true);
    [all...]
ReplaceSelectionCommand.cpp 48 #include "SmartReplace.h"
347 , m_smartReplace(options & SmartReplace)
    [all...]
  /external/webkit/Source/WebCore/editing/qt/
SmartReplaceQt.cpp 31 #include "SmartReplace.h"
  /external/webkit/Source/WebCore/platform/android/
TemporaryLinkStubs.cpp 75 #include "SmartReplace.h"
  /external/webkit/Source/WebCore/page/
DragController.cpp 472 options |= ReplaceSelectionCommand::SmartReplace;
    [all...]
  /external/webkit/Source/WebCore/
CMakeLists.txt 680 editing/SmartReplace.cpp
    [all...]
GNUmakefile.list.am     [all...]
WebCore.pro     [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp     [all...]
  /external/webkit/Source/WebKit/mac/
WebKit.order     [all...]
  /external/webkit/Source/WebCore/WebCore.xcodeproj/
project.pbxproj     [all...]

Completed in 967 milliseconds

1 2