Searched refs:domain_match (Results 1 - 4 of 4) sorted by relevance

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_cookielib.py677 from cookielib import domain_match, user_domain_match namespace
678 self.assertTrue(domain_match("192.168.1.1", "192.168.1.1"))
679 self.assertTrue(not domain_match("192.168.1.1", ".168.1.1"))
680 self.assertTrue(domain_match("x.y.com", "x.Y.com"))
681 self.assertTrue(domain_match("x.y.com", ".Y.com"))
682 self.assertTrue(not domain_match("x.y.com", "Y.com"))
683 self.assertTrue(domain_match("a.b.c.com", ".c.com"))
684 self.assertTrue(not domain_match(".c.com", "a.b.c.com"))
685 self.assertTrue(domain_match("example.local", ".local"))
686 self.assertTrue(not domain_match("bla
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_cookielib.py677 from cookielib import domain_match, user_domain_match namespace
678 self.assertTrue(domain_match("192.168.1.1", "192.168.1.1"))
679 self.assertTrue(not domain_match("192.168.1.1", ".168.1.1"))
680 self.assertTrue(domain_match("x.y.com", "x.Y.com"))
681 self.assertTrue(domain_match("x.y.com", ".Y.com"))
682 self.assertTrue(not domain_match("x.y.com", "Y.com"))
683 self.assertTrue(domain_match("a.b.c.com", ".c.com"))
684 self.assertTrue(not domain_match(".c.com", "a.b.c.com"))
685 self.assertTrue(domain_match("example.local", ".local"))
686 self.assertTrue(not domain_match("bla
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dcookielib.py512 def domain_match(A, B): function
701 if not domain_match(req_host, reach(request.get_origin_req_host())):
1022 if not domain_match(erhn, domain):
1134 if cookie.version > 0 and not domain_match(erhn, domain):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dcookielib.py512 def domain_match(A, B): function
701 if not domain_match(req_host, reach(request.get_origin_req_host())):
1022 if not domain_match(erhn, domain):
1134 if cookie.version > 0 and not domain_match(erhn, domain):

Completed in 160 milliseconds