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/base/core/java/android/database/sqlite/
H A DSQLiteQueryBuilder.java173 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
182 String groupBy, String having, String orderBy, String limit) {
207 appendClause(query, " ORDER BY ", orderBy);
180 buildQueryString( boolean distinct, String tables, String[] columns, String where, String groupBy, String having, String orderBy, String limit) argument
H A DSQLiteDatabase.java1177 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1188 String having, String orderBy, String limit) {
1190 groupBy, having, orderBy, limit);
1216 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1228 String having, String orderBy, String limit) {
1233 distinct, table, columns, selection, groupBy, having, orderBy, limit);
1260 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
1269 String orderBy) {
1272 having, orderBy, null /* limit */);
1296 * @param orderBy Ho
1186 query(boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1225 queryWithFactory(CursorFactory cursorFactory, boolean distinct, String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) argument
1267 query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy) argument
1305 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.java569 * Constant for use with {@link #orderBy}
575 * Constant for use with {@link #orderBy}
628 public Query orderBy(String column, int direction) { method in class:DownloadManager.Query
692 String orderBy = mOrderByColumn + " " + orderDirection;
694 return resolver.query(uri, projection, selection, selectionArgs, orderBy);
/frameworks/base/core/java/android/provider/
H A DCalendar.java212 String where, String orderBy)
215 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
815 String where, String orderBy) {
817 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
863 long begin, long end, String where, String orderBy) {
873 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
211 query(ContentResolver cr, String[] projection, String where, String orderBy) argument
814 query(ContentResolver cr, String[] projection, String where, String orderBy) argument
862 query(ContentResolver cr, String[] projection, long begin, long end, String where, String orderBy) argument
H A DMediaStore.java507 String where, String orderBy) {
509 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
513 String selection, String [] selectionArgs, String orderBy) {
515 selectionArgs, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
506 query(ContentResolver cr, Uri uri, String[] projection, String where, String orderBy) argument
512 query(ContentResolver cr, Uri uri, String[] projection, String selection, String [] selectionArgs, String orderBy) argument
H A DTelephony.java184 String where, String orderBy) {
186 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
1315 String where, String orderBy) {
1317 where, null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy);
183 query(ContentResolver cr, String[] projection, String where, String orderBy) argument
1313 query( ContentResolver cr, String[] projection, String where, String orderBy) argument

Completed in 139 milliseconds