/external/chromium_org/third_party/tlslite/tlslite/ |
HandshakeSettings.py | 99 raise ValueError("No supported ciphers") 107 raise ValueError("No supported certificate types") 119 raise ValueError("No supported cipher implementations") 122 raise ValueError("minKeySize too small") 124 raise ValueError("minKeySize too large") 126 raise ValueError("maxKeySize too small") 128 raise ValueError("maxKeySize too large") 131 raise ValueError("Unknown cipher name: '%s'" % s) 134 raise ValueError("Unknown cipher implementation: '%s'" % s) 137 raise ValueError("Unknown certificate type: '%s'" % s [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_version.py | 20 ('161', '3.10a', ValueError), 22 ('3.4j', '1996.07.12', ValueError), 23 ('3.2.pl0', '3.1.1.6', ValueError), 24 ('2g6', '11g', ValueError), 33 ('1.13++', '5.5.kw', ValueError)) 38 except ValueError: 39 if wanted is ValueError: 43 "shouldn't raise ValueError")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_version.py | 20 ('161', '3.10a', ValueError), 22 ('3.4j', '1996.07.12', ValueError), 23 ('3.2.pl0', '3.1.1.6', ValueError), 24 ('2g6', '11g', ValueError), 33 ('1.13++', '5.5.kw', ValueError)) 38 except ValueError: 39 if wanted is ValueError: 43 "shouldn't raise ValueError")
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
TripleDES.py | 8 raise ValueError() 10 raise ValueError() 12 raise ValueError()
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/ |
origin_check_wsh.py | 36 raise ValueError('Unacceptable origin: %r' % request.ws_origin)
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/testdata/handlers/ |
origin_check_wsh.py | 34 raise ValueError('Unacceptable origin: %r' % request.ws_origin)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_time.py | 38 except ValueError: 45 with self.assertRaises(ValueError): 53 self.assertRaises(ValueError, time.strftime, '', 56 self.assertRaises(ValueError, time.strftime, '', 58 self.assertRaises(ValueError, time.strftime, '', 61 self.assertRaises(ValueError, time.strftime, '', 63 self.assertRaises(ValueError, time.strftime, '', 66 self.assertRaises(ValueError, time.strftime, '', 68 self.assertRaises(ValueError, time.strftime, '', 71 self.assertRaises(ValueError, time.strftime, '' [all...] |
test_str.py | 42 with self.assertRaises(ValueError): 47 with self.assertRaises(ValueError): 334 self.assertRaises(ValueError, '{'.format) 335 self.assertRaises(ValueError, '}'.format) 336 self.assertRaises(ValueError, 'a{'.format) 337 self.assertRaises(ValueError, 'a}'.format) 338 self.assertRaises(ValueError, '{a'.format) 339 self.assertRaises(ValueError, '}a'.format) 343 self.assertRaises(ValueError, "}{".format) 344 self.assertRaises(ValueError, "{".format [all...] |
test_int.py | 20 (' 1x', ValueError), 22 (' 1\02 ', ValueError), 23 ('', ValueError), 24 (' ', ValueError), 25 (' \t\t ', ValueError) 39 (unicode(' 1x'), ValueError), 41 (unicode(' 1\02 '), ValueError), 42 (unicode(''), ValueError), 43 (unicode(' '), ValueError), 44 (unicode(' \t\t '), ValueError), [all...] |
test_copy_reg.py | 50 self.assertRaises(ValueError, copy_reg.remove_extension, 61 self.assertRaises(ValueError, copy_reg.add_extension, 63 self.assertRaises(ValueError, copy_reg.remove_extension, 66 self.assertRaises(ValueError, copy_reg.add_extension, 68 self.assertRaises(ValueError, copy_reg.remove_extension, 71 self.assertRaises(ValueError, copy_reg.add_extension, 73 self.assertRaises(ValueError, copy_reg.remove_extension, 77 self.assertRaises(ValueError, copy_reg.remove_extension, 100 self.assertRaises(ValueError, copy_reg.add_extension,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_time.py | 38 except ValueError: 45 with self.assertRaises(ValueError): 53 self.assertRaises(ValueError, time.strftime, '', 56 self.assertRaises(ValueError, time.strftime, '', 58 self.assertRaises(ValueError, time.strftime, '', 61 self.assertRaises(ValueError, time.strftime, '', 63 self.assertRaises(ValueError, time.strftime, '', 66 self.assertRaises(ValueError, time.strftime, '', 68 self.assertRaises(ValueError, time.strftime, '', 71 self.assertRaises(ValueError, time.strftime, '' [all...] |
test_str.py | 42 with self.assertRaises(ValueError): 47 with self.assertRaises(ValueError): 334 self.assertRaises(ValueError, '{'.format) 335 self.assertRaises(ValueError, '}'.format) 336 self.assertRaises(ValueError, 'a{'.format) 337 self.assertRaises(ValueError, 'a}'.format) 338 self.assertRaises(ValueError, '{a'.format) 339 self.assertRaises(ValueError, '}a'.format) 343 self.assertRaises(ValueError, "}{".format) 344 self.assertRaises(ValueError, "{".format [all...] |
test_int.py | 20 (' 1x', ValueError), 22 (' 1\02 ', ValueError), 23 ('', ValueError), 24 (' ', ValueError), 25 (' \t\t ', ValueError) 39 (unicode(' 1x'), ValueError), 41 (unicode(' 1\02 '), ValueError), 42 (unicode(''), ValueError), 43 (unicode(' '), ValueError), 44 (unicode(' \t\t '), ValueError), [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
literals.py | 28 raise ValueError("invalid hex string escape ('\\%s')" % tail) 31 except ValueError: 32 raise ValueError("invalid hex string escape ('\\%s')" % tail) 36 except ValueError: 37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
literals.py | 28 raise ValueError("invalid hex string escape ('\\%s')" % tail) 31 except ValueError: 32 raise ValueError("invalid hex string escape ('\\%s')" % tail) 36 except ValueError: 37 raise ValueError("invalid octal string escape ('\\%s')" % tail)
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
test_stream.py | 58 self.assertRaises(ValueError, 63 self.assertRaises(ValueError, 68 self.assertRaises(ValueError,
|
/external/chromium_org/third_party/bintrees/bintrees/ |
__init__.py | 160 except ValueError: # for pypy 170 except ValueError: # for pypy 180 except ValueError: # for pypy
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/importlib/ |
__init__.py | 9 raise ValueError("'package' not set to a string") 14 except ValueError: 15 raise ValueError("attempted relative import beyond top-level "
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/importlib/ |
__init__.py | 9 raise ValueError("'package' not set to a string") 14 except ValueError: 15 raise ValueError("attempted relative import beyond top-level "
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/ |
imap.py | 34 raise ValueError("Invalid consumer.") 37 raise ValueError("Invalid token.")
|
smtp.py | 35 raise ValueError("Invalid consumer.") 38 raise ValueError("Invalid token.")
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/clients/ |
imap.py | 34 raise ValueError("Invalid consumer.") 37 raise ValueError("Invalid token.")
|
smtp.py | 35 raise ValueError("Invalid consumer.") 38 raise ValueError("Invalid token.")
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/ |
test_expr.py | 15 self.assertRaises(ValueError, e1.extract_segoff) 16 self.assertRaises(ValueError, e1.extract_wrt)
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
api_implementation.py | 68 raise ValueError(
|