HomeSort by relevance Sort by last modified time
    Searched defs:selection (Results 101 - 125 of 303) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Messaging/src/com/android/messaging/sms/
BugleApnSettingsLoader.java 536 final String selection; local
539 selection = SELECTION_NUMERIC;
542 selection = SELECTION_NUMERIC + " AND " + SELECTION_APN;
547 cursor = db.query(ApnDatabase.APN_TABLE, APN_PROJECTION_LOCAL, selection, selectionArgs,
552 cursor = db.query(ApnDatabase.APN_TABLE, APN_PROJECTION_LOCAL, selection, selectionArgs,
  /packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
ApnEditorActivity.java 209 String selection = Telephony.Carriers._ID + " =?"; local
211 mCursor = mDatabase.query(ApnDatabase.APN_TABLE, sProjection, selection,
393 String selection = Telephony.Carriers._ID + " =?"; local
396 selection, selectionArgs);
ApnSettingsActivity.java 224 String selection = Telephony.Carriers.NUMERIC + " =?"; local
227 selection, selectionArgs, null, null, null, null);
337 String selection = Telephony.Carriers._ID + " =?"; local
341 selection, selectionArgs);
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PicasaSource.java 108 String selection = PICASA_ALBUM_ID + " = '" + data.albumId + "'"; local
115 projection, selection, null, null);
193 StringBuilder selection = new StringBuilder(); local
197 if (selection.length() > 0) {
198 selection.append(" OR ");
201 selection.append(PICASA_ALBUM_ID + " = '" + albumId + "'");
208 if (selection.length() == 0) {
212 log(TAG, "selection is (" + selection.length() + "): " + selection.toString())
291 String selection = (PICASA_ALBUM_USER + " = '" + parts[2] + "' AND " + local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Standard_Suite.py 426 """select: Make a selection
501 """selection - the selection visible to the user. Use the \xd4select\xd5 command to set a new selection; use \xd4contents of selection\xd5 to get or change information in the document. """
504 selection = _Prop_selection() variable
520 """selection-object - A way to refer to the state of the current of the selection. Use the \xd4select\xd5 command to make a new selection. """
523 """contents - the information currently selected. Use \xd4contents of selection\xd5 to get or change information in a document. ""
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DynamicContextMenu.java 74 * contributed by the {@link IViewRule} instances, based on the current selection
81 * they are both linked to the current selection state of the {@link LayoutCanvas}.
98 * contributed by the {@link IViewRule} instances, based on the current selection
101 * @param canvas The {@link LayoutCanvas} providing the selection, the node factory and
123 // shown, find dynamic contributions based on the current selection and insert
140 // Now add all the dynamic menu actions depending on the current selection.
150 * any new actions that depend on the current selection.
202 // to work this way to facilitate multi selection and actions which apply
221 List<SelectionItem> selection = mCanvas.getSelectionManager().getSelections(); local
222 if (selection.size() == 1)
245 List<SelectionItem> selection = mCanvas.getSelectionManager().getSelections(); local
284 List<SelectionItem> selection = mCanvas.getSelectionManager().getSelections(); local
500 List<SelectionItem> selection = mCanvas.getSelectionManager().getSelections(); local
    [all...]
MoveGesture.java 109 /** Singleton used to keep track of drag selection in the same Eclipse instance. */
132 // Hide selection overlays during a move drag
142 // Ensure that the outline is back to showing the current selection, since during
439 // defer selection briefly until the view hierarchy etc is up to
468 SelectionItem[] selection = dragInfo.getCurrentSelection(); local
469 if (selection != null) {
470 for (SelectionItem item : selection) {
706 SelectionItem[] selection = mGlobalDragInfo.getCurrentSelection(); local
707 if (selection != null) {
708 for (SelectionItem cs : selection) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
EmulatorConfigTab.java 108 * @param value The index of the combo selection.
120 * @param value The index of the combo selection.
173 targetModeGroup.setText("Deployment Target Selection Mode");
563 String selection = mDeviceTypeCombo.getText(); local
564 if (DEVICES_AND_EMULATORS.equals(selection)) {
566 } else if (DEVICES_ONLY.equals(selection)) {
568 } else if (EMULATORS_ONLY.equals(selection)) {
MainLaunchConfigTab.java 152 // event are received for both selection and deselection, so we only process
153 // the selection event to avoid doing it twice.
167 // event are received for both selection and deselection, so we only process
168 // the selection event to avoid doing it twice.
197 // event are received for both selection and deselection, so we only process
198 // the selection event to avoid doing it twice.
230 int selection = mActivityCombo.getSelectionIndex(); local
231 if (mActivities != null && selection >=0 && selection < mActivities.size()) {
233 mActivities.get(selection).getName())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintListDialog.java 207 List<IMarker> selection = mList.getSelectedMarkers(); local
208 if (selection.size() > 0) {
209 EclipseLintClient.showMarker(selection.get(0));
212 List<IMarker> selection = mList.getSelectedMarkers(); local
213 for (IMarker marker : selection) {
263 List<IMarker> selection = mList.getSelectedMarkers(); local
265 if (selection.size() == 1) {
266 selectMarker(selection.get(0));
271 boolean canFix = selection.size() > 0;
272 for (IMarker marker : selection) {
296 List<IMarker> selection = mList.getSelectedMarkers(); local
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 1106 SqlSelection selection = getWhereClause(uri, where, whereArgs, match); local
1148 SqlSelection selection = new SqlSelection(); local
1181 SqlSelection selection = getWhereClause(uri, where, whereArgs, match); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.views_3.5.0.I20100527-0800.jar 
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
Adapters.java 78 * <li><code>android:selection</code>: Selection expression, used when the
220 * android:selection="has_phone_number=1"
396 * to substitute values in the selection expression.
433 * to substitute values in the selection expression.
624 String selection = a.getString(R.styleable.CursorAdapter_selection); local
671 return new XmlCursorAdapter(mContext, layout, uri, fromArray, toArray, selection,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
BuildsView.java 90 // only one baseline, no selection to do
586 Object selection = this.viewer.getSelection(); local
588 if (selection instanceof IStructuredSelection) {
589 Object[] elements = ((IStructuredSelection)selection).toArray();
  /external/fio/
gclient.c 779 GtkTreeSelection *selection; local
803 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
804 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
858 GtkTreeSelection *selection; local
879 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
880 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
1056 GtkTreeSelection *selection; local
1072 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
1073 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/
SettingsDialog.java 65 public void onSelection(int selection);
90 private int selection = 0; field in class:SettingsDialog
169 return selection;
172 private void setUserSelection(int selection) {
173 this.selection = selection;
174 selectionListener.onSelection(selection);
364 * selection as a properties.cfg file.
366 * @return if the selection is valid
  /external/linux-tools-perf/src/tools/perf/ui/browsers/
annotate.c 40 struct disasm_line *selection; member in struct:annotate_browser
197 ab->selection = dl;
213 struct disasm_line *cursor = ab->selection, *target;
444 struct disasm_line *dl = browser->selection;
500 struct disasm_line *dl = browser->selection;
524 struct disasm_line *pos = browser->selection;
563 struct disasm_line *pos = browser->selection;
789 if (browser->selection == NULL)
790 ui_helpline__puts("Huh? No selection. Report to linux-kernel@vger.kernel.org");
791 else if (browser->selection->offset == -1
    [all...]
  /frameworks/base/core/java/android/app/
SearchManager.java 580 * query is being inserted. If false, the selection point will be placed at the end of the
908 String selection = searchable.getSuggestSelection(); local
    [all...]
  /frameworks/base/core/java/android/widget/
AdapterView.java 98 * Indicates whether to sync based on the selection or position. Possible
221 /** Lazily-constructed runnable for dispatching selection events. */
224 /** Selection notifier that's waiting for the next layout pass. */
380 * @param parent The AdapterView where the selection happened
388 * Callback method to be invoked when the selection disappears from this
389 * view. The selection can disappear for instance when touch is activated
584 int selection = getSelectedItemPosition(); local
585 if (adapter != null && adapter.getCount() > 0 && selection >= 0) {
586 return adapter.getItem(selection);
889 // We're about to post or run the selection notifier, so we don't nee
921 final int selection = getSelectedItemPosition(); local
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SuggestionsAdapter.java 737 // get the query selection, may be null
738 String selection = searchable.getSuggestSelection(); local
739 // inject query, either as selection args or inline
741 if (selection != null) { // use selection if provided
743 } else { // no selection, use REST pattern
754 return mContext.getContentResolver().query(uri, null, selection, selArgs, null);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 1043 String selection = null; local
    [all...]
BluetoothPbapVcardManager.java 186 String selection = BluetoothPbapObexServer.createSelectionPara(type); local
190 callCursor = mResolver.query(myUri, null, selection, null,
208 String selection = BluetoothPbapObexServer.createSelectionPara(type); local
219 callCursor = mResolver.query(myUri, projection, selection, null,
392 String selection; local
394 selection = recordSelection;
396 selection = "(" + typeSelection + ") AND (" + recordSelection + ")";
399 if (V) Log.v(TAG, "Call log query selection is: " + selection);
401 return composeCallLogsAndSendVCards(op, selection, vcardType21, null, ignorefilter, filter)
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapContentTest.java 505 Log.i(TAG, "Calling update() with selection: " + where +
707 String selection = new String("msg_id=" + id); local
710 Cursor c = mResolver.query(uriAddress, projection, selection, null, null);
752 String selection = new String("mid=" + id); local
755 Cursor c = mResolver.query(uriAddress, projection, selection, null, null);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
SuggestionsAdapter.java 440 String selection = null; local
444 selection = "url LIKE ?";
453 selection = COMBINED_SELECTION;
460 selection, (constraint != null) ? args : null, null);
  /packages/apps/Calendar/src/com/android/calendar/alerts/
GlobalDismissManager.java 393 * Build a selection over a set of row IDs
397 * @return a selection string suitable for a resolver query.
400 StringBuilder selection = new StringBuilder(); local
406 selection.append(" OR ");
408 selection.append(key);
409 selection.append("=");
410 selection.append(id);
412 return selection.toString();
500 String selection = "(" + CalendarAlerts.STATE + "=" + local
508 selection, null)
    [all...]

Completed in 1060 milliseconds

1 2 3 45 6 7 8 91011>>