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

12

/external/webkit/WebCore/editing/
H A DMoveSelectionCommand.cpp52 Position selectionEnd = selection.end(); local
53 int selectionEndOffset = selectionEnd.deprecatedEditingOffset();
54 if (selectionEnd.node() == positionNode && selectionEndOffset < positionOffset) {
H A DEditor.h257 void setComposition(const String&, const Vector<CompositionUnderline>&, unsigned selectionStart, unsigned selectionEnd);
262 bool getCompositionSelection(unsigned& selectionStart, unsigned& selectionEnd) const;
H A DEditor.cpp1395 void Editor::setComposition(const String& text, const Vector<CompositionUnderline>& underlines, unsigned selectionStart, unsigned selectionEnd) argument
1467 unsigned end = min(max(start, baseOffset + selectionEnd), extentOffset);
2638 bool Editor::getCompositionSelection(unsigned& selectionStart, unsigned& selectionEnd) const
2655 selectionEnd = start.deprecatedEditingOffset() - m_compositionEnd;
/external/webkit/WebCore/bindings/js/
H A DJSHTMLInputElementCustom.cpp88 JSValue JSHTMLInputElement::selectionEnd(ExecState* exec) const function in class:WebCore::JSHTMLInputElement
94 return jsNumber(exec, input->selectionEnd());
/external/webkit/WebCore/html/
H A DHTMLTextAreaElement.idl51 attribute long selectionEnd;
H A DHTMLInputElement.idl88 attribute [Custom] long selectionEnd;
H A DHTMLFormControlElement.h163 int selectionEnd();
H A DHTMLFormControlElement.cpp501 int HTMLTextFormControlElement::selectionEnd() function in class:WebCore::HTMLTextFormControlElement
509 return toRenderTextControl(renderer())->selectionEnd();
/external/webkit/WebCore/rendering/
H A DSVGInlineTextBox.cpp325 bool SVGInlineTextBox::chunkSelectionStartEnd(const UChar* chunk, int chunkLength, int& selectionStart, int& selectionEnd) argument
333 selectionStartEnd(selectionStart, selectionEnd);
334 if (selectionEnd <= chunkStart)
341 selectionEnd -= chunkStart;
345 if (chunkLength < selectionEnd)
346 selectionEnd = chunkLength;
348 return selectionStart < selectionEnd;
429 int selectionEnd = 0; local
430 bool haveSelectedRange = haveSelection && chunkSelectionStartEnd(chars, length, selectionStart, selectionEnd);
435 paintInfo.context->drawText(font, run, origin, selectionEnd, ru
[all...]
H A DRenderReplaced.cpp310 int selectionStart, selectionEnd; local
311 selectionStartEnd(selectionStart, selectionEnd);
317 return selectionEnd == end;
319 return selectionStart == 0 && selectionEnd == end;
H A DSVGInlineTextBox.h88 bool chunkSelectionStartEnd(const UChar* chunk, int chunkLength, int& selectionStart, int& selectionEnd);
H A DRenderTextControl.h44 int selectionEnd();
H A DRenderTextControl.cpp219 int RenderTextControl::selectionEnd() function in class:WebCore::RenderTextControl
229 setSelectionRange(start, max(start, selectionEnd()));
500 cacheSelection(selectionStart(), selectionEnd());
H A DRenderView.h73 virtual RenderObject* selectionEnd() const { return m_selectionEnd; } function in class:WebCore::RenderView
H A DSVGRootInlineBox.cpp368 int selectionStart = 0, selectionEnd = 0; local
369 box->renderer()->selectionStartEnd(selectionStart, selectionEnd);
370 return selectionStart < selectionEnd;
/external/webkit/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/webkit/WebCore/bindings/objc/
H A DDOMHTML.mm139 int end = inputElement->selectionEnd();
H A DPublicDOMInterfaces.h619 @property int selectionEnd AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
892 @property int selectionEnd AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
/external/webkit/WebKit/chromium/src/
H A DEditorClientImpl.cpp747 isCaretAtEnd = inputElement->selectionStart() == inputElement->selectionEnd()
748 && inputElement->selectionEnd() == static_cast<int>(value.length());
/external/webkit/WebKit/win/
H A DDOMHTMLClasses.cpp1280 HRESULT STDMETHODCALLTYPE DOMHTMLInputElement::selectionEnd( function in class:DOMHTMLInputElement
1285 *end = inputElement->selectionEnd();
1351 *end = inputElement->selectionEnd();
/external/webkit/WebKit/win/Interfaces/
H A DDOMHTML.idl800 // attribute long selectionEnd;
802 HRESULT selectionEnd([out, retval] long* end);
/external/webkit/WebCore/accessibility/
H A DAccessibilityObject.h399 unsigned selectionEnd() const { return selectedTextRange().length; } function in class:WebCore::AccessibilityObject
H A DAccessibilityRenderObject.cpp1693 return textControl->text().substring(textControl->selectionStart(), textControl->selectionEnd() - textControl->selectionStart());
1730 return PlainTextRange(textControl->selectionStart(), textControl->selectionEnd() - textControl->selectionStart());
/external/webkit/WebKit/qt/Api/
H A Dqwebpage.cpp1442 return QVariant(renderTextControl->selectionEnd() - TextIterator::rangeLength(range.get()));
1444 return QVariant(renderTextControl->selectionEnd());
1462 int end = renderTextControl->selectionEnd();
/external/webkit/WebKit/android/jni/
H A DWebViewCore.cpp643 oldSelEnd = rtc->selectionEnd();
2220 rtc->selectionEnd());
2397 rtc->selectionStart(), rtc->selectionEnd(), m_textGeneration);

Completed in 83 milliseconds

12