Searched defs:results (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Email/src/org/apache/james/mime4j/field/address/
H A DAddress.java41 final void addMailboxesTo(ArrayList results) { argument
42 doAddMailboxesTo(results);
50 protected abstract void doAddMailboxesTo(ArrayList results); argument
H A DGroup.java69 protected void doAddMailboxesTo(ArrayList results) { argument
71 results.add(mailboxList.get(i));
H A DMailbox.java112 protected final void doAddMailboxesTo(ArrayList results) { argument
113 results.add(this);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DRankAwarePromoter.java44 if (DBG) Log.d(TAG, "Available results: " + suggestions);
46 // Split non-empty results into default sources and other, positioned at first suggestion
70 // Then try to fill with the remaining promoted results
96 * @param results the list of CorpusResults from which to promote.
103 private int roundRobin(LinkedList<CorpusResult> results, int maxPromoted, int stripeSize, argument
106 if (maxPromoted > 0 && !results.isEmpty()) {
107 for (Iterator<CorpusResult> iter = results.iterator();
H A DWebCorpus.java164 protected Result createResult(String query, ArrayList<SourceResult> results, int latency) { argument
165 return new WebResult(query, results, latency);
170 public WebResult(String query, ArrayList<SourceResult> results, int latency) { argument
171 super(query, results, latency);
H A DMultiSourceCorpus.java70 * Creates a corpus result object for a set of source results.
74 * @param results The results of the queries.
78 protected Result createResult(String query, ArrayList<SourceResult> results, int latency) { argument
79 return new Result(query, results, latency);
148 ArrayList<SourceResult> results = consumer.getValues();
150 Result result = createResult(query, results, latency);
156 * Base class for results returned by {@link MultiSourceCorpus#getSuggestions}.
167 public Result(String userQuery, ArrayList<SourceResult> results, int latency) { argument
169 mResults = results;
[all...]
/packages/apps/Email/src/org/apache/commons/io/
H A DDirectoryWalker.java60 * List results = new ArrayList();
61 * walk(startDirectory, results);
62 * return results;
65 * protected boolean handleDirectory(File directory, int depth, Collection results) {
76 * protected void handleFile(File file, int depth, Collection results) {
79 * results.add(file);
206 * private void handleIsCancelled(File file, int depth, Collection results) {
210 * protected void handleCancelled(File startDirectory, Collection results, CancelException cancel) {
226 * protected boolean handleDirectory(File directory, int depth, Collection results) throws IOException {
234 * protected void handleFile(File file, int depth, Collection results) throw
329 walk(File startDirectory, Collection results) argument
350 walk(File directory, int depth, Collection results) argument
393 checkIfCancelled(File file, int depth, Collection results) argument
434 handleIsCancelled( File file, int depth, Collection results) argument
453 handleCancelled(File startDirectory, Collection results, CancelException cancel) argument
469 handleStart(File startDirectory, Collection results) argument
488 handleDirectory(File directory, int depth, Collection results) argument
503 handleDirectoryStart(File directory, int depth, Collection results) argument
517 handleFile(File file, int depth, Collection results) argument
531 handleRestricted(File directory, int depth, Collection results) argument
545 handleDirectoryEnd(File directory, int depth, Collection results) argument
557 handleEnd(Collection results) argument
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DBrowserProvider.java706 public ResultsCursor(ArrayList<String> results) { argument
707 mResults = results;
762 * Provide a set of results to be returned to query, intended to be used
764 * @param results Strings to display in the dropdown from the SearchDialog
766 /* package */ void setQueryResults(ArrayList<String> results) { argument
767 if (results == null) {
770 mResultsCursor = new ResultsCursor(results);
783 Cursor results = mResultsCursor;
785 return results;
H A DTab.java200 * Get the latest array of voice search results, to be passed to the
209 * @param intent Intent which has the results to use, or an index into the
210 * results when reusing the old results.
214 ArrayList<String> results = intent.getStringArrayListExtra(
216 if (results != null) {
226 int size = results.size();
237 mVoiceSearchData = new VoiceSearchData(results, urls, htmls,
322 public VoiceSearchData(ArrayList<String> results, argument
325 mVoiceSearchResults = results;
[all...]
/packages/apps/Contacts/src/com/android/contacts/ui/
H A DEditContactActivity.java710 ContentProviderResult[] results = null;
712 results = resolver.applyBatch(ContactsContract.AUTHORITY, diff);
715 final long rawContactId = getRawContactId(state, diff, results);
746 final ContentProviderResult[] results) {
759 return ContentUris.parseId(results[i].uri);
744 getRawContactId(EntitySet state, final ArrayList<ContentProviderOperation> diff, final ContentProviderResult[] results) argument
/packages/apps/Email/src/com/android/email/activity/
H A DMessageView.java1262 protected void onPostExecute(String[] results) { argument
1263 if (results == null) {
1266 reloadUiFromBody(results[0], results[1]); // text, html
1438 * Controller results listener. This completely replaces MessagingListener

Completed in 274 milliseconds