/external/chromium_org/net/cookies/ |
parsed_cookie_unittest.cc | 14 ParsedCookie pc("a=b"); 49 ParsedCookie pc("aBc=" + input + " ; path=\"/\" ; httponly "); 65 ParsedCookie pc("BLAHHH; path=/; secure;"); 76 ParsedCookie pc("BLAHHH; Path=/; sECuRe; httpONLY; pRIoRitY=hIgH"); 89 ParsedCookie pc("\"BLA\\\"HHH\"; path=/; secure;"); 101 ParsedCookie pc("a=\"B"); 110 ParsedCookie pc("=ABC"); 119 ParsedCookie pc("ABC=; path = /wee"); 130 ParsedCookie pc(" A = BC ;secure;;; httponly"); 144 ParsedCookie pc(" A=== BC ;secure;;; httponly") [all...] |
parsed_cookie.cc | 165 ParsedCookie::ParsedCookie(const std::string& cookie_line) 184 ParsedCookie::~ParsedCookie() { 187 bool ParsedCookie::IsValid() const { 191 CookiePriority ParsedCookie::Priority() const { 196 bool ParsedCookie::SetName(const std::string& name) { 207 bool ParsedCookie::SetValue(const std::string& value) { 219 bool ParsedCookie::SetPath(const std::string& path) { 223 bool ParsedCookie::SetDomain(const std::string& domain) [all...] |
canonical_cookie.h | 21 class ParsedCookie; 44 // in which pre-validation of the ParsedCookie has not been done. 45 CanonicalCookie(const GURL& url, const ParsedCookie& pc); 131 static std::string CanonPath(const GURL& url, const ParsedCookie& pc); 132 static base::Time CanonExpiration(const ParsedCookie& pc,
|
parsed_cookie.h | 17 class NET_EXPORT ParsedCookie { 28 ParsedCookie(const std::string& cookie_line); 29 ~ParsedCookie(); 106 // |*_index_| fields in ParsedCookie and is updated to the position where 142 DISALLOW_COPY_AND_ASSIGN(ParsedCookie);
|
canonical_cookie.cc | 67 const ParsedCookie& pc, 131 CanonicalCookie::CanonicalCookie(const GURL& url, const ParsedCookie& pc) 175 const ParsedCookie& pc) { 183 Time CanonicalCookie::CanonExpiration(const ParsedCookie& pc, 215 ParsedCookie parsed_cookie(cookie_line); 259 // Expect valid attribute tokens and values, as defined by the ParsedCookie 261 std::string parsed_name = ParsedCookie::ParseTokenString(name); 264 std::string parsed_value = ParsedCookie::ParseValueString(value); 268 std::string parsed_domain = ParsedCookie::ParseValueString(domain); 277 std::string parsed_path = ParsedCookie::ParseValueString(path) [all...] |
cookie_monster_perftest.cc | 102 ParsedCookie pc(cookie); 113 ParsedCookie pc(cookie);
|
cookie_monster_store_test.cc | 107 ParsedCookie pc(cookie_line);
|
cookie_monster.h | 40 class ParsedCookie; [all...] |
cookie_monster.cc | 198 const ParsedCookie& pc, [all...] |
/external/chromium_org/chrome/browser/browsing_data/ |
mock_browsing_data_cookie_helper.cc | 34 net::ParsedCookie pc(cookie_line);
|
browsing_data_cookie_helper_unittest.cc | 342 net::ParsedCookie pc("a=1");
|
/external/chromium/net/base/ |
cookie_monster.cc | 234 const CookieMonster::ParsedCookie& pc, 273 const CookieMonster::ParsedCookie& pc) { 280 Time CanonExpirationInternal(const CookieMonster::ParsedCookie& pc, 302 Time CanonExpiration(const CookieMonster::ParsedCookie& pc, [all...] |
cookie_monster.h | 49 class ParsedCookie; 551 // in which pre-validation of the ParsedCookie has not been done. 552 CanonicalCookie(const GURL& url, const ParsedCookie& pc); 683 class NET_EXPORT CookieMonster::ParsedCookie { 694 ParsedCookie(const std::string& cookie_line); 695 ~ParsedCookie(); [all...] |
cookie_monster_unittest.cc | 121 CookieMonster::ParsedCookie pc("a=b"); 156 CookieMonster::ParsedCookie pc( 173 CookieMonster::ParsedCookie pc("BLAHHH; path=/; secure;"); 183 CookieMonster::ParsedCookie pc("BLAHHH; Path=/; sECuRe; httpONLY"); 195 CookieMonster::ParsedCookie pc("\"BLA\\\"HHH\"; path=/; secure;"); 206 CookieMonster::ParsedCookie pc("a=\"B"); 214 CookieMonster::ParsedCookie pc("=ABC"); 222 CookieMonster::ParsedCookie pc("ABC=; path = /wee"); 232 CookieMonster::ParsedCookie pc(" A = BC ;secure;;; httponly"); 245 CookieMonster::ParsedCookie pc(" A=== BC ;secure;;; httponly") [all...] |
cookie_monster_perftest.cc | 31 CookieMonster::ParsedCookie pc(cookie); 42 CookieMonster::ParsedCookie pc(cookie);
|
cookie_monster_store_test.cc | 83 CookieMonster::ParsedCookie pc(cookie_line);
|
/external/chromium_org/chrome/browser/extensions/api/web_request/ |
web_request_api_helpers.cc | 43 typedef std::vector<linked_ptr<net::ParsedCookie> > ParsedResponseCookies; 82 bool ParseCookieLifetime(net::ParsedCookie* cookie, 850 result.push_back(make_linked_ptr(new net::ParsedCookie(value))); 870 net::ParsedCookie* cookie) { 891 static bool DoesResponseCookieMatchFilter(net::ParsedCookie* cookie, [all...] |
/external/chromium_org/chrome/browser/ui/views/ |
cookie_info_view.cc | 87 net::ParsedCookie pc(cookie_line);
|
/external/chromium/chrome/browser/ui/views/ |
cookie_info_view.cc | 98 net::CookieMonster::ParsedCookie pc(cookie_line);
|
/external/chromium_org/chrome/browser/net/gaia/ |
gaia_oauth_fetcher.cc | 424 net::ParsedCookie cookie(*iter);
|
/external/chromium/chrome/browser/ui/gtk/ |
gtk_chrome_cookie_view.cc | 519 net::CookieMonster::ParsedCookie pc(cookie_line);
|
/external/chromium_org/chrome/browser/ui/gtk/ |
gtk_chrome_cookie_view.cc | 523 net::ParsedCookie pc(cookie_line);
|