Lines Matching defs:attrValue

983             public void assign(HttpCookie cookie, String attrName, String attrValue);
989 public void assign(HttpCookie cookie, String attrName, String attrValue) {
990 if (cookie.getComment() == null) cookie.setComment(attrValue);
994 public void assign(HttpCookie cookie, String attrName, String attrValue) {
995 if (cookie.getCommentURL() == null) cookie.setCommentURL(attrValue);
999 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1004 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1005 if (cookie.getDomain() == null) cookie.setDomain(attrValue);
1009 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1011 long maxage = Long.parseLong(attrValue);
1019 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1020 if (cookie.getPath() == null) cookie.setPath(attrValue);
1024 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1025 if (cookie.getPortlist() == null) cookie.setPortlist(attrValue == null ? "" : attrValue);
1029 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1034 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1039 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1041 int version = Integer.parseInt(attrValue);
1049 public void assign(HttpCookie cookie, String attrName, String attrValue) {
1051 cookie.setMaxAge(cookie.expiryDate2DeltaSeconds(attrValue));
1058 String attrValue)
1061 attrValue = stripOffSurroundingQuote(attrValue);
1065 assignor.assign(cookie, attrName, attrValue);