Searched defs: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/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/support/persistence/db/src/main/java/android/arch/persistence/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/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.java1098 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1109 String having, String orderBy, String limit) {
1111 groupBy, having, orderBy, limit, null);
1136 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1150 String having, String orderBy, String limit, CancellationSignal cancellationSignal) {
1152 groupBy, having, orderBy, limit, cancellationSignal);
1178 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1190 String having, String orderBy, String limit) {
1192 selectionArgs, groupBy, having, orderBy, limit, null);
1218 * @param orderBy Ho
1107 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1148 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit, CancellationSignal cancellationSignal) argument
1187 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1230 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit, CancellationSignal cancellationSignal) argument
1274 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy) argument
1312 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.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);
/frameworks/base/core/java/android/provider/
H A DMediaStore.java867 String where, String orderBy) {
869 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
873 String selection, String [] selectionArgs, String orderBy) {
875 selectionArgs, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
866 query(ContentResolver cr, Uri uri, String[] projection, String where, String orderBy) argument
872 query(ContentResolver cr, Uri uri, String[] projection, String selection, String [] selectionArgs, String orderBy) argument
/frameworks/base/telephony/java/android/telephony/
H A DTelephony.java313 String where, String orderBy) {
315 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
2011 String where, String orderBy) {
2013 where, null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
312 query(ContentResolver cr, String[] projection, String where, String orderBy) argument
2009 query( ContentResolver cr, String[] projection, String where, String orderBy) argument

Completed in 278 milliseconds