HomeSort by relevance Sort by last modified time
    Searched refs:setSelection (Results 1 - 25 of 294) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListSetSelectionTest.java 56 mListView.setSelection(i);
66 mListView.setSelection(0);
70 mListView.setSelection(ListView.INVALID_POSITION);
ListSetSelection.java 27 * List of 1,000 items used to test calls to setSelection() in touch mode.
28 * Pressing the S key will call setSelection(0) on the list.
46 mButton.setText("setSelection(0)");
49 getListView().setSelection(0);
66 getListView().setSelection(0);
  /external/webkit/Source/WebCore/editing/
SetSelectionCommand.cpp 46 selectionController->setSelection(m_selectionToSet, m_options);
57 selectionController->setSelection(startingSelection(), m_options);
  /packages/apps/Contacts/src/com/android/contacts/widget/
NotifyingSpinner.java 48 public void setSelection(int position) {
49 super.setSelection(position);
AutoScrollListView.java 99 setSelection(preliminaryPosition);
108 setSelection(preliminaryPosition);
  /frameworks/base/core/java/android/widget/
EditText.java 82 * Convenience for {@link Selection#setSelection(Spannable, int, int)}.
84 public void setSelection(int start, int stop) {
85 Selection.setSelection(getText(), start, stop);
89 * Convenience for {@link Selection#setSelection(Spannable, int)}.
91 public void setSelection(int index) {
92 Selection.setSelection(getText(), index);
  /frameworks/base/core/java/android/text/
Selection.java 67 public static void setSelection(Spannable text, int start, int stop) {
86 public static final void setSelection(Spannable text, int index) {
87 setSelection(text, index, index);
94 setSelection(text, 0, text.length());
129 setSelection(text, min);
150 setSelection(text, move);
170 setSelection(text, max);
191 setSelection(text, move);
209 setSelection(text, chooseHorizontal(layout, -1, start, end));
215 setSelection(text, to)
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
SelectionTest.java 42 Selection.setSelection(builder, 3, 8);
45 Selection.setSelection(builder, 3, 9);
48 Selection.setSelection(builder, 5, 7);
64 Selection.setSelection(builder, 0, 10);
67 Selection.setSelection(builder, 1, 8);
70 Selection.setSelection(builder, 2, 8);
78 method = "setSelection",
89 Selection.setSelection(builder, 3, 6);
93 Selection.setSelection(builder, 3, 7);
97 Selection.setSelection(builder, 3, 7)
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneNumberWatcherTest.java 34 Selection.setSelection(number, number.length());
45 Selection.setSelection(number, number.length());
61 Selection.setSelection(number, number.length());
70 Selection.setSelection(number, number.length());
86 Selection.setSelection(number, 5); // make the cursor at right of 1
97 Selection.setSelection(number, 11); // the cursor is at the right of '7'.
114 Selection.setSelection(number, number.length()); // make the cursor at right of 4
127 Selection.setSelection(number, 5); // make the cursor at right of 1
140 Selection.setSelection(number, 9); // make the cursor at right of -
157 Selection.setSelection(number, number.length()); // make the cursor at right of
    [all...]
  /packages/apps/Browser/src/com/android/browser/addbookmark/
FolderSpinner.java 59 * Call setSelection, without firing the callback
63 super.setSelection(position);
67 public void setSelection(int position) {
70 super.setSelection(position);
  /cts/tests/tests/widget/src/android/widget/cts/
EditTextTest.java 134 notes = "Test {@link EditText#setSelection(int)}",
135 method = "setSelection",
144 editText.setSelection(position);
149 editText.setSelection(position);
154 editText.setSelection(-1);
161 editText.setSelection(string.length() + 1);
170 notes = "Test {@link EditText#setSelection(int, int)}",
171 method = "setSelection",
181 editText.setSelection(start, end);
187 editText.setSelection(start, end)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridSetSelectionBaseTest.java 61 mGridView.setSelection(target);
77 mGridView.setSelection(target);
92 mGridView.setSelection(0);
  /packages/apps/Email/src/com/android/email/activity/setup/
SpinnerOption.java 30 spinner.setSelection(i, true);
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ClipboardSample.java 128 mSpinner.setSelection(0);
131 mSpinner.setSelection(1);
134 mSpinner.setSelection(2);
137 mSpinner.setSelection(3);
140 mSpinner.setSelection(0);
  /packages/apps/Email/src/com/android/email/widget/
EmailWidgetLoader.java 185 setSelection(Message.ALL_INBOX_SELECTION);
187 setSelection(Message.ALL_UNREAD_SELECTION);
193 setSelection(
200 setSelection(Message.PER_ACCOUNT_INBOX_SELECTION);
202 setSelection(Message.PER_ACCOUNT_UNREAD_SELECTION);
  /cts/tests/tests/text/src/android/text/method/cts/
BaseKeyListenerTest.java 72 Selection.setSelection(content, 0, 0);
78 Selection.setSelection(content, 0, 3);
86 Selection.setSelection(content, 0, 0);
137 Selection.setSelection((Editable) mTextView.getText(), selectionStart,
179 Selection.setSelection((Editable) mTextView.getText(), 0, 0);
190 Selection.setSelection((Editable) mTextView.getText(), 1, 2);
200 Selection.setSelection((Editable) mTextView.getText(), 2, 2);
ArrowKeyMovementMethodTest.java 243 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE);
253 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE);
275 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE);
285 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE);
318 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE);
328 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE);
350 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE);
360 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE);
393 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE);
412 Selection.setSelection(mEditable, SPACE_IN_2ND_LINE)
    [all...]
CharacterPickerDialogTest.java 97 Selection.setSelection(text, 0, 0);
107 Selection.setSelection(text, 2, 2);
118 Selection.setSelection(text, 2, 2);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ConfigureAssetSetPage.java 200 mImageRadio.setSelection(false);
277 mTrimCheckBox.setSelection(false);
291 mPaddingSlider.setSelection(10 + 15);
308 mCropRadio.setSelection(true);
328 mSquareRadio.setSelection(true);
349 mHoloLightRadio.setSelection(true);
386 mSimpleRadio.setSelection(true);
431 //mImageRadio.setSelection(true);
435 mTextRadio.setSelection(true);
611 mCropRadio.setSelection(true); // Ensure that you can't toggle it of
    [all...]
  /external/llvm/include/llvm/CodeGen/PBQP/
Solution.h 77 void setSelection(Graph::NodeItr nItr, unsigned selection) {
  /frameworks/base/core/java/android/view/inputmethod/
InputConnection.java 251 public boolean setSelection(int start, int end);
InputConnectionWrapper.java 93 public boolean setSelection(int start, int end) {
94 return mTarget.setSelection(start, end);
  /frameworks/base/core/java/android/webkit/
SearchBox.java 57 void setSelection(int selectionStart, int selectionEnd);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/actions/
ToolItemAction.java 42 item.setSelection(checked);
  /frameworks/base/core/java/android/app/
ListActivity.java 275 public void setSelection(int position) {
276 mList.setSelection(position);

Completed in 310 milliseconds

1 2 3 4 5 6 7 8 91011>>