OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cookiestring
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/ManualTests/
cookieSpeedTest.html
11
var
cookieString
= "cookie" + randomNumber + "=true; expires=" + time.toGMTString();
13
document.cookie =
cookieString
;
/external/chromium_org/third_party/WebKit/Source/core/loader/
CookieJar.cpp
61
void setCookies(Document* document, const KURL& url, const String&
cookieString
)
66
cookieJar->setCookie(url, document->firstPartyForCookies(),
cookieString
);
CookieJar.h
40
void setCookies(Document*, const KURL&, const String&
cookieString
);
/cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java
722
StringBuilder
cookieString
= new StringBuilder(100);
723
cookieString
.append(cookies.length);
726
cookieString
.append("|");
728
cookieString
.append(value);
736
response.setEntity(createPage(
cookieString
.toString(),
cookieString
.toString()));
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/
Inspector-0.1.json
160
"description": "Returns all browser cookies. Depending on the backend support, will either return detailed cookie information in the <code>cookie</code> field or string cookie representation using <code>
cookieString
</code>.",
[
all
...]
Inspector-1.0.json
239
"description": "Returns all browser cookies. Depending on the backend support, will either return detailed cookie information in the <code>cookie</code> field or string cookie representation using <code>
cookieString
</code>.",
[
all
...]
Inspector-1.1.json
266
"description": "Returns all browser cookies. Depending on the backend support, will either return detailed cookie information in the <code>cookie</code> field or string cookie representation using <code>
cookieString
</code>.",
[
all
...]
Completed in 179 milliseconds