HomeSort by relevance Sort by last modified time
    Searched full:cookie1 (Results 1 - 4 of 4) sorted by null

  /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)
193 return sortDirection * (cookie1.session ? 1 : -1);
195 if (cookie1.session)
198 return sortDirection * (cookie1.expires - cookie2.expires);
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieManagerTest.java 226 final String cookie1 = "cookie1=peter"; local
230 mCookieManager.setCookie(url, cookie1); // session cookie
244 assertTrue(allCookies.contains(cookie1));
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();
224 if (cookie1.value != null) {
227 } else if (cookie1.value == null) {
229 // cookie1 has a null value, place it later in the list.
234 return cookie1.name.compareTo(cookie2.name);
    [all...]
  /external/libvpx/examples/includes/geshi/geshi/
kixtart.php 87 'Cookie1',

Completed in 179 milliseconds