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

/external/chromium_org/net/http/
H A Dhttp_auth_challenge_tokenizer.cc46 base::StringTokenizer tok(begin, end, HTTP_LWS);
H A Dhttp_util.h20 #define HTTP_LWS " \t" macro
103 // This definition corresponds with the HTTP_LWS macro, and does not match
107 // Trim HTTP_LWS chars from the beginning and end of the string.
H A Dhttp_util.cc90 size_t type_val = content_type_str.find_first_not_of(HTTP_LWS);
92 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val);
138 charset_val = content_type_str.find_first_not_of(HTTP_LWS, charset_val);
146 charset_end = std::min(content_type_str.find_first_of(HTTP_LWS ";(",
408 return strchr(HTTP_LWS, c) != NULL;

Completed in 94 milliseconds