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

/external/chromium/net/http/
H A Dhttp_util.cc97 size_t type_val = content_type_str.find_first_not_of(HTTP_LWS);
99 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val);
117 HTTP_LWS, cur_param_start);
139 charset_val = content_type_str.find_first_not_of(HTTP_LWS, charset_val);
147 charset_end = std::min(content_type_str.find_first_of(HTTP_LWS ";(",
354 return strchr(HTTP_LWS, c) != NULL;
H A Dhttp_auth.cc113 StringTokenizer tok(begin, end, HTTP_LWS);
H A Dhttp_util.h19 #define HTTP_LWS " \t" macro
90 // This definition corresponds with the HTTP_LWS macro, and does not match
94 // Trim HTTP_LWS chars from the beginning and end of the string.
H A Dhttp_response_headers.cc719 TrimString(value.substr(kPrefix.size(), len), HTTP_LWS, &value);
728 while (end > begin_pos && strchr(HTTP_LWS, value[end - 1]))
740 while (begin_pos < value.size() && strchr(HTTP_LWS, value[begin_pos]))
/external/chromium_org/net/http/
H A Dhttp_auth.cc125 base::StringTokenizer tok(begin, end, HTTP_LWS);
H A Dhttp_util.h20 #define HTTP_LWS " \t" macro
96 // This definition corresponds with the HTTP_LWS macro, and does not match
100 // Trim HTTP_LWS chars from the beginning and end of the string.
H A Dhttp_util.cc104 size_t type_val = content_type_str.find_first_not_of(HTTP_LWS);
106 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val);
152 charset_val = content_type_str.find_first_not_of(HTTP_LWS, charset_val);
160 charset_end = std::min(content_type_str.find_first_of(HTTP_LWS ";(",
409 return strchr(HTTP_LWS, c) != NULL;

Completed in 164 milliseconds