Lines Matching refs:results

61      * The preferred number of results to be retrieved. This number may be
126 /** Used to temporarily hold results in Cursor objects. */
177 * Used to pass results from {@link DefaultFilter#performFiltering(CharSequence)} to
213 final FilterResults results = new FilterResults();
219 // Return empty results.
220 return results;
256 results.values = new DefaultFilterResult(
259 results.count = 1;
269 return results;
273 protected void publishResults(final CharSequence constraint, FilterResults results) {
278 if (results.values != null) {
279 DefaultFilterResult defaultFilterResult = (DefaultFilterResult) results.values;
284 // If there are no local results, in the new result set, cache off what had been
318 // After having local results, check the size of results. If the results are
362 final FilterResults results = new FilterResults();
363 results.values = null;
364 results.count = 0;
372 // Assuming the result should contain fairly small results (at most ~10),
387 results.values = tempEntries;
388 results.count = 1;
397 return results;
401 protected void publishResults(final CharSequence constraint, FilterResults results) {
412 if (results.count > 0) {
415 (ArrayList<TemporaryEntry>) results.values;
433 // we are waiting for, clear the temp results
434 if (results.count > 0 || mRemainingDirectoryCount == 0) {
462 * After having all results from Cursor objects, all destinations in mEntryMap are copied to
476 /** The number of directories this adapter is waiting for results. */
494 * - results from directories are slow to come
597 * @param callback callback to return results in case of success or failure
638 // all local results.
701 // Directory search started. We may show "waiting" message if directory results are slow
709 * wants to add an additional entry to the results. Derived classes should override