HomeSort by relevance Sort by last modified time
    Searched defs:selectionEnd (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/WebKit/public/web/
WebTextInputInfo.h 47 int selectionEnd;
65 , selectionEnd(0)
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PersistentState.java 105 int selectionEnd = prefs.getInt("selection-end", -1);
106 if (selectionStart != -1 && selectionEnd != -1) {
107 mSaved.setSelection(selectionStart, selectionEnd);
  /external/chromium_org/third_party/WebKit/Source/core/html/ime/
InputMethodContext.cpp 134 int InputMethodContext::selectionEnd() const
  /external/chromium_org/third_party/WebKit/Source/web/
WebFormControlElement.cpp 162 int WebFormControlElement::selectionEnd() const
165 return constUnwrap<HTMLInputElement>()->selectionEnd();
167 return constUnwrap<HTMLTextAreaElement>()->selectionEnd();
WebAXObject.cpp 702 unsigned WebAXObject::selectionEnd() const
723 VisiblePosition position = m_private->visiblePositionForIndex(selectionEnd());
748 void WebAXObject::setSelectedTextRange(int selectionStart, int selectionEnd) const
753 m_private->setSelectedTextRange(AXObject::PlainTextRange(selectionStart, selectionEnd - selectionStart));
WebViewImpl.cpp     [all...]
  /external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/selfbraille/
WriteData.java 32 private static final String PROP_SELECTION_END = "selectionEnd";
123 int selectionEnd = getSelectionEnd();
125 if (selectionStart > 0 || selectionEnd > 0) {
130 if (selectionStart < 0 && selectionEnd >= 0) {
135 if (selectionStart > textLength || selectionEnd > textLength) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderView.h 102 RenderObject* selectionEnd() const { return m_selectionEnd; }
RenderReplaced.cpp 551 int selectionStart, selectionEnd;
552 selectionStartEnd(selectionStart, selectionEnd);
557 if (s == SelectionEnd)
558 return selectionEnd == end;
560 return selectionStart == 0 && selectionEnd == end;
InlineTextBox.cpp 163 if (state == RenderObject::SelectionStart || state == RenderObject::SelectionEnd || state == RenderObject::SelectionBoth) {
172 bool start = (state != RenderObject::SelectionEnd && startPos >= m_start && startPos <= m_start + m_len + endOfLineAdjustmentForCSSLineBreak);
179 state = RenderObject::SelectionEnd;
180 else if ((state == RenderObject::SelectionEnd || startPos < m_start) &&
496 int selectionEnd = 0;
498 selectionStartEnd(selectionStart, selectionEnd);
500 bool respectHyphen = selectionEnd == m_len && hasHyphen();
502 selectionEnd = textRun.length();
506 selectionEnd = std::min<int>(selectionEnd, m_truncation)
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/base/
BaseUiElement.java 158 final int selectionEnd = getSelectionEnd();
160 return selectionStart >= 0 && selectionStart != selectionEnd;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
AdapterInputConnection.java 137 * @param selectionEnd The character offset of the selection end, or the caret position if there
146 public void updateState(String text, int selectionStart, int selectionEnd, int compositionStart,
149 Log.w(TAG, "updateState [" + text + "] [" + selectionStart + " " + selectionEnd + "] ["
160 selectionEnd = Math.min(selectionEnd, text.length());
171 Selection.setSelection(mEditable, selectionStart, selectionEnd);
196 int selectionEnd = Selection.getSelectionEnd(mEditable);
201 mLastUpdateSelectionEnd == selectionEnd &&
207 Log.w(TAG, "updateSelectionIfRequired [" + selectionStart + " " + selectionEnd + "] ["
213 selectionStart, selectionEnd, compositionStart, compositionEnd)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp 173 setSelectionRange(start, std::max(start, selectionEnd()), selectionDirection());
183 setSelectionRange(selectionStart(), selectionEnd(), direction);
209 setRangeText(replacement, selectionStart(), selectionEnd(), String(), exceptionState);
225 unsigned newSelectionEnd = selectionEnd();
434 int HTMLTextFormControlElement::selectionEnd() const
555 // selectionStart() or selectionEnd() will return cached selection when this node doesn't have focus
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 219 final int selectionEnd = LONG_TEXT.length();
227 selectionStart, selectionEnd);
235 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()));
246 selectionStart, selectionEnd);
254 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()));
259 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()));
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 294 milliseconds