HomeSort by relevance Sort by last modified time
    Searched refs:HTTP_LWS (Results 1 - 4 of 4) sorted by null

  /external/chromium/net/http/
http_util.cc 96 size_t type_val = content_type_str.find_first_not_of(HTTP_LWS);
98 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val);
115 size_t param_name_start = content_type_str.find_first_not_of(HTTP_LWS,
137 charset_val = content_type_str.find_first_not_of(HTTP_LWS, charset_val);
145 charset_end = std::min(content_type_str.find_first_of(HTTP_LWS ";(",
346 return strchr(HTTP_LWS, c) != NULL;
http_auth.cc 91 StringTokenizer tok(begin, end, HTTP_LWS);
http_util.h 16 #define HTTP_LWS " \t"
80 // This definition corresponds with the HTTP_LWS macro, and does not match
84 // Trim HTTP_LWS chars from the beginning and end of the string.
http_response_headers.cc 650 TrimString(value.substr(kPrefix.size(), len), HTTP_LWS, &value);
659 while (end > begin_pos && strchr(HTTP_LWS, value[end - 1]))
671 while (begin_pos < value.size() && strchr(HTTP_LWS, value[begin_pos]))
    [all...]

Completed in 274 milliseconds