Searched refs:terms (Results 1 - 4 of 4) sorted by relevance

/javamail/mail/src/main/java/javax/mail/search/
H A DAndTerm.java6 * The contents of this file are subject to the terms of either the GNU
55 * The array of terms on which the AND operator should be
60 private SearchTerm[] terms; field in class:AndTerm
65 * Constructor that takes two terms.
71 terms = new SearchTerm[2];
72 terms[0] = t1;
73 terms[1] = t2;
79 * @param t array of terms
82 terms = new SearchTerm[t.length]; // clone the array
84 terms[
[all...]
H A DOrTerm.java6 * The contents of this file are subject to the terms of either the GNU
54 * The array of terms on which the OR operator should
59 private SearchTerm[] terms; field in class:OrTerm
70 terms = new SearchTerm[2];
71 terms[0] = t1;
72 terms[1] = t2;
78 * @param t array of search terms
81 terms = new SearchTerm[t.length];
83 terms[i] = t[i];
87 * Return the search terms
[all...]
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/
H A DSearchSequence.java6 * The contents of this file are subject to the terms of either the GNU
59 * support for additional product-specific search terms.
133 * Check if the "text" terms in the given SearchTerm contain
156 * Check if any of the "text" terms in the given SearchTerms contain
159 * @param terms the search terms
162 public static boolean isAscii(SearchTerm[] terms) { argument
163 for (int i = 0; i < terms.length; i++)
164 if (!isAscii(terms[i])) // outta here !
187 // Combine the sequences for both terms
[all...]
/javamail/
H A Dmail.sig1143 fld protected javax.mail.search.SearchTerm[] terms
1257 fld protected javax.mail.search.SearchTerm[] terms

Completed in 39 milliseconds