Home
last modified time | relevance | path

Searched refs:user_domain_match (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_cookielib.py677 from cookielib import domain_match, user_domain_match
690 self.assertTrue(user_domain_match("acme.com", "acme.com"))
691 self.assertTrue(not user_domain_match("acme.com", ".acme.com"))
692 self.assertTrue(user_domain_match("rhubarb.acme.com", ".acme.com"))
693 self.assertTrue(user_domain_match("www.rhubarb.acme.com", ".acme.com"))
694 self.assertTrue(user_domain_match("x.y.com", "x.Y.com"))
695 self.assertTrue(user_domain_match("x.y.com", ".Y.com"))
696 self.assertTrue(not user_domain_match("x.y.com", "Y.com"))
697 self.assertTrue(user_domain_match("y.com", "Y.com"))
698 self.assertTrue(not user_domain_match(".y.com", "Y.com"))
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dcookielib.py561 def user_domain_match(A, B): function
890 if user_domain_match(domain, blocked_domain):
907 if user_domain_match(domain, allowed_domain):