Searched defs:orderBy (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java99 public Cursor query(SQLiteDatabase db, String table, String[] columns, String orderBy) { argument
100 return query(db, table, columns, null, null, orderBy, null);
107 String having, String orderBy, String limit) {
109 orderBy, limit);
106 query(SQLiteDatabase db, String table, String[] columns, String groupBy, String having, String orderBy, String limit) argument
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java54 public String orderBy; field in class:AsyncQueryHandler.WorkerArgs
81 args.orderBy);
160 * @param orderBy How to order the rows, formatted as an SQL ORDER BY
166 String orderBy) {
177 args.orderBy = orderBy;
164 startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, String[] selectionArgs, String orderBy) argument
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQueryBuilder.java194 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
203 String groupBy, String having, String orderBy, String limit) {
228 appendClause(query, " ORDER BY ", orderBy);
201 buildQueryString( boolean distinct, String tables, String[] columns, String where, String groupBy, String having, String orderBy, String limit) argument
H A DSQLiteDatabase.java1020 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1031 String having, String orderBy, String limit) {
1033 groupBy, having, orderBy, limit, null);
1058 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1072 String having, String orderBy, String limit, CancellationSignal cancellationSignal) {
1074 groupBy, having, orderBy, limit, cancellationSignal);
1100 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1112 String having, String orderBy, String limit) {
1114 selectionArgs, groupBy, having, orderBy, limit, null);
1140 * @param orderBy Ho
1029 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1070 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit, CancellationSignal cancellationSignal) argument
1109 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1152 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit, CancellationSignal cancellationSignal) argument
1196 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy) argument
1234 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
[all...]
/frameworks/base/core/java/android/app/
H A DDownloadManager.java730 * Constant for use with {@link #orderBy}
736 * Constant for use with {@link #orderBy}
789 public Query orderBy(String column, int direction) { method in class:DownloadManager.Query
853 String orderBy = mOrderByColumn + " " + orderDirection;
855 return resolver.query(uri, projection, selection, selectionArgs, orderBy);
/frameworks/base/core/java/android/provider/
H A DMediaStore.java771 String where, String orderBy) {
773 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
777 String selection, String [] selectionArgs, String orderBy) {
779 selectionArgs, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
770 query(ContentResolver cr, Uri uri, String[] projection, String where, String orderBy) argument
776 query(ContentResolver cr, Uri uri, String[] projection, String selection, String [] selectionArgs, String orderBy) argument
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java190 String where, String orderBy) {
192 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
1360 String where, String orderBy) {
1362 where, null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
189 query(ContentResolver cr, String[] projection, String where, String orderBy) argument
1358 query( ContentResolver cr, String[] projection, String where, String orderBy) argument

Completed in 139 milliseconds