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

  /external/chromium/net/http/
http_util.cc 97 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;
http_auth.cc 113 StringTokenizer tok(begin, end, HTTP_LWS);
http_util.h 19 #define HTTP_LWS " \t"
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.
http_response_headers.cc 719 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]))
    [all...]
  /external/chromium_org/net/http/
http_auth.cc 125 base::StringTokenizer tok(begin, end, HTTP_LWS);
http_util.h 20 #define HTTP_LWS " \t"
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.
http_util.cc 104 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 349 milliseconds