HomeSort by relevance Sort by last modified time
    Searched full:domain_match (Results 1 - 5 of 5) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cookielib.py 677 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("blah.blah", "")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cookielib.py 677 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("blah.blah", "")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cookielib.py 512 def domain_match(A, B): function
701 if not domain_match(req_host, reach(request.get_origin_req_host())):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cookielib.py 512 def domain_match(A, B): function
701 if not domain_match(req_host, reach(request.get_origin_req_host())):
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
msvs.py 161 domain_match = domain_re.search(config)
162 if domain_match:
163 domain = domain_match.group(1)
    [all...]

Completed in 178 milliseconds