Searched defs:distinct (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQueryBuilder.java58 * @param distinct if true the query is DISTINCT, otherwise it isn't
60 public void setDistinct(boolean distinct) { argument
61 mDistinct = distinct;
178 * @param distinct true if you want each row to be unique, false otherwise.
202 boolean distinct, String tables, String[] columns, String where,
215 if (distinct) {
201 buildQueryString( boolean distinct, String tables, String[] columns, String where, String groupBy, String having, String orderBy, String limit) argument
H A DSQLiteDatabase.java1001 * @param distinct true if you want each row to be unique, false otherwise.
1029 public Cursor query(boolean distinct, String table, String[] columns, argument
1032 return queryWithFactory(null, distinct, table, columns, selection, selectionArgs,
1039 * @param distinct true if you want each row to be unique, false otherwise.
1070 public Cursor query(boolean distinct, String table, String[] columns, argument
1073 return queryWithFactory(null, distinct, table, columns, selection, selectionArgs,
1081 * @param distinct true if you want each row to be unique, false otherwise.
1110 boolean distinct, String table, String[] columns,
1113 return queryWithFactory(cursorFactory, distinct, table, columns, selection,
1121 * @param distinct tru
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
[all...]

Completed in 39 milliseconds