OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cookiestring
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/android/webkit/
CookieManager.java
768
* parseCookie() parses the
cookieString
which is a comma-separated list of
778
* @param
cookieString
The string coming from "Set-Cookie:"
782
String
cookieString
) {
786
int length =
cookieString
.length();
796
if (
cookieString
.charAt(index) == WHITE_SPACE) {
810
int semicolonIndex =
cookieString
.indexOf(SEMICOLON, index);
811
int equalIndex =
cookieString
.indexOf(EQUAL, index);
826
cookie.name =
cookieString
.substring(index, semicolonIndex);
829
cookie.name =
cookieString
.substring(index, equalIndex);
833
(
cookieString
.charAt(equalIndex + 1) == QUOTATION))
[
all
...]
/external/webkit/WebCore/platform/mac/
CookieJar.mm
112
String
cookieString
= cookieStr.contains('=') ? cookieStr : cookieStr + "=";
115
NSArray *cookies = [NSHTTPCookie cookiesWithResponseHeaderFields:[NSDictionary dictionaryWithObject:
cookieString
forKey:@"Set-Cookie"] forURL:cookieURL];
/external/webkit/WebCore/platform/network/win/
CookieJarCFNetWin.cpp
82
String
cookieString
= value.contains('=') ? value : value + "=";
84
RetainPtr<CFStringRef> cookieStringCF(AdoptCF,
cookieString
.createCFString());
/cts/tests/src/android/webkit/cts/
CtsTestServer.java
511
StringBuilder
cookieString
= new StringBuilder(100);
515
if (
cookieString
.length() > 0) {
516
cookieString
.append("|");
518
cookieString
.append(value);
526
response.setEntity(createEntity("<html><head><title>" +
cookieString
+
527
"</title></head><body>" +
cookieString
+ "</body></html>"));
[
all
...]
/external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm
[
all
...]
/external/webkit/WebKit/mac/Plugins/
WebNetscapePluginView.mm
[
all
...]
Completed in 526 milliseconds