Searched defs:query (Results 76 - 89 of 89) sorted by relevance

1234

/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaControllerCompat.java584 * Request that the player start playback for a specific search query.
585 * An empty or null query should be treated as a request to play any
588 * @param query The search query.
590 * about the query.
592 public abstract void playFromSearch(String query, Bundle extras); argument
1013 public void playFromSearch(String query, Bundle extras) { argument
1015 mBinder.playFromSearch(query, extras);
1301 public void playFromSearch(String query, Bundle extras) { argument
1302 MediaControllerCompatApi21.TransportControls.playFromSearch(mControlsObj, query,
[all...]
H A DMediaSessionCompat.java498 * Override to handle requests to begin playback from a search query. An
499 * empty query indicates that the app may play any music. The
503 public void onPlayFromSearch(String query, Bundle extras) { argument
1577 public void playFromSearch(String query, Bundle extras) throws RemoteException { argument
1578 mHandler.post(MessageHandler.MSG_PLAY_SEARCH, query, extras);
/frameworks/base/core/java/android/app/
H A DDownloadManager.java802 * Controls whether this query includes downloads not visible in the system's Downloads UI.
803 * @param value if true, this query will only include downloads that should be displayed in
804 * the system's Downloads UI; if false (the default), this query will include
841 * Run this query using the given ContentResolver.
842 * @param projection the projection to pass to ContentResolver.query()
843 * @return the Cursor returned by ContentResolver.query()
890 return resolver.query(uri, projection, selection, selectionArgs, orderBy);
991 * @param query parameters specifying filters for this query
995 public Cursor query(Quer argument
[all...]
H A DActivity.java1913 * {@link ContentResolver#query(android.net.Uri , String[], String, String[], String)}
1924 * you call {@link #stopManagingCursor} on a cursor from a managed query, the system <em>will
1928 * @param uri The URI of the content provider to query.
1933 * @return The Cursor that was returned by query().
1935 * @see ContentResolver#query(android.net.Uri , String[], String, String[], String)
1944 Cursor c = getContentResolver().query(uri, projection, selection, null, sortOrder);
1953 * {@link ContentResolver#query(android.net.Uri , String[], String, String[], String)}
1964 * you call {@link #stopManagingCursor} on a cursor from a managed query, the system <em>will
1968 * @param uri The URI of the content provider to query.
1974 * @return The Cursor that was returned by query()
3577 triggerSearch(String query, @Nullable Bundle appSearchData) argument
[all...]
/frameworks/base/core/java/android/content/
H A DContentResolver.java367 * such as *&#47;*, to query for all available MIME types that match the
420 public final Cursor query(Uri uri, String[] projection, method in class:ContentResolver
422 return query(uri, projection, selection, selectionArgs, sortOrder, null);
455 * when the query is executed.
459 public final Cursor query(final Uri uri, String[] projection, method in class:ContentResolver
478 qCursor = unstableProvider.query(mPackageName, uri, projection,
489 qCursor = stableProvider.query(mPackageName, uri, projection,
496 // Force query execution. Might fail and throw a runtime exception here.
533 * {@link #query}, {@link #openInputStream(android.net.Uri)}, etc. The
/frameworks/base/core/java/android/provider/
H A DMediaStore.java119 * on a search query</a> in <a href="{@docRoot}guide/components/intents-common.html">Common
432 * work with multiple media file types in a single query.
616 c = cr.query(cancelUri, PROJECTION, null, null, null);
665 c = cr.query(baseUri, PROJECTION, column + origId, null, null);
679 c = cr.query(blockingUri, PROJECTION, null, null, null);
713 c = cr.query(uri, PROJECTION, null, null, null);
809 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection) { method in class:MediaStore.Images.Media
810 return cr.query(uri, projection, null, null, DEFAULT_SORT_ORDER);
813 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection, method in class:MediaStore.Images.Media
815 return cr.query(ur
819 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection, method in class:MediaStore.Images.Media
1012 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection) { method in class:MediaStore.Images.Thumbnails
1918 public static final Cursor query(ContentResolver cr, Uri uri, String[] projection) { method in class:MediaStore.Video
[all...]
H A DCalendarContract.java174 * query parameters.
333 * Columns specific to the Calendars Uri that other Uris can query.
503 * cursor contains a calendars query.
505 * @param cursor query on {@link #CONTENT_URI}
639 * matches the query selection, or at most a single row if the {@link #_ID}
715 * {@link #ACCOUNT_NAME}, and {@link #ACCOUNT_TYPE} in the Uri's query
834 * {@link #query(ContentResolver, long, String[])} will return a list of attendees for
868 * @param cr The content resolver to use for the query
873 public static final Cursor query(ContentResolver cr, long eventId, String[] projection) { method in class:CalendarContract.Attendees
875 return cr.query(CONTENT_UR
1751 public static final Cursor query(ContentResolver cr, String[] projection, method in class:CalendarContract.Instances
1780 public static final Cursor query(ContentResolver cr, String[] projection, method in class:CalendarContract.Instances
2030 public static final Cursor query(ContentResolver cr, int startDay, int numDays, method in class:CalendarContract.EventDays
2114 public static final Cursor query(ContentResolver cr, long eventId, String[] projection) { method in class:CalendarContract.Reminders
[all...]
/frameworks/base/core/java/android/widget/
H A DSearchView.java65 * A widget that provides a user interface for the user to enter a search query and submit a request
66 * to a search provider. Shows a list of query suggestions or results, if available, and allows the
183 * Callbacks for changes to the query text.
188 * Called when the user submits the query. This could be due to a key press on the
194 * @param query the query text that is to be submitted
196 * @return true if the query has been handled by the listener, false to let the
199 boolean onQueryTextSubmit(String query); argument
202 * Called when the query text is changed by the user.
204 * @param newText the new content of the query tex
561 setQuery(CharSequence query, boolean submit) argument
1483 setQuery(CharSequence query) argument
1489 launchQuerySearch(int actionKey, String actionMsg, String query) argument
1510 createIntent(String action, Uri data, String extraData, String query, int actionKey, String actionMsg) argument
[all...]
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java523 private void dispatchPlayFromSearch(String query, Bundle extras) { argument
524 postToCallback(CallbackMessageHandler.MSG_PLAY_SEARCH, query, extras);
810 * Override to handle requests to begin playback from a search query. An
811 * empty query indicates that the app may play any music. The
815 public void onPlayFromSearch(String query, Bundle extras) { argument
939 public void onPlayFromSearch(String query, Bundle extras) { argument
942 session.dispatchPlayFromSearch(query, extras);
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java926 public void playFromSearch(String query, Bundle extras) { argument
928 mCb.onPlayFromSearch(query, extras);
1145 public void playFromSearch(String query, Bundle extras) throws RemoteException { argument
1146 mSessionCb.playFromSearch(query, extras);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java77 * A widget that provides a user interface for the user to enter a search query and submit a request
78 * to a search provider. Shows a list of query suggestions or results, if available, and allows the
198 * Callbacks for changes to the query text.
203 * Called when the user submits the query. This could be due to a key press on the
209 * @param query the query text that is to be submitted
211 * @return true if the query has been handled by the listener, false to let the
214 boolean onQueryTextSubmit(String query); argument
217 * Called when the query text is changed by the user.
219 * @param newText the new content of the query tex
573 setQuery(CharSequence query, boolean submit) argument
1387 setQuery(CharSequence query) argument
1393 launchQuerySearch(int actionKey, String actionMsg, String query) argument
1412 createIntent(String action, Uri data, String extraData, String query, int actionKey, String actionMsg) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java1046 * P2P_SERVICE_ADD bonjour <query hexdump> <RDATA hexdump>
1077 * P2P_SERVICE_DEL bonjour <query hexdump>
1106 public String p2pServDiscReq(String addr, String query) { argument
1109 command += (" " + query);
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java297 * Return cursor for table query.
300 public static Cursor query(ContentResolver cr, String[] projection) { method in class:Telephony.Sms
301 return cr.query(CONTENT_URI, projection, null, null, DEFAULT_SORT_ORDER);
305 * Return cursor for table query.
308 public static Cursor query(ContentResolver cr, String[] projection, method in class:Telephony.Sms
310 return cr.query(CONTENT_URI, projection, where,
1824 Cursor cursor = SqliteWrapper.query(context, context.getContentResolver(),
1890 * Helper method to query this table.
1893 public static Cursor query( method in class:Telephony.Mms
1895 return cr.query(CONTENT_UR
1902 public static Cursor query( method in class:Telephony.Mms
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java3031 List<ResolveInfo> query = queryIntentActivities(intent, resolvedType, flags, userId);
3032 return chooseBestActivity(intent, resolvedType, flags, query, userId);
3049 List<ResolveInfo> query = queryIntentActivities(intent, resolvedType, flags, userId);
3052 flags, query, 0, false, true, false, userId);
3062 List<ResolveInfo> query = queryIntentActivities(intent, resolvedType, flags, userId);
3063 return findPreferredActivity(intent, resolvedType, flags, query, 0,
3068 int flags, List<ResolveInfo> query, int userId) {
3069 if (query != null) {
3070 final int N = query.size();
3072 return query
3067 chooseBestActivity(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, int userId) argument
3112 findPersistentPreferredActivityLP(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, boolean debug, int userId) argument
3169 findPreferredActivity(Intent intent, String resolvedType, int flags, List<ResolveInfo> query, int priority, boolean always, boolean removeMatches, boolean debug, int userId) argument
[all...]

Completed in 6435 milliseconds

1234