HomeSort by relevance Sort by last modified time
    Searched refs:cookie2 (Results 1 - 6 of 6) sorted by null

  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965CommentUrlAttributeHandler.java 53 SetCookie2 cookie2 = (SetCookie2) cookie; local
54 cookie2.setCommentURL(commenturl);
RFC2965DiscardAttributeHandler.java 53 SetCookie2 cookie2 = (SetCookie2) cookie; local
54 cookie2.setDiscard(true);
RFC2965PortAttributeHandler.java 111 SetCookie2 cookie2 = (SetCookie2) cookie; local
114 cookie2.setPorts(ports);
  /external/webkit/WebCore/inspector/front-end/
CookieItemsView.js 180 function localeCompare(field, cookie1, cookie2)
182 return sortDirection * (cookie1[field] + "").localeCompare(cookie2[field] + "")
185 function numberCompare(field, cookie1, cookie2)
187 return sortDirection * (cookie1[field] - cookie2[field]);
190 function expiresCompare(cookie1, cookie2)
192 if (cookie1.session !== cookie2.session)
198 return sortDirection * (cookie1.expires - cookie2.expires);
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieManagerTest.java 227 final String cookie2 = "cookie2=sue"; local
234 String value2 = cookie2 + "; expires=" + date.toGMTString();
245 assertTrue(allCookies.contains(cookie2));
252 return !c.contains(cookie1) && c.contains(cookie2) && c.contains(cookie3);
261 return !c.contains(cookie1) && c.contains(cookie2) && !c.contains(cookie3);
  /frameworks/base/core/java/android/webkit/
CookieManager.java 206 public int compare(Cookie cookie1, Cookie cookie2) {
213 int diff = cookie2.path.length() - cookie1.path.length();
216 diff = cookie2.domain.length() - cookie1.domain.length();
219 // If cookie2 has a null value, it should come later in
221 if (cookie2.value == null) {
228 // Now we know that cookie2 does not have a null value, if
234 return cookie1.name.compareTo(cookie2.name);
    [all...]

Completed in 126 milliseconds