OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:selectReplacement
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.h
222
void replaceSelectionWithFragment(PassRefPtrWillBeRawPtr<DocumentFragment>, bool
selectReplacement
, bool smartReplace, bool matchStyle);
223
void replaceSelectionWithText(const String&, bool
selectReplacement
, bool smartReplace);
Editor.cpp
485
void Editor::replaceSelectionWithFragment(PassRefPtrWillBeRawPtr<DocumentFragment> fragment, bool
selectReplacement
, bool smartReplace, bool matchStyle)
491
if (
selectReplacement
)
492
options |= ReplaceSelectionCommand::
SelectReplacement
;
506
void Editor::replaceSelectionWithText(const String& text, bool
selectReplacement
, bool smartReplace)
508
replaceSelectionWithFragment(createFragmentFromText(selectedRange().get(), text),
selectReplacement
, smartReplace, true);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
WebLocalFrameImpl.cpp
[
all
...]
Completed in 294 milliseconds