/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_urllib2.py | 71 >>> Request(url, headers={"Spam-eggs": "blah"}).headers["Spam-eggs"] 73 >>> Request(url, headers={"spam-EggS": "blah"}).headers["Spam-eggs"] 76 Currently, Request(url, "Spam-eggs").headers["Spam-Eggs"] raises KeyError, 89 >>> r = Request(url, headers={"Spam-eggs": "blah"}) 90 >>> r.has_header("Spam-eggs") 93 [('Spam-eggs', 'blah')] 98 [('Foo-bar', 'baz'), ('Spam-eggs', 'blah') [all...] |
test_contextlib.py | 94 def baz(spam):
|
test_inspect.py | 78 self.istest(inspect.iscode, 'mod.spam.func_code') 80 self.istest(inspect.isfunction, 'mod.spam') 100 self.assertTrue(inspect.isroutine(mod.spam)) 164 (modfile, 9, 'spam', [' eggs(b + d, c + f)\n'], 0)) 166 (modfile, 43, 'argue', [' spam(a, b, c)\n'], 0)) 173 [' spam(a, b, c)\n'], 0)) 174 self.assertEqual(git.tr[1][1:], (modfile, 9, 'spam', 238 ('spam', mod.spam)]) 276 self.assertEqual(inspect.getsourcefile(mod.spam), modfile [all...] |
test_bytes.py | [all...] |
test_class.py | 469 testme.spam 470 self.assertCallStack([('__getattr__', (testme, "spam"))]) 473 testme.eggs = "spam, spam, spam and ham" 475 "spam, spam, spam and ham"))])
|
test_httpservers.py | 371 print "%%s, %%s, %%s" %% (form.getfirst("spam"), form.getfirst("eggs"), 469 params = urllib.urlencode({'spam' : 1, 'eggs' : 'python', 'bacon' : 123456}) 514 path = self.handler.translate_path('/filename?a=b&spam=eggs#zot')
|
test_urllib.py | 802 'spam://example/ /'),'//example/%20/') 806 "spam://c:|windows%/:=&?~#+!$,;'@()*[]|/path/"), [all...] |
test_logging.py | 287 filter_ = logging.Filter("spam.eggs") 291 spam = logging.getLogger("spam") 292 spam_eggs = logging.getLogger("spam.eggs") 293 spam_eggs_fish = logging.getLogger("spam.eggs.fish") 294 spam_bakedbeans = logging.getLogger("spam.bakedbeans") 296 spam.info(self.next_message()) 302 ('spam.eggs', 'INFO', '2'), 303 ('spam.eggs.fish', 'INFO', '3'), 959 logger.error("spam") [all...] |
test_cookielib.py | 165 (r'foo; bar=baz, spam=, foo="\,\;\"", bar= ', 167 [("spam", "")], [("foo", ',;"')], [("bar", "")]]), 380 interact_netscape(c, "http://www.acme.com/", '"spam"; path=/foo/') 384 cookie = c._cookies["www.acme.com"]['/foo/']['"spam"'] 386 self.assertEqual(cookie.name, '"spam"') 388 r'"spam"; path="/foo/"; domain="www.acme.com"; ' 404 '"spam"; eggs') 444 'spam=eggs; DoMain=.acme.com; port; blArgh="feep"') 448 interact_netscape(c, "http://www.acme.com:80/", 'spam=eggs; ' 451 cookie = c._cookies[".acme.com"]["/"]["spam"] [all...] |
test_builtin.py | 263 sys.spam = 1 264 delattr(sys, 'spam') 645 hash('spam') 647 self.assertEqual(hash('spam'), hash(unicode('spam'))) 678 id('spam') 681 id({'spam': 1, 'eggs': 2, 'ham': 3}) [all...] |
test_array.py | 27 self.assertRaises(TypeError, array.array, spam=42) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_urllib2.py | 71 >>> Request(url, headers={"Spam-eggs": "blah"}).headers["Spam-eggs"] 73 >>> Request(url, headers={"spam-EggS": "blah"}).headers["Spam-eggs"] 76 Currently, Request(url, "Spam-eggs").headers["Spam-Eggs"] raises KeyError, 89 >>> r = Request(url, headers={"Spam-eggs": "blah"}) 90 >>> r.has_header("Spam-eggs") 93 [('Spam-eggs', 'blah')] 98 [('Foo-bar', 'baz'), ('Spam-eggs', 'blah') [all...] |
test_contextlib.py | 94 def baz(spam):
|
test_inspect.py | 78 self.istest(inspect.iscode, 'mod.spam.func_code') 80 self.istest(inspect.isfunction, 'mod.spam') 100 self.assertTrue(inspect.isroutine(mod.spam)) 164 (modfile, 9, 'spam', [' eggs(b + d, c + f)\n'], 0)) 166 (modfile, 43, 'argue', [' spam(a, b, c)\n'], 0)) 173 [' spam(a, b, c)\n'], 0)) 174 self.assertEqual(git.tr[1][1:], (modfile, 9, 'spam', 238 ('spam', mod.spam)]) 276 self.assertEqual(inspect.getsourcefile(mod.spam), modfile [all...] |
test_bytes.py | [all...] |
test_class.py | 469 testme.spam 470 self.assertCallStack([('__getattr__', (testme, "spam"))]) 473 testme.eggs = "spam, spam, spam and ham" 475 "spam, spam, spam and ham"))])
|
test_httpservers.py | 371 print "%%s, %%s, %%s" %% (form.getfirst("spam"), form.getfirst("eggs"), 469 params = urllib.urlencode({'spam' : 1, 'eggs' : 'python', 'bacon' : 123456}) 514 path = self.handler.translate_path('/filename?a=b&spam=eggs#zot')
|
test_urllib.py | 802 'spam://example/ /'),'//example/%20/') 806 "spam://c:|windows%/:=&?~#+!$,;'@()*[]|/path/"), [all...] |
test_logging.py | 287 filter_ = logging.Filter("spam.eggs") 291 spam = logging.getLogger("spam") 292 spam_eggs = logging.getLogger("spam.eggs") 293 spam_eggs_fish = logging.getLogger("spam.eggs.fish") 294 spam_bakedbeans = logging.getLogger("spam.bakedbeans") 296 spam.info(self.next_message()) 302 ('spam.eggs', 'INFO', '2'), 303 ('spam.eggs.fish', 'INFO', '3'), 959 logger.error("spam") [all...] |
test_cookielib.py | 165 (r'foo; bar=baz, spam=, foo="\,\;\"", bar= ', 167 [("spam", "")], [("foo", ',;"')], [("bar", "")]]), 380 interact_netscape(c, "http://www.acme.com/", '"spam"; path=/foo/') 384 cookie = c._cookies["www.acme.com"]['/foo/']['"spam"'] 386 self.assertEqual(cookie.name, '"spam"') 388 r'"spam"; path="/foo/"; domain="www.acme.com"; ' 404 '"spam"; eggs') 444 'spam=eggs; DoMain=.acme.com; port; blArgh="feep"') 448 interact_netscape(c, "http://www.acme.com:80/", 'spam=eggs; ' 451 cookie = c._cookies[".acme.com"]["/"]["spam"] [all...] |
test_builtin.py | 263 sys.spam = 1 264 delattr(sys, 'spam') 645 hash('spam') 647 self.assertEqual(hash('spam'), hash(unicode('spam'))) 678 id('spam') 681 id({'spam': 1, 'eggs': 2, 'ham': 3}) [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
MailActionBarView.java | 413 && mFolder.isType(FolderType.SPAM) && mFolder.totalCount > 0); [all...] |
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/ |
metadata_cache.js | 1026 if (MetadataCache.log) // Avoid log spam by default. 1040 if (MetadataCache.log) // Avoid log spam by default.
|
/build/core/ |
config.mk | 22 # Tell python not to spam the source tree with .pyc files. This
|
/external/chromium/chrome/browser/resources/touch_ntp/standalone/ |
standalone_hack.js | 62 description: 'Fast, searchable email with less spam.',
|