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

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
CookieStoreTest.java 70 HttpCookie cookie2 = new HttpCookie(" NaME1 ", " TESTVALUE1 "); local
71 cookieStore.add(uri, cookie2);
75 assertTrue(list.contains(cookie2));
147 HttpCookie cookie2 = new HttpCookie("cookie_name2", "cookie_value2"); local
149 cookieStore.add(uri1, cookie2);
218 HttpCookie cookie2 = new HttpCookie("cookie_name2", "cookie_value2"); local
220 cookieStore.add(uri2, cookie2);
224 assertTrue(list.contains(cookie2));
268 HttpCookie cookie2 = new HttpCookie("cookie_name2", "cookie_value2"); local
269 cookieStore.add(uri1, cookie2);
300 HttpCookie cookie2 = new HttpCookie("cookie_name2", "cookie_value2"); local
386 HttpCookie cookie2 = new HttpCookie("cookie_name2", "cookie_value2"); local
    [all...]
HttpCookieTest.java 406 HttpCookie cookie2 = new HttpCookie("TesT", "TEstValue"); local
410 assertTrue(cookie2.equals(cookie));
411 assertTrue(cookie.equals(cookie2));
415 cookie2.setDomain("test");
416 assertFalse(cookie.equals(cookie2));
418 assertTrue(cookie.equals(cookie2));
421 assertFalse(cookie.equals(cookie2));
422 cookie2.setPath("temp\\E");
423 assertFalse(cookie.equals(cookie2));
427 cookie2.setPath("temp\\e")
    [all...]
  /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/Source/WebCore/inspector/front-end/
CookiesTable.js 144 function localeCompare(field, cookie1, cookie2)
146 return sortDirection * (cookie1[field] + "").localeCompare(cookie2[field] + "")
149 function numberCompare(field, cookie1, cookie2)
151 return sortDirection * (cookie1[field] - cookie2[field]);
154 function expiresCompare(cookie1, cookie2)
156 if (cookie1.session !== cookie2.session)
162 return sortDirection * (cookie1.expires - cookie2.expires);
  /hardware/ti/omap4xxx/camera/inc/
Encoder_libjpeg.h 43 void* cookie2,
112 void* cookie2,
115 mCancelEncoding(false), mCookie1(cookie1), mCookie2(cookie2), mCookie3(cookie3),
CameraHal.h 579 void EncoderDoneCb(void*, void*, CameraFrame::FrameType type, void* cookie1, void* cookie2);
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieManagerTest.java 228 final String cookie2 = "cookie2=sue"; local
235 String value2 = cookie2 + "; expires=" + date.toGMTString();
246 assertTrue(allCookies.contains(cookie2));
253 return !c.contains(cookie1) && c.contains(cookie2) && c.contains(cookie3);
262 return !c.contains(cookie1) && c.contains(cookie2) && !c.contains(cookie3);
  /external/chromium/chrome/browser/extensions/
extension_cookies_unittest.cc 136 net::CookieMonster::CanonicalCookie cookie2(
142 cookie2, "some cookie store"));
169 net::CookieMonster::CanonicalCookie cookie2(
174 cookie2).spec());
  /hardware/ti/omap4xxx/camera/
AppCallbackNotifier.cpp 40 void* cookie2,
45 cb->EncoderDoneCb(main_jpeg, thumb_jpeg, type, cookie2, cookie3);
51 void AppCallbackNotifier::EncoderDoneCb(void* main_jpeg, void* thumb_jpeg, CameraFrame::FrameType type, void* cookie1, void* cookie2)
76 if (cookie2) {
77 ExifElementsTable* exif = (ExifElementsTable*) cookie2;
97 cookie2 = NULL;
151 if (cookie2) {
152 delete (ExifElementsTable*) cookie2;
    [all...]
  /frameworks/base/core/java/android/webkit/
CookieManager.java 209 public int compare(Cookie cookie1, Cookie cookie2) {
216 int diff = cookie2.path.length() - cookie1.path.length();
219 diff = cookie2.domain.length() - cookie1.domain.length();
222 // If cookie2 has a null value, it should come later in
224 if (cookie2.value == null) {
231 // Now we know that cookie2 does not have a null value, if
237 return cookie1.name.compareTo(cookie2.name);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 489 MergeCookie cookie2 = new MergeCookie(node2); local
496 Object cookie = (i % 2) == 0 ? cookie1 : cookie2;
541 MergeCookie cookie2 = new MergeCookie(node2); local
548 Object cookie = (i % 2) == 0 ? cookie1 : cookie2;
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
logviewpainter.js 284 /^set-cookie2:/i,
  /prebuilt/common/http-client/
httpclient-4.1.1.jar 

Completed in 1173 milliseconds