Searched refs:selection (Results 51 - 58 of 58) sorted by relevance

123

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccProvider.java77 public Cursor query(Uri url, String[] projection, String selection, argument
/frameworks/base/core/java/android/app/
H A DDownloadManager.java886 String selection = joinStrings(" AND ", selectionParts);
890 return resolver.query(uri, projection, selection, selectionArgs, orderBy);
1276 * Get the selection args for a clause returned by {@link #getWhereClauseForIds(long[])}.
H A DActivity.java1741 * @param selection SQL WHERE clause.
1753 public final Cursor managedQuery(Uri uri, String[] projection, String selection, argument
1755 Cursor c = getContentResolver().query(uri, projection, selection, null, sortOrder);
1781 * @param selection SQL WHERE clause.
1782 * @param selectionArgs The arguments to selection, if any ?s are pesent
1793 public final Cursor managedQuery(Uri uri, String[] projection, String selection, argument
1795 Cursor c = getContentResolver().query(uri, projection, selection, selectionArgs, sortOrder);
3236 * query is being inserted. If false, the selection point will be placed at the end of the
/frameworks/base/core/java/android/provider/
H A DMediaStore.java788 String selection, String [] selectionArgs, String orderBy) {
789 return cr.query(uri, projection, selection,
787 query(ContentResolver cr, Uri uri, String[] projection, String selection, String [] selectionArgs, String orderBy) argument
H A DCalendarContract.java625 * {@link ContentUris#withAppendedId}) or as the first selection item--the
626 * selection should start with "_id=?" and the first selectionArg should be
627 * the _id of the calendar. Calendars may also be updated using a selection
633 * on the Uri or using any standard selection. Deleting a calendar should
639 * matches the query selection, or at most a single row if the {@link #_ID}
875 return cr.query(CONTENT_URI, projection, ATTENDEES_WHERE, attArgs /* selection args */,
1547 * {@link ContentUris#withAppendedId}) or as the first selection item--the
1548 * selection should start with "_id=?" and the first selectionArg should be
1549 * the _id of the event. Updates may also be done using a selection and no
1555 * id on the Uri or using any standard selection
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java1895 String selection = "numeric = '" + operator + "'";
1898 selection += " and carrier_enabled = 1";
1899 if (DBG) log("createAllApnList: selection=" + selection);
1902 Telephony.Carriers.CONTENT_URI, null, selection, null, null);
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java114 /** The mode of selection. */
138 * States of selection.
140 /** The state that selection isn't started. */
142 /** The state that selection is started. */
144 /** The state that selection is done, but not fixed. */
146 /** The state that selection is done and not fixed. */
231 // If selection is started, don't open soft key by
280 boolean selection = getSelectionStart() != getSelectionEnd();
296 if (selection) {
304 if (selection) {
[all...]
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduPersister.java1549 String selection = PendingMessages.ERROR_TYPE + " < ?"
1558 uriBuilder.build(), null, selection, selectionArgs,

Completed in 200 milliseconds

123