Home
last modified time | relevance | path

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

/external/chromium_org/net/http/
Dhttp_content_disposition.cc369 std::string::const_iterator type_end = delimiter; in ConsumeDispositionType() local
370 HttpUtil::TrimLWS(&type_begin, &type_end); in ConsumeDispositionType()
375 if (!HttpUtil::IsToken(type_begin, type_end)) in ConsumeDispositionType()
380 DCHECK(std::find(type_begin, type_end, '=') == type_end); in ConsumeDispositionType()
382 if (LowerCaseEqualsASCII(type_begin, type_end, "inline")) { in ConsumeDispositionType()
384 } else if (LowerCaseEqualsASCII(type_begin, type_end, "attachment")) { in ConsumeDispositionType()
Dhttp_util.cc106 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val); in ParseContentType() local
107 if (string::npos == type_end) in ParseContentType()
108 type_end = content_type_str.length(); in ParseContentType()
115 size_t param_start = content_type_str.find_first_of(';', type_end); in ParseContentType()
178 begin + type_end, in ParseContentType()
181 mime_type->assign(begin + type_val, begin + type_end); in ParseContentType()
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
Ddata_socket.cc263 const char* type_end = strstr(headers, "\r\n"); in ParseContentLengthAndType() local
264 if (type_end == NULL) in ParseContentLengthAndType()
265 type_end = end; in ParseContentLengthAndType()
266 content_type_.assign(headers, type_end); in ParseContentLengthAndType()
/external/chromium/net/http/
Dhttp_util.cc99 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val); in ParseContentType() local
100 if (string::npos == type_end) in ParseContentType()
101 type_end = content_type_str.length(); in ParseContentType()
108 size_t param_start = content_type_str.find_first_of(';', type_end); in ParseContentType()
166 content_type_str.begin() + type_end, in ParseContentType()
170 content_type_str.begin() + type_end); in ParseContentType()
/external/llvm/lib/Analysis/
DModuleDebugInfoPrinter.cpp82 E = Finder.type_end(); I != E; ++I) { in print()
/external/llvm/include/llvm/
DDebugInfo.h776 iterator type_end() const { return TYs.end(); } in type_end() function
/external/llvm/lib/IR/
DVerifier.cpp2328 E = Finder.type_end(); I != E; ++I) in verifyDebugInfo()