Home | History | Annotate | Download | only in mime

Lines Matching refs:cut

83                 int cut = header.indexOf('"', pos);
84 if (cut == -1)
87 result.put(key, header.substring(pos, cut));
88 pos = cut + 2;
96 int cut = header.indexOf(';', pos);
97 if (cut == -1) {
101 result.put(key, header.substring(pos, cut));
102 pos = cut + 1;
105 int cut = header.indexOf('=', pos);
107 if (cut == -1)
110 key = header.substring(pos, cut).toLowerCase().trim();
111 pos = cut + 1;
251 // int cut = line.indexOf(':');
252 // if (cut == -1)
256 // line.substring(0, cut).trim().toLowerCase(),
257 // line.substring(cut + 1).trim());
261 + line.substring(0, cut).trim().toLowerCase()
263 + line.substring(cut + 1).trim());*/