HomeSort by relevance Sort by last modified time
    Searched full:selection (Results 526 - 550 of 3967) sorted by null

<<21222324252627282930>>

  /frameworks/base/core/java/android/content/
ContentProviderClient.java 112 public Cursor query(Uri url, String[] projection, String selection,
114 return query(url, projection, selection, selectionArgs, sortOrder, null);
118 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs,
128 return mContentProvider.query(mPackageName, url, projection, selection, selectionArgs,
231 public int delete(Uri url, String selection, String[] selectionArgs)
235 return mContentProvider.delete(mPackageName, url, selection, selectionArgs);
247 public int update(Uri url, ContentValues values, String selection,
251 return mContentProvider.update(mPackageName, url, values, selection, selectionArgs);
  /frameworks/base/core/java/android/database/sqlite/
SqliteWrapper.java 57 String[] projection, String selection, String[] selectionArgs, String sortOrder) {
59 return resolver.query(uri, projection, selection, selectionArgs, sortOrder);
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchStackFromBottomManyTest.java 59 assertEquals("Selection still available after touch", -1,
75 assertEquals("Selection still available after touch", -1,
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListOfShortTallShortTest.java 50 assertEquals("selection should have moved to tall item below",
74 assertEquals("should have moved selection to tall item above",
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListTouchBottomGravityTest.java 65 assertEquals("Selection still available after touch", -1,
84 assertEquals("Selection still available after touch", -1,
ListTouchTest.java 62 assertEquals("Selection still available after touch", -1,
80 assertEquals("Selection still available after touch", -1,
  /packages/apps/Browser/src/com/android/browser/
AccountsChangedReceiver.java 37 private static final String SELECTION = Accounts.ACCOUNT_NAME + " IS NOT NULL";
57 SELECTION, null, null);
  /packages/apps/Browser/src/com/android/browser/addbookmark/
FolderSpinner.java 26 * Special Spinner class with its own callback for when the selection is set, which
35 * Callback for knowing when the selection has been manually set. Does not
  /packages/apps/Calendar/src/com/android/calendar/alerts/
SnoozeAlarmsService.java 72 String selection = CalendarAlerts.STATE + "=" + CalendarAlerts.STATE_FIRED + " AND " + local
76 resolver.update(uri, dismissValues, selection, null);
  /packages/apps/Calendar/tests/src/com/android/calendar/
AsyncQueryServiceTest.java 73 private static final String TEST_SELECTION = "selection";
117 work[index].selection = TEST_SELECTION;
126 work[index].projection, work[index].selection, work[index].selectionArgs,
173 work[index].selection = TEST_SELECTION;
181 work[index].selection, work[index].selectionArgs, work[index].delayMillis);
199 work[index].selection = TEST_SELECTION;
209 work[index].selection,
372 work.selection = TEST_SELECTION;
383 aqs.startDelete(w.token, w.cookie, w.uri, w.selection, w.selectionArgs,
601 public final Cursor query(Uri uri, String[] projection, String selection,
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ControllableActivity.java 52 * In case no conversation is currently selected, it returns an empty selection set.
58 * Returns the listener for folder list selection changes in the folder list
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 50 /** Selection clause to use to exclude voicemail records. */
129 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
136 final SelectionBuilder selectionBuilder = new SelectionBuilder(selection);
251 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
259 SelectionBuilder selectionBuilder = new SelectionBuilder(selection);
281 public int delete(Uri uri, String selection, String[] selectionArgs) {
282 SelectionBuilder selectionBuilder = new SelectionBuilder(selection);
327 * modify the selection to restrict to non-voicemail entries only.
VoicemailContentTable.java 178 public int delete(UriData uriData, String selection, String[] selectionArgs) {
180 String combinedClause = concatenateClauses(selection, uriData.getWhereClause(),
187 cursor = query(uriData, FILENAME_ONLY_PROJECTION, selection, selectionArgs, null);
212 public Cursor query(UriData uriData, String[] projection, String selection,
219 String combinedClause = concatenateClauses(selection, uriData.getWhereClause(),
230 public int update(UriData uriData, ContentValues values, String selection,
239 String combinedClause = concatenateClauses(selection, uriData.getWhereClause(),
267 /** Creates a clause to restrict the selection to only voicemail call type.*/
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
DeletedContactUtil.java 76 String selection = DeletedContacts.CONTACT_DELETED_TIMESTAMP + ">?"; local
78 Cursor cursor = resolver.query(URI, projection, selection, args, null);
  /packages/services/Telephony/src/com/android/phone/
GsmUmtsOptions.java 75 log("[CSP] Enabling Operator Selection menu.");
78 log("[CSP] Disabling Operator Selection menu.");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AvdManagerAction.java 70 public void selectionChanged(IAction action, ISelection selection) {
71 // nothing related to the current selection.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
AssetType.java 38 /** Display name to show to the user in the asset type selection list */
51 * asset wizard selection page etc
CreateAssetSetWizard.java 217 final TreeSelection selection = new TreeSelection(paths); local
219 provider.setSelection(selection);
229 provider.setSelection(selection);
243 public void init(IWorkbench workbench, IStructuredSelection selection) {
246 mInitialProject = guessProject(selection);
250 private IProject guessProject(IStructuredSelection selection) {
251 if (selection == null) {
255 for (Object element : selection.toList()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertySheetPage.java 117 public void selectionChanged(IWorkbenchPart part, ISelection selection) {
118 if (selection instanceof TreeSelection
120 TreeSelection treeSelection = (TreeSelection) selection;
122 // We get a lot of repeated selection requests for the same selection
276 // Listen on the selection in the property sheet so we can update the
281 StructuredSelection selection = (StructuredSelection) event.getSelection();
282 mActiveProperty = (Property) selection.getFirstElement();
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProvider.java 235 * @param selection The selection clause for the query
244 String selection,
269 selection,
419 * @param selection The SQL WHERE string. Use "?" to mark places that should be substituted by
421 * @param selectionArgs An array of values that are mapped to each "?" in selection. If no "?"
427 public int delete(Uri uri, String selection, String[] selectionArgs) {
439 * @param selection An SQL WHERE clause (without the WHERE keyword) specifying the rows to
441 * @param selectionArgs An array of values that are mapped in order to each "?" in selection.
447 public int update(Uri uri, ContentValues values, String selection,
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_views.cc 69 // focus in order for text selection to work.
288 ui::Range selection; local
289 textfield_->GetSelectedRange(&selection);
292 AutocompleteEditState(model_state, ViewState(selection)));
315 // Move the marks for the cursor and the other end of the selection to
421 // Don't inline autocomplete when the caret/selection isn't at the end of
478 // See if the text or selection have changed since OnBeforePossibleChange().
488 // (or typing) the prefix of that selection. (We detect these by making
490 // forward of the old selection start.)
499 // If only selection was changed, we don't need to call |model_|'
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_editor_base_controller.mm 31 // |selection| specifies if the current selection should be
50 // the selection path thereto.
303 DCHECK([selections count] == 1); // Should be exactly one selection.
447 // For safety's sake, in case deleted node was an ancestor of selection,
471 // If the newly created folder was selected, update the selection path.
487 NSIndexPath* selection = [self selectedIndexPath];
506 selection = [selection indexPathByAddingIndex:[children count] - 1];
507 [self setTableSelectionPath:selection];
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
task_manager_mac.mm 161 // Use the model indices to get the new view indices of the selection, and
162 // set selection to that. This assumes that no rows were added or removed
163 // (in that case, the selection is cleared before -reloadData is called).
180 NSIndexSet* selection = [tableView_ selectedRowIndexes];
181 for (NSUInteger i = [selection lastIndex];
183 i = [selection indexLessThanIndex:i]) {
345 // are selected as well. Also, check if the selection contains the browser
347 NSIndexSet* selection = [tableView_ selectedRowIndexes];
348 for (NSUInteger i = [selection lastIndex];
350 i = [selection indexLessThanIndex:i])
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp 313 frame->selection().setSelection(newSelection);
356 return indexForVisiblePosition(frame->selection().start());
375 return indexForVisiblePosition(frame->selection().end());
414 const VisibleSelection& selection = frame->selection().selection(); local
415 return selection.isDirectional() ? (selection.isBaseFirst() ? SelectionHasForwardDirection : SelectionHasBackwardDirection) : SelectionHasNoDirection;
429 PassRefPtr<Range> HTMLTextFormControlElement::selection() const function in class:WebCore::HTMLTextFormControlElement
480 // selectionStart() or selectionEnd() will return cached selection when this node doesn't have focu
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
ContentProviderOperationTest.java 144 public Cursor query(Uri uri, String[] projection, String selection,
163 public Cursor query(Uri uri, String[] projection, String selection,
179 public Cursor query(Uri uri, String[] projection, String selection,
195 public Cursor query(Uri uri, String[] projection, String selection,
304 builderSetSelection(builder, "selection");
318 assertEquals("selection", operationGetSelection(op2));
404 ContentProviderOperation.Builder builder, String selection)
409 field.set(builder, selection);
529 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
542 public int delete(Uri uri, String selection, String[] selectionArgs)
    [all...]

Completed in 1476 milliseconds

<<21222324252627282930>>