Lines Matching refs:result

132         final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection));
133 final RowBuilder row = result.newRow();
141 return result;
150 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
151 includeFile(result, documentId, 0);
152 return result;
193 public boolean includeIfFinished(MatrixCursor result) {
196 includeFile(result, "_networkfile1", 0);
197 includeFile(result, "_networkfile2", 0);
198 includeFile(result, "_networkfile3", 0);
199 includeFile(result, "_networkfile4", 0);
200 includeFile(result, "_networkfile5", 0);
201 includeFile(result, "_networkfile6", 0);
236 CloudCursor result = new CloudCursor(resolveDocumentProjection(projection));
237 result.setNotificationUri(resolver, notifyUri);
240 includeFile(result, MY_DOC_NULL, 0);
241 includeFile(result, "localfile1", 0);
242 includeFile(result, "localfile2", Document.FLAG_SUPPORTS_THUMBNAIL);
243 includeFile(result, "localfile3", 0);
244 includeFile(result, "localfile4", 0);
248 includeFile(result, "i maded u an picshure" + i, Document.FLAG_SUPPORTS_THUMBNAIL);
276 if (task.includeIfFinished(result)) {
277 result.extras.putString(DocumentsContract.EXTRA_INFO,
280 result.extras.putString(DocumentsContract.EXTRA_ERROR,
284 result.extras.putBoolean(DocumentsContract.EXTRA_LOADING, true);
288 result.keepAlive = task;
290 return result;
304 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection));
306 result, "It was /worth/ the_wait for?the file:with the&incredibly long name", 0);
307 return result;
393 private static void includeFile(MatrixCursor result, String docId, int flags) {
394 final RowBuilder row = result.newRow();