OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:selectionRange
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/inspector/front-end/
TextPrompt.js
173
var
selectionRange
= document.createRange();
174
selectionRange
.setStart(userTextNode, this._userEnteredText.length);
175
selectionRange
.setEnd(userTextNode, this._userEnteredText.length);
179
selection.addRange(
selectionRange
);
198
var
selectionRange
= selection.getRangeAt(0);
199
var isEmptyInput =
selectionRange
.commonAncestorContainer === this.element; // this.element has no child Text nodes.
204
if (!auto && !isEmptyInput && !
selectionRange
.commonAncestorContainer.isDescendant(this.element))
208
var wordPrefixRange =
selectionRange
.startContainer.rangeOfWord(
selectionRange
.startOffset, this.completionStopCharacters, this.element, "backward");
217
var
selectionRange
= selection.getRangeAt(0)
[
all
...]
/external/webkit/Source/WebKit/chromium/src/
WebPopupMenuImpl.h
81
virtual bool
selectionRange
(WebPoint& start, WebPoint& end) const { return false; }
WebViewImpl.cpp
[
all
...]
WebFrameImpl.cpp
[
all
...]
/external/webkit/Source/WebCore/page/
DragController.cpp
760
RefPtr<Range>
selectionRange
= src->selection()->toNormalizedRange();
761
ASSERT(
selectionRange
);
763
clipboard->writeRange(
selectionRange
.get(), src);
[
all
...]
/external/webkit/Source/WebKit/chromium/tests/
PopupMenuTest.cpp
145
virtual bool
selectionRange
(WebPoint& start, WebPoint& end) const { return false; }
/external/webkit/Source/WebCore/editing/
Editor.cpp
[
all
...]
/prebuilt/darwin-x86_64/swt/
swt.jar
/prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar
Completed in 234 milliseconds