11411142114311441145114611471148114911501151
for (i++; i < length && contentType.charAt(i) != '\"'; i++) boundary.append(contentType.charAt(i)); } else { for (; i < length && (ch = contentType.charAt(i)) != ' ' && ch != ';'; i++) { boundary.append(ch); } }
10961097109810991100110111021103110411051106
if (cb.length() == 0) { _methodString = "GET"; return _methodString; } switch (cb.charAt(0)) { case 'G': _methodString = cb.equals(_getCb) ? "GET" : cb.toString(); break; case 'H':
787788789790791792793794795796797
if (len == 0) throw new NumberFormatException(value.toString()); int iValue = 0; int i = 0; int ch = value.charAt(i); int sign = 1; if (ch == '+') { if (i + 1 < len) ch = value.charAt(++i); else
791792793794795796797798799800801
int i = 0; int ch = value.charAt(i); int sign = 1; if (ch == '+') { if (i + 1 < len) ch = value.charAt(++i); else throw new NumberFormatException(value.toString()); } else if (ch == '-') { sign = -1; if (i + 1 < len)
797798799800801802803804805806807
else throw new NumberFormatException(value.toString()); } else if (ch == '-') { sign = -1; if (i + 1 < len) ch = value.charAt(++i); else throw new NumberFormatException(value.toString()); } for (; i < len && (ch = value.charAt(i)) >= '0' && ch <= '9'; i++)
802803804805806807808809810811812
ch = value.charAt(++i); else throw new NumberFormatException(value.toString()); } for (; i < len && (ch = value.charAt(i)) >= '0' && ch <= '9'; i++) iValue = 10 * iValue + ch - '0'; if (i < len) throw new NumberFormatException(value.toString());
889890891892893894895896897898899
int i = value.indexOf("charset"); if (i < 0) return null; int len = value.length(); for (i += 7; i < len && Character.isWhitespace(value.charAt(i)); i++) { } if (i >= len || value.charAt(i) != '=') return null;
892893894895896897898899900901902
int len = value.length(); for (i += 7; i < len && Character.isWhitespace(value.charAt(i)); i++) { } if (i >= len || value.charAt(i) != '=') return null; for (i++; i < len && Character.isWhitespace(value.charAt(i)); i++) { }
895896897898899900901902903904905
} if (i >= len || value.charAt(i) != '=') return null; for (i++; i < len && Character.isWhitespace(value.charAt(i)); i++) { } if (i >= len) return null;
901902903904905906907908909910911
} if (i >= len) return null; char end = value.charAt(i); if (end == '"') { int tail; for (tail = ++i; tail < len; tail++) { if (value.charAt(tail) == end) break;