Searched defs:attrValue (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
H A DHttpCookie.java1032 public void assign(HttpCookie cookie, String attrName, String attrValue); argument
1038 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1039 if (cookie.getComment() == null) cookie.setComment(attrValue);
1043 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1044 if (cookie.getCommentURL() == null) cookie.setCommentURL(attrValue);
1048 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1053 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1054 if (cookie.getDomain() == null) cookie.setDomain(attrValue);
1058 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1060 long maxage = Long.parseLong(attrValue);
1105 assignAttribute(HttpCookie cookie, String attrName, String attrValue) argument
[all...]

Completed in 53 milliseconds