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

  /external/chromium_org/chrome/browser/browsing_data/
canonical_cookie_hash.h 37 bool operator()(const net::CanonicalCookie& cookie1,
40 if (less_than(cookie1.Name(), cookie2.Name()))
42 if (less_than(cookie2.Name(), cookie1.Name()))
44 if (less_than(cookie1.Path(), cookie2.Path()))
46 if (less_than(cookie2.Path(), cookie1.Path()))
48 if (less_than(cookie1.Domain(), cookie2.Domain()))
50 if (less_than(cookie2.Domain(), cookie1.Domain()))
70 bool operator()(const net::CanonicalCookie& cookie1,
72 return cookie1.Name() == cookie2.Name() &&
73 cookie1.Domain() == cookie2.Domain() &
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/cookies/
cookies_unittest.cc 87 scoped_ptr<Cookie> cookie1(
90 EXPECT_EQ("ABC", cookie1->name);
91 EXPECT_EQ("DEF", cookie1->value);
92 EXPECT_EQ("www.foobar.com", cookie1->domain);
93 EXPECT_TRUE(cookie1->host_only);
94 EXPECT_EQ("/", cookie1->path);
95 EXPECT_FALSE(cookie1->secure);
96 EXPECT_FALSE(cookie1->http_only);
97 EXPECT_TRUE(cookie1->session);
98 EXPECT_FALSE(cookie1->expiration_date.get())
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
CookieStoreTest.java 140 HttpCookie cookie1 = new HttpCookie("cookie_name1", "cookie_value1"); local
142 cookieStore.add(uri1, cookie1);
205 HttpCookie cookie1 = new HttpCookie("cookie_name", "cookie_value"); local
207 cookieStore.add(uri1, cookie1);
209 assertTrue(list.contains(cookie1));
216 assertTrue(list.contains(cookie1));
220 cookieStore.add(uri2, cookie1);
254 HttpCookie cookie1 = new HttpCookie("cookie_name1", "cookie_value1"); local
255 cookieStore.add(uri1, cookie1);
278 HttpCookie cookie1 = new HttpCookie("cookie_name1", "cookie_value1") local
374 HttpCookie cookie1 = new HttpCookie("cookie_name1", "cookie_value1"); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
CookiesTable.js 194 function compareTo(getter, cookie1, cookie2)
196 return sortDirection * (getter.apply(cookie1) + "").compareTo(getter.apply(cookie2) + "")
199 function numberCompare(getter, cookie1, cookie2)
201 return sortDirection * (getter.apply(cookie1) - getter.apply(cookie2));
204 function expiresCompare(cookie1, cookie2)
206 if (cookie1.session() !== cookie2.session())
207 return sortDirection * (cookie1.session() ? 1 : -1);
209 if (cookie1.session())
212 if (cookie1.maxAge() && cookie2.maxAge())
213 return sortDirection * (cookie1.maxAge() - cookie2.maxAge())
    [all...]
  /hardware/ti/omap4-aah/camera/inc/
Encoder_libjpeg.h 53 void* cookie1,
148 void* cookie1,
152 mCancelEncoding(false), mCookie1(cookie1), mCookie2(cookie2), mCookie3(cookie3), mCookie4(cookie4),
201 void getCookies(void **cookie1, void **cookie2, void **cookie3) {
202 if (cookie1) *cookie1 = mCookie1;
CameraHal.h 720 void EncoderDoneCb(void*, void*, CameraFrame::FrameType type, void* cookie1, void* cookie2, void *cookie3);
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
Encoder_libjpeg.h 45 void* cookie1,
132 void* cookie1,
136 mCancelEncoding(false), mCookie1(cookie1), mCookie2(cookie2), mCookie3(cookie3),
186 void getCookies(void **cookie1, void **cookie2, void **cookie3) {
187 if (cookie1) *cookie1 = mCookie1;
CameraHal.h 585 void EncoderDoneCb(void*, void*, CameraFrame::FrameType type, void* cookie1, void* cookie2);
    [all...]
  /hardware/ti/omap4-aah/camera/
AppCallbackNotifier.cpp 35 void* cookie1,
41 if (cookie1 && !canceled) {
42 AppCallbackNotifier* cb = (AppCallbackNotifier*) cookie1;
60 void AppCallbackNotifier::EncoderDoneCb(void* main_jpeg, void* thumb_jpeg, CameraFrame::FrameType type, void* cookie1, void* cookie2, void *cookie3)
80 encoded_mem = (camera_memory_t*) cookie1;
    [all...]
  /hardware/ti/omap4xxx/camera/
AppCallbackNotifier.cpp 39 void* cookie1,
44 if (cookie1 && !canceled) {
45 AppCallbackNotifier* cb = (AppCallbackNotifier*) cookie1;
63 void AppCallbackNotifier::EncoderDoneCb(void* main_jpeg, void* thumb_jpeg, CameraFrame::FrameType type, void* cookie1, void* cookie2)
82 encoded_mem = (camera_memory_t*) cookie1;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 489 MergeCookie cookie1 = new MergeCookie(node1); local
497 Object cookie = (i % 2) == 0 ? cookie1 : cookie2;
541 MergeCookie cookie1 = new MergeCookie(node1); local
549 Object cookie = (i % 2) == 0 ? cookie1 : cookie2;
    [all...]

Completed in 6308 milliseconds