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

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DConversation.java690 * found in the collection of conversations specified as the haystack. False
693 * @param haystack
695 * @return true if the needle was found in the haystack, false otherwise.
697 public final static boolean contains(Collection<Conversation> haystack, Conversation needle) { argument
698 // If the haystack is empty, it cannot contain anything.
699 if (haystack == null || haystack.size() <= 0) {
707 for (final Conversation c : haystack) {

Completed in 57 milliseconds