Searched refs:selectionEnd (Results 1 - 25 of 43) sorted by relevance

12

/external/webkit/Source/WebCore/editing/
H A DMoveSelectionCommand.cpp49 Position selectionEnd = endingSelection().end();
50 if (pos.anchorType() == Position::PositionIsOffsetInAnchor && selectionEnd.anchorType() == Position::PositionIsOffsetInAnchor
51 && selectionEnd.containerNode() == pos.containerNode() && selectionEnd.offsetInContainerNode() < pos.offsetInContainerNode()) {
52 pos.moveToOffset(pos.offsetInContainerNode() - selectionEnd.offsetInContainerNode());
H A DEditor.h291 void setComposition(const String&, const Vector<CompositionUnderline>&, unsigned selectionStart, unsigned selectionEnd);
296 bool getCompositionSelection(unsigned& selectionStart, unsigned& selectionEnd) const;
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLInputElementCustom.cpp54 JSValue JSHTMLInputElement::selectionEnd(ExecState* exec) const function in class:WebCore::JSHTMLInputElement
60 return jsNumber(input->selectionEnd());
/external/webkit/Source/WebCore/html/
H A DHTMLTextAreaElement.idl50 attribute long selectionEnd;
H A DHTMLFormControlElement.cpp655 setSelectionRange(start, max(start, selectionEnd()));
693 int HTMLTextFormControlElement::selectionEnd() const function in class:WebCore::HTMLTextFormControlElement
701 return toRenderTextControl(renderer())->selectionEnd();
H A DHTMLFormControlElement.h204 int selectionEnd() const;
H A DHTMLInputElement.idl93 attribute [Custom] long selectionEnd;
/external/webkit/Source/WebKit/chromium/src/
H A DWebInputElement.cpp138 int WebInputElement::selectionEnd() const function in class:WebKit::WebInputElement
140 return constUnwrap<HTMLInputElement>()->selectionEnd();
H A DWebPopupMenuImpl.h76 int selectionStart, int selectionEnd);
H A DWebPopupMenuImpl.cpp240 int selectionStart, int selectionEnd)
238 setComposition( const WebString& text, const WebVector<WebCompositionUnderline>& underlines, int selectionStart, int selectionEnd) argument
H A DEditorClientImpl.cpp779 isCaretAtEnd = inputElement->selectionStart() == inputElement->selectionEnd()
780 && inputElement->selectionEnd() == static_cast<int>(value.length());
H A DWebViewImpl.h107 int selectionEnd);
/external/webkit/Source/WebKit/chromium/public/
H A DWebInputElement.h77 WEBKIT_API int selectionEnd() const;
H A DWebWidget.h100 // If selectionStart and selectionEnd has the same value, then it indicates
108 int selectionEnd) = 0;
/external/webkit/Source/WebCore/rendering/
H A DRenderReplaced.cpp363 int selectionStart, selectionEnd; local
364 selectionStartEnd(selectionStart, selectionEnd);
370 return selectionEnd == end;
372 return selectionStart == 0 && selectionEnd == end;
H A DRenderTextControl.h43 int selectionEnd() const;
H A DRenderView.h79 RenderObject* selectionEnd() const { return m_selectionEnd; } function in class:WebCore::RenderView
H A DRenderTextControl.cpp216 int RenderTextControl::selectionEnd() const function in class:WebCore::RenderTextControl
603 cacheSelection(selectionStart(), selectionEnd());
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HTMLInputElementCustom.cpp69 INC_STATS("DOM.HTMLInputElement.selectionEnd._get");
74 return throwError("Accessing selectionEnd on an input element that cannot have a selection.");
76 int v = imp->selectionEnd();
82 INC_STATS("DOM.HTMLInputElement.selectionEnd._set");
87 throwError("Accessing selectionEnd on an input element that cannot have a selection.");
/external/chromium-trace/trace-viewer/src/
H A Dtimeline_find_control.js97 this.filterEl_.selectionEnd = this.filterEl_.value.length;
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DWebPageProxyMac.mm144 void WebPageProxy::setComposition(const String& text, Vector<CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd)
146 process()->sendSync(Messages::WebPage::SetComposition(text, underlines, selectionStart, selectionEnd, replacementRangeStart, replacementRangeEnd), Messages::WebPage::SetComposition::Reply(m_editorState), m_pageID);
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMHTML.mm140 int end = inputElement->selectionEnd();
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
H A DWebPageMac.mm224 void WebPage::setComposition(const String& text, Vector<CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, EditorState& newState)
235 frame->editor()->setComposition(text, underlines, selectionStart, selectionEnd);
481 VisiblePosition selectionEnd = selection.visibleEnd();
485 VisiblePosition paragraphEnd = endOfParagraph(selectionEnd);
488 int lengthToSelectionEnd = TextIterator::rangeLength(makeRange(paragraphStart, selectionEnd).get());
/external/chromium/chrome/browser/resources/file_manager/js/
H A Dfile_manager.js1852 var selectionEnd = input.value.lastIndexOf('.');
1853 if (selectionEnd == -1) {
1857 input.selectionEnd = selectionEnd;
1941 var selectionEnd = input.value.lastIndexOf('.');
1942 if (selectionEnd == -1) {
1946 input.selectionEnd = selectionEnd;
/external/webkit/Source/WebKit/chromium/tests/
H A DPopupMenuTest.cpp140 int selectionEnd) { return true; }
136 setComposition( const WebString& text, const WebVector<WebCompositionUnderline>& underlines, int selectionStart, int selectionEnd) argument

Completed in 4445 milliseconds

12