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

  /external/chromium_org/net/http/
http_auth_challenge_tokenizer.cc 46 base::StringTokenizer tok(begin, end, HTTP_LWS);
http_util.h 20 #define HTTP_LWS " \t"
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.
http_util.cc 90 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 45 milliseconds