Searched refs:orderBy (Results 1 - 8 of 8) 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/support/persistence/db/src/main/java/androidx/sqlite/db/
H A DSupportSQLiteQueryBuilder.java118 * @param orderBy The order clause.
122 public SupportSQLiteQueryBuilder orderBy(String orderBy) { argument
123 mOrderBy = orderBy;
/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 DSQLiteDatabase.java1114 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1125 String having, String orderBy, String limit) {
1127 groupBy, having, orderBy, limit, null);
1152 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1166 String having, String orderBy, String limit, CancellationSignal cancellationSignal) {
1168 groupBy, having, orderBy, limit, cancellationSignal);
1194 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1206 String having, String orderBy, String limit) {
1208 selectionArgs, groupBy, having, orderBy, limit, null);
1234 * @param orderBy Ho
1123 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1164 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit, CancellationSignal cancellationSignal) argument
1203 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1246 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit, CancellationSignal cancellationSignal) argument
1290 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy) argument
1328 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
[all...]
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
/frameworks/base/core/java/android/provider/
H A DMediaStore.java865 String where, String orderBy) {
867 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
871 String selection, String [] selectionArgs, String orderBy) {
873 selectionArgs, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
864 query(ContentResolver cr, Uri uri, String[] projection, String where, String orderBy) argument
870 query(ContentResolver cr, Uri uri, String[] projection, String selection, String [] selectionArgs, String orderBy) argument
/frameworks/base/telephony/java/android/provider/
H A DTelephony.java314 String where, String orderBy) {
316 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
2027 String where, String orderBy) {
2029 where, null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
313 query(ContentResolver cr, String[] projection, String where, String orderBy) argument
2025 query( ContentResolver cr, String[] projection, String where, String orderBy) argument
/frameworks/base/core/java/android/app/
H A DDownloadManager.java807 * Constant for use with {@link #orderBy}
813 * Constant for use with {@link #orderBy}
878 public Query orderBy(String column, int direction) { method in class:DownloadManager.Query
953 String orderBy = mOrderByColumn + " " + orderDirection;
955 return resolver.query(uri, projection, selection, selectionArgs, orderBy);

Completed in 259 milliseconds