Searched refs:type_end (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/net/http/
H A Dhttp_content_disposition.cc369 std::string::const_iterator type_end = delimiter; local
370 HttpUtil::TrimLWS(&type_begin, &type_end);
375 if (!HttpUtil::IsToken(type_begin, type_end))
380 DCHECK(std::find(type_begin, type_end, '=') == type_end);
382 if (LowerCaseEqualsASCII(type_begin, type_end, "inline")) {
384 } else if (LowerCaseEqualsASCII(type_begin, type_end, "attachment")) {
H A Dhttp_util.cc106 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val);
107 if (string::npos == type_end)
108 type_end = content_type_str.length();
115 size_t param_start = content_type_str.find_first_of(';', type_end);
178 begin + type_end,
181 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);
/external/llvm/lib/Analysis/
H A DModuleDebugInfoPrinter.cpp82 E = Finder.type_end(); I != E; ++I) {
/external/chromium/net/http/
H A Dhttp_util.cc99 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val);
100 if (string::npos == type_end)
101 type_end = content_type_str.length();
108 size_t param_start = content_type_str.find_first_of(';', type_end);
166 content_type_str.begin() + type_end,
170 content_type_str.begin() + type_end);
/external/llvm/include/llvm/
H A DDebugInfo.h776 iterator type_end() const { return TYs.end(); } function in class:llvm::DebugInfoFinder
/external/llvm/lib/IR/
H A DVerifier.cpp2328 E = Finder.type_end(); I != E; ++I)

Completed in 477 milliseconds