Home | History | Annotate | Download | only in client

Lines Matching refs:it

82      * If the given cookie has already expired it will not be added, but existing 
93 for (Iterator<Cookie> it = cookies.iterator(); it.hasNext();) {
94 if (cookieComparator.compare(cookie, it.next()) == 0) {
95 it.remove();
107 * in the given array order. If any of the given cookies has already expired it will
146 for (Iterator<Cookie> it = cookies.iterator(); it.hasNext();) {
147 if (it.next().isExpired(date)) {
148 it.remove();