Home
last modified time | relevance | path

Searched refs:ParseValueString (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/net/cookies/
Dcanonical_cookie.cc264 std::string parsed_value = ParsedCookie::ParseValueString(value); in Create()
268 std::string parsed_domain = ParsedCookie::ParseValueString(domain); in Create()
277 std::string parsed_path = ParsedCookie::ParseValueString(path); in Create()
Dparsed_cookie_unittest.cc245 ParsedCookie::ParseValueString("hello\nworld")); in TEST()
247 ParsedCookie::ParseValueString("fs!!@;helloworld")); in TEST()
249 ParsedCookie::ParseValueString("hello world\tgood\rbye")); in TEST()
251 ParsedCookie::ParseValueString("A=B=C;D=E")); in TEST()
Dparsed_cookie.h99 static std::string ParseValueString(const std::string& value);
Dparsed_cookie.cc333 std::string ParsedCookie::ParseValueString(const std::string& value) { in ParseValueString() function in net::ParsedCookie