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

123

/frameworks/ex/carousel/java/com/android/ex/carousel/
H A Dcarousel.rs167 const bool debugSelection = false; // logs selection events
240 static float selectionRadius = 50.0f; // movement greater than this will result in no selection
1181 int selection;
1184 if ((selection = intersectDetailTexture(x, y, &point)) != -1) {
1185 if (debugSelection) rsDebug("Selected detail texture on doStop():", selection);
1186 data[0] = selection;
1191 else if ((selection = doSelection(x, y))!= -1) {
1192 if (debugSelection) rsDebug("Selected item on doStop():", selection);
1193 data[0] = selection;
1214 if (debugSelection) rsDebug("doLongPress(), selection
[all...]
/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.java1742 * @param selection SQL WHERE clause.
1754 public final Cursor managedQuery(Uri uri, String[] projection, String selection, argument
1756 Cursor c = getContentResolver().query(uri, projection, selection, null, sortOrder);
1782 * @param selection SQL WHERE clause.
1783 * @param selectionArgs The arguments to selection, if any ?s are pesent
1794 public final Cursor managedQuery(Uri uri, String[] projection, String selection, argument
1796 Cursor c = getContentResolver().query(uri, projection, selection, selectionArgs, sortOrder);
3237 * 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.java1963 String selection = "numeric = '" + operator + "'";
1966 selection += " and carrier_enabled = 1";
1967 if (DBG) log("createAllApnList: selection=" + selection);
1970 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 303 milliseconds

123