HomeSort by relevance Sort by last modified time
    Searched refs:Selection (Results 26 - 50 of 106) sorted by null

12 3 4 5

  /packages/apps/Settings/src/com/android/settings/
DebugIntentSender.java 27 import android.text.Selection;
74 Selection.selectAll((Spannable) mIntentField.getText());
ProxySelector.java 34 import android.text.Selection;
298 Selection.selectAll((Spannable) textView.getText());
  /cts/tests/tests/text/src/android/text/method/cts/
MultiTapKeyListenerTest.java 26 import android.text.Selection;
88 multiTapKeyListener.onSpanChanged(text, Selection.SELECTION_END, 0, 0, 0, 0);
91 multiTapKeyListener.onSpanChanged(null, Selection.SELECTION_END, 0, 0, 0, 0);
196 Selection.setSelection(mTextView.getEditableText(), 0, 0);
TextKeyListenerTest.java 28 import android.text.Selection;
153 textKeyListener.onSpanChanged(text, Selection.SELECTION_END, 0, 0, 0, 0);
156 textKeyListener.onSpanChanged(null, Selection.SELECTION_END, 0, 0, 0, 0);
207 Selection.setSelection((Editable) mTextView.getText(), 0, 0);
240 Selection.setSelection((Editable) mTextView.getText(), 0, 0);
NumberKeyListenerTest.java 26 import android.text.Selection;
155 Selection.setSelection((Editable) mTextView.getText(), 0, 0);
QwertyKeyListenerTest.java 26 import android.text.Selection;
162 Selection.setSelection(mTextView.getEditableText(), 0, 0);
  /sdk/traceview/src/com/android/traceview/
ProfileView.java 184 // Add a selection listener to the tree so that the user can click
194 IStructuredSelection selection = (IStructuredSelection) sel;
195 Object element = selection.getFirstElement();
235 ArrayList<Selection> selections = new ArrayList<Selection>();
236 selections.add(Selection.highlight("MethodData", md));
275 ArrayList<Selection> selections;
277 for (Selection selection : selections) {
278 Selection.Action action = selection.getAction()
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CCombo3.java 74 addEvents(m_arrow, m_arrowListener, new int[]{SWT.Selection, SWT.FocusIn, SWT.FocusOut});
85 addEvents(m_table, m_tableListener, new int[]{SWT.Selection, SWT.FocusIn, SWT.FocusOut});
191 // check for keyboard navigation and selection
232 case SWT.Selection : {
242 case SWT.Selection : {
249 // send selection event
263 * Sends selection event.
269 notifyListeners(SWT.Selection, e);
302 addListener(SWT.Selection, typedListener);
362 // scroll to selection if neede
    [all...]
CComboBox.java 206 table.notifyListeners(SWT.Selection, convert2event(e));
211 notifyListeners(SWT.Selection, convert2event(e));
290 notifyListeners(SWT.Selection, convert2event(e));
489 // Selection
495 * Selection index.
510 * Selection text.
521 * Selection image.
550 addListener(SWT.Selection, typedListener);
CFlatButton.java 134 notifyListeners(SWT.Selection, event);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
ToggleButton.java 31 * This acts as a button by firing the {@link SWT#Selection} listener.
65 notifyListeners(SWT.Selection, new Event());
  /frameworks/base/core/java/android/webkit/
FindActionModeCallback.java 24 import android.text.Selection;
76 // Ideally, we would like to set the selection to the whole field,
77 // but this brings up the Text selection CAB, which dismisses this
79 Selection.setSelection(span, length, length);
199 Selection.setSelection(edit, edit.length());
  /development/apps/Development/src/com/android/development/
EnterURL.java 28 import android.text.Selection;
65 Selection.setSelection(text, highlightStart, text.length());
83 Selection.setSelection(text, 0, text.length());
  /frameworks/base/core/java/android/widget/
DialerFilter.java 23 import android.text.Selection;
285 Selection.setSelection(lettersText, lettersText.length());
290 Selection.setSelection(digitsText, digitsText.length());
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/
messages.properties 67 FileExplorerView_Delete_The_Selection=Delete the selection
85 LogCatView_Export_Selection_As_Text=Export Selection As Text...
86 LogCatView_Export_Selection_As_Text_Tooltip=Export Selection As Text...
  /external/chromium/chrome/browser/autocomplete/
autocomplete.h 470 // The "Selection" struct is the information we need to select the same match
472 struct Selection {
473 Selection()
478 // Clear the selection entirely.
481 // True when the selection is empty.
496 // keystroke, so if this is set, we'll preserve the selection by simply
    [all...]
  /external/llvm/lib/MC/
MCContext.cpp 230 int Selection,
242 Selection, Kind);
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewWordLimitsTest.java 22 import android.text.Selection;
95 Selection.setSelection((Spannable)mTv.getText(), selectionStart, selectionEnd);
193 // Selection of character classes excluded
253 * Selection is used if present and valid word.
263 // Valid selection - Letter, Lower
269 // Valid selection -- Letter, Other
272 // Zero-width selection is interpreted as a cursor and the selection is ignored
275 // Hyphen is part of selection
278 // Ampersand part of selection or no
    [all...]
  /sdk/uiautomatorviewer/src/com/android/uiautomator/
OpenDialog.java 38 * Implements a file selection dialog for both screen shot and xml dump file
42 * file path is empty, then selection for the other file will start from the same base folder
97 openScreenshotButton.addListener(SWT.Selection, new Listener() {
121 openXmlButton.addListener(SWT.Selection, new Listener() {
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 49 import android.text.Selection;
220 Selection.setSelection((Editable) mTextView.getText(),
228 assertEquals(selectionStart, Selection.getSelectionStart(mTextView.getText()));
229 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()));
232 // the selection has been removed.
233 assertEquals(selectionStart, Selection.getSelectionStart(mTextView.getText()));
234 assertEquals(selectionStart, Selection.getSelectionEnd(mTextView.getText()));
239 Selection.setSelection((Editable) mTextView.getText(),
247 assertEquals(selectionStart, Selection.getSelectionStart(mTextView.getText()));
248 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()))
    [all...]
  /external/llvm/utils/TableGen/
CodeGenInstruction.cpp 387 StringRef Selection = Cur.slice(VariantsStart, VariantsEnd);
389 Selection = Selection.split('|').second;
390 Res += Selection.split('|').first;
  /external/webkit/Tools/DumpRenderTree/qt/
TextInputControllerQt.cpp 136 QInputMethodEvent::Attribute selection(QInputMethodEvent::Selection, start, end, QVariant());
137 attributes << selection; local
  /frameworks/base/core/java/android/text/method/
CharacterPickerDialog.java 94 int selEnd = Selection.getSelectionEnd(mText);
  /frameworks/base/core/java/android/text/
Selection.java 24 * A cursor is a selection where the start and end are at the same offset.
26 public class Selection {
27 private Selection() { /* cannot be instantiated */ }
30 * Retrieving the selection
34 * Return the offset of the selection anchor or cursor, or -1 if
35 * there is no selection or cursor.
45 * Return the offset of the selection edge or cursor, or -1 if
46 * there is no selection or cursor.
56 * Setting the selection
64 * Set the selection anchor to <code>start</code> and the selection edg
    [all...]
  /packages/apps/Phone/src/com/android/phone/
EditFdnContactScreen.java 35 import android.text.Selection;
414 Selection.selectAll((Spannable) textView.getText());

Completed in 2199 milliseconds

12 3 4 5