Searched refs:type_end (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/net/http/ |
D | http_content_disposition.cc | 369 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()
|
D | http_util.cc | 106 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/ |
D | data_socket.cc | 263 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/ |
D | http_util.cc | 99 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/ |
D | ModuleDebugInfoPrinter.cpp | 82 E = Finder.type_end(); I != E; ++I) { in print()
|
/external/llvm/include/llvm/ |
D | DebugInfo.h | 776 iterator type_end() const { return TYs.end(); } in type_end() function
|
/external/llvm/lib/IR/ |
D | Verifier.cpp | 2328 E = Finder.type_end(); I != E; ++I) in verifyDebugInfo()
|