Home | History | Annotate | Download | only in facade

Lines Matching refs:query

109       Cursor cursor = mService.getContentResolver().query(phoneData, null, null, null, null);
124 Cursor cursor = mContentResolver.query(CONTACTS_URI, null, null, null, null);
139 Cursor cursor = mContentResolver.query(CONTACTS_URI, columns, null, null, null);
170 String[] query = queryList.toArray(new String[queryList.size()]);
171 Cursor cursor = mContentResolver.query(CONTACTS_URI, query, null, null, null);
202 mContentResolver.query(
241 Cursor cursor = mContentResolver.query(uri, columns, null, null, null);
256 Cursor cursor = mContentResolver.query(CONTACTS_URI, null, null, null, null);
277 mContentResolver.query(
306 mContentResolver.query(
326 * "http://developer.android.com/reference/android/content/ContentResolver.html#query%28android.net.Uri,%20java.lang.String[],%20java.lang.String,%20java.lang.String[],%20java.lang.String%29"
327 * >ContentResolver.query</a>
329 @Rpc(description = "Content Resolver Query", returns = "result of query as Maps")
358 Cursor cursor = mContentResolver.query(Uri.parse(uri), columns, selection, args, order);
376 description = "Content Resolver Query Attributes",
387 Cursor cursor = mContentResolver.query(Uri.parse(uri), null, "1=0", null, null);