/frameworks/base/core/java/com/android/internal/content/ |
H A D | SelectionBuilder.java | 99 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 D | AsyncQueryHandler.java | 54 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 D | SQLiteQueryBuilder.java | 194 * @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 D | SQLiteDatabase.java | 1020 * @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 D | DownloadManager.java | 765 * Constant for use with {@link #orderBy} 771 * Constant for use with {@link #orderBy} 824 public Query orderBy(String column, int direction) { method in class:DownloadManager.Query 888 String orderBy = mOrderByColumn + " " + orderDirection; 890 return resolver.query(uri, projection, selection, selectionArgs, orderBy);
|
/frameworks/base/core/java/android/provider/ |
H A D | MediaStore.java | 782 String where, String orderBy) { 784 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy); 788 String selection, String [] selectionArgs, String orderBy) { 790 selectionArgs, orderBy == null ? DEFAULT_SORT_ORDER : orderBy); 781 query(ContentResolver cr, Uri uri, String[] projection, String where, String orderBy) argument 787 query(ContentResolver cr, Uri uri, String[] projection, String selection, String [] selectionArgs, String orderBy) argument
|
/frameworks/opt/telephony/src/java/android/provider/ |
H A D | Telephony.java | 285 String where, String orderBy) { 287 null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy); 1692 String where, String orderBy) { 1694 where, null, orderBy == null ? DEFAULT_SORT_ORDER : orderBy); 284 query(ContentResolver cr, String[] projection, String where, String orderBy) argument 1690 query( ContentResolver cr, String[] projection, String where, String orderBy) argument
|