OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ClientCookie
(Results
1 - 25
of
35
) sorted by null
1
2
/external/apache-http/src/org/apache/http/impl/cookie/
RFC2965VersionAttributeHandler.java
34
import org.apache.http.cookie.
ClientCookie
;
89
if (cookie instanceof
ClientCookie
90
&& !((
ClientCookie
) cookie).containsAttribute(
ClientCookie
.VERSION_ATTR)) {
RFC2965PortAttributeHandler.java
36
import org.apache.http.cookie.
ClientCookie
;
137
if (cookie instanceof
ClientCookie
138
&& ((
ClientCookie
) cookie).containsAttribute(
ClientCookie
.PORT_ATTR)) {
160
if (cookie instanceof
ClientCookie
161
&& ((
ClientCookie
) cookie).containsAttribute(
ClientCookie
.PORT_ATTR)) {
RFC2109Spec.java
40
import org.apache.http.cookie.
ClientCookie
;
93
registerAttribHandler(
ClientCookie
.VERSION_ATTR, new RFC2109VersionHandler());
94
registerAttribHandler(
ClientCookie
.PATH_ATTR, new BasicPathHandler());
95
registerAttribHandler(
ClientCookie
.DOMAIN_ATTR, new RFC2109DomainHandler());
96
registerAttribHandler(
ClientCookie
.MAX_AGE_ATTR, new BasicMaxAgeHandler());
97
registerAttribHandler(
ClientCookie
.SECURE_ATTR, new BasicSecureHandler());
98
registerAttribHandler(
ClientCookie
.COMMENT_ATTR, new BasicCommentHandler());
99
registerAttribHandler(
ClientCookie
.EXPIRES_ATTR, new BasicExpiresHandler(
228
if (cookie instanceof
ClientCookie
229
&& ((
ClientCookie
) cookie).containsAttribute(ClientCookie.PATH_ATTR))
[
all
...]
BrowserCompatSpec.java
41
import org.apache.http.cookie.
ClientCookie
;
94
registerAttribHandler(
ClientCookie
.PATH_ATTR, new BasicPathHandler());
95
registerAttribHandler(
ClientCookie
.DOMAIN_ATTR, new BasicDomainHandler());
96
registerAttribHandler(
ClientCookie
.MAX_AGE_ATTR, new BasicMaxAgeHandler());
97
registerAttribHandler(
ClientCookie
.SECURE_ATTR, new BasicSecureHandler());
98
registerAttribHandler(
ClientCookie
.COMMENT_ATTR, new BasicCommentHandler());
99
registerAttribHandler(
ClientCookie
.EXPIRES_ATTR, new BasicExpiresHandler(
NetscapeDraftSpec.java
40
import org.apache.http.cookie.
ClientCookie
;
84
registerAttribHandler(
ClientCookie
.PATH_ATTR, new BasicPathHandler());
85
registerAttribHandler(
ClientCookie
.DOMAIN_ATTR, new NetscapeDomainHandler());
86
registerAttribHandler(
ClientCookie
.MAX_AGE_ATTR, new BasicMaxAgeHandler());
87
registerAttribHandler(
ClientCookie
.SECURE_ATTR, new BasicSecureHandler());
88
registerAttribHandler(
ClientCookie
.COMMENT_ATTR, new BasicCommentHandler());
89
registerAttribHandler(
ClientCookie
.EXPIRES_ATTR, new BasicExpiresHandler(
RFC2965DomainAttributeHandler.java
36
import org.apache.http.cookie.
ClientCookie
;
129
if (cookie instanceof
ClientCookie
130
&& ((
ClientCookie
) cookie).containsAttribute(
ClientCookie
.DOMAIN_ATTR)) {
RFC2965Spec.java
42
import org.apache.http.cookie.
ClientCookie
;
76
registerAttribHandler(
ClientCookie
.DOMAIN_ATTR, new RFC2965DomainAttributeHandler());
77
registerAttribHandler(
ClientCookie
.PORT_ATTR, new RFC2965PortAttributeHandler());
78
registerAttribHandler(
ClientCookie
.COMMENTURL_ATTR, new RFC2965CommentUrlAttributeHandler());
79
registerAttribHandler(
ClientCookie
.DISCARD_ATTR, new RFC2965DiscardAttributeHandler());
80
registerAttribHandler(
ClientCookie
.VERSION_ATTR, new RFC2965VersionAttributeHandler());
190
if (cookie instanceof
ClientCookie
) {
192
String s = ((
ClientCookie
) cookie).getAttribute(
ClientCookie
.PORT_ATTR);
BasicClientCookie.java
39
import org.apache.http.cookie.
ClientCookie
;
65
public class BasicClientCookie implements SetCookie,
ClientCookie
, Cloneable {
/external/apache-http/src/org/apache/http/cookie/
ClientCookie.java
2
* $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/
ClientCookie
.java $
35
*
ClientCookie
extends the standard {@link Cookie} interface with
52
public interface
ClientCookie
extends Cookie {
/external/robolectric/v1/lib/main/
httpclient-4.0.3.jar
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.0.1/
httpclient-4.0.1.jar
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.0.3/
httpclient-4.0.3.jar
/prebuilts/devtools/tools/lib/
httpclient-4.1.1.jar
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar
/prebuilts/sdk/org.apache.http.legacy/
org.apache.http.legacy.jar
/prebuilts/tools/common/http-client/
httpclient-4.1.1.jar
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.1/
httpclient-4.2.1.jar
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.6/
httpclient-4.2.6.jar
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar
/prebuilts/tools/common/offline-m2/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.3.2/
httpclient-4.3.2.jar
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
wagon-http-2.6-shaded.jar
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/12/
android.jar
Completed in 230 milliseconds
1
2