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

/external/chromium_org/net/http/
H A Dhttp_content_disposition.cc351 std::string::const_iterator type_end = delimiter; local
352 HttpUtil::TrimLWS(&type_begin, &type_end);
357 if (!HttpUtil::IsToken(type_begin, type_end))
362 DCHECK(std::find(type_begin, type_end, '=') == type_end);
364 if (LowerCaseEqualsASCII(type_begin, type_end, "inline")) {
366 } else if (LowerCaseEqualsASCII(type_begin, type_end, "attachment")) {
H A Dhttp_util.cc92 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val); local
93 if (type_end == std::string::npos)
94 type_end = content_type_str.length();
101 size_t param_start = content_type_str.find_first_of(';', type_end);
164 begin + type_end,
167 mime_type->assign(begin + type_val, begin + type_end);
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
H A Ddata_socket.cc263 const char* type_end = strstr(headers, "\r\n"); local
264 if (type_end == NULL)
265 type_end = end;
266 content_type_.assign(headers, type_end);

Completed in 818 milliseconds