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

12

/macosx-10.9.5/WebCore-7537.78.1/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.h309 void setComposition(const String&, const Vector<CompositionUnderline>&, unsigned selectionStart, unsigned selectionEnd);
315 bool getCompositionSelection(unsigned& selectionStart, unsigned& selectionEnd) const;
H A DEditor.cpp1506 void Editor::setComposition(const String& text, const Vector<CompositionUnderline>& underlines, unsigned selectionStart, unsigned selectionEnd) argument
1592 unsigned end = min(max(start, baseOffset + selectionEnd), extentOffset);
2526 bool Editor::getCompositionSelection(unsigned& selectionStart, unsigned& selectionEnd) const
2543 selectionEnd = start.deprecatedEditingOffset() - m_compositionEnd;
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSHTMLInputElementCustom.cpp54 JSValue JSHTMLInputElement::selectionEnd(ExecState* exec) const function in class:WebCore::JSHTMLInputElement
60 return jsNumber(input->selectionEnd());
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLTextAreaElement.idl51 attribute long selectionEnd;
H A DHTMLTextFormControlElement.cpp200 setSelectionRange(start, max(start, selectionEnd()), selectionDirection());
210 setSelectionRange(selectionStart(), selectionEnd(), direction);
222 return value().substring(selectionStart(), selectionEnd() - selectionStart());
243 setRangeText(replacement, selectionStart(), selectionEnd(), String(), ec);
257 unsigned newSelectionEnd = selectionEnd();
381 int HTMLTextFormControlElement::selectionEnd() const function in class:WebCore::HTMLTextFormControlElement
502 // selectionStart() or selectionEnd() will return cached selection when this node doesn't have focus
H A DHTMLTextFormControlElement.h61 int selectionEnd() const;
H A DHTMLInputElement.idl84 [Custom] attribute long selectionEnd;
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DDOMHTML.mm122 int end = inputElement->selectionEnd();
H A DPublicDOMInterfaces.h621 @property int selectionEnd AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
889 @property int selectionEnd AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebKitSupport/
H A DInputHandler.h197 int selectionEnd() const;
199 bool selectionActive() const { return selectionStart() != selectionEnd(); }
H A DInputHandler.cpp1665 int InputHandler::selectionEnd() const function in class:BlackBerry::WebKit::InputHandler
1676 return start ? controlElement->selectionStart() : controlElement->selectionEnd();
1725 int newSelectionEnd = selectionEnd();
1728 "InputHandler::selectionChanged selectionStart=%u, selectionEnd=%u",
1756 "InputHandler::setSelection selectionStart=%u, selectionEnd=%u",
1759 return start == selectionStart() && end == selectionEnd();
2286 return spannableTextInRange(selectionStart(), selectionEnd(), flags);
2335 extractedText->selection_end = selectionEnd() - extractedText->start_offset;
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DCodeMirrorTextEditor.js636 var selectionEnd = this._codeMirror.getCursor("end");
637 if (selectionStart.line !== selectionEnd.line)
639 if (selectionStart.ch === selectionEnd.ch)
643 if (this._isWord(selectedText, selectionStart.line, selectionStart.ch, selectionEnd.ch))
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderReplaced.cpp531 int selectionStart, selectionEnd; local
532 selectionStartEnd(selectionStart, selectionEnd);
538 return selectionEnd == end;
540 return selectionStart == 0 && selectionEnd == end;
H A DRenderView.h92 RenderObject* selectionEnd() const { return m_selectionEnd; } function in class:WebCore::RenderView
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/mac/
H A DWebPageMac.mm269 void WebPage::setComposition(const String& text, Vector<CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, EditorState& newState)
280 frame->editor().setComposition(text, underlines, selectionStart, selectionEnd);
574 VisiblePosition selectionEnd = selection.visibleEnd();
578 VisiblePosition paragraphEnd = endOfParagraph(selectionEnd);
581 int lengthToSelectionEnd = TextIterator::rangeLength(makeRange(paragraphStart, selectionEnd).get());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/mac/
H A DWebPageProxyMac.mm186 void WebPageProxy::setComposition(const String& text, Vector<CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd)
194 process()->sendSync(Messages::WebPage::SetComposition(text, underlines, selectionStart, selectionEnd, replacementRangeStart, replacementRangeEnd), Messages::WebPage::SetComposition::Reply(m_editorState), m_pageID);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DDOMHTMLClasses.cpp1282 HRESULT STDMETHODCALLTYPE DOMHTMLInputElement::selectionEnd( function in class:DOMHTMLInputElement
1287 *end = inputElement->selectionEnd();
1353 *end = inputElement->selectionEnd();
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebPageClient.h143 virtual void inputSelectionChanged(unsigned selectionStart, unsigned selectionEnd) = 0;
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DDOMHTML.idl801 // attribute long selectionEnd;
803 HRESULT selectionEnd([out, retval] long* end);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DWebPage.h456 void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd);
471 void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, EditorState& newState);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebPageProxy.h381 void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd);
397 void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd);
H A DWebPageProxy.cpp4479 void WebPageProxy::setComposition(const String& text, Vector<CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd) argument
4485 process()->send(Messages::WebPage::SetComposition(text, underlines, selectionStart, selectionEnd, replacementRangeStart, replacementRangeEnd), m_pageID);
/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityObject.h628 unsigned selectionEnd() const { return selectedTextRange().length; } function in class:WebCore::AccessibilityObject
/macosx-10.9.5/vim-53/runtime/autoload/
H A Djavascriptcomplete.vim343 \ 'tabIndex', 'type', 'value', 'selectionStart', 'selectionEnd']

Completed in 317 milliseconds

12