/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/ |
networktransaction_unittest.py | 31 from urllib2 import HTTPError 62 raise HTTPError("http://example.com/", 500, "internal server error", None, None) 66 raise HTTPError("http://foo.com/", 404, "not found", None, None)
|
networktransaction.py | 54 except urllib2.HTTPError, e:
|
/external/chromium_org/media/tools/constrained_network_server/ |
cns.py | 220 raise cherrypy.HTTPError(400, 'Invalid request. File must be specified.') 243 """Checks if the requested file exists, raises HTTPError otherwise.""" 254 raise cherrypy.HTTPError(403, 'Invalid file requested.') 256 raise cherrypy.HTTPError(404, 'File not found.') 265 raise cherrypy.HTTPError(404, 'File not found on local server.') 326 raise cherrypy.HTTPError(503, 'Service unavailable. Out of ports.') 341 cherrypy.HTTPError if param can not be converted to integer or if it does 351 raise cherrypy.HTTPError(400, msg)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_robotparser.py | 3 from urllib2 import urlopen, HTTPError 243 except HTTPError as e:
|
test_urllib2_localnet.py | 264 self.assertRaises(urllib2.HTTPError, 270 self.assertRaises(urllib2.HTTPError,
|
test_urllib2.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_robotparser.py | 3 from urllib2 import urlopen, HTTPError 243 except HTTPError as e:
|
test_urllib2_localnet.py | 264 self.assertRaises(urllib2.HTTPError, 270 self.assertRaises(urllib2.HTTPError,
|
test_urllib2.py | [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
print-stale-test-expectations-entries | 83 except urllib2.HTTPError as error:
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
tab_list_backend.py | 46 except urllib2.HTTPError: 65 except urllib2.HTTPError:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
upload.py | 7 from urllib2 import urlopen, Request, HTTPError 185 except HTTPError, e:
|
register.py | 301 except urllib2.HTTPError, e:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
upload.py | 7 from urllib2 import urlopen, Request, HTTPError 185 except HTTPError, e:
|
register.py | 301 except urllib2.HTTPError, e:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
urllib2.py | 21 IOError); for HTTP errors, raises an HTTPError, which can also be 47 HTTPError -- Also a valid HTTP response, so you can treat an HTTP error 150 class HTTPError(URLError, addinfourl): 161 # object. In some cases, the HTTPError may not have a valid 170 # since URLError specifies a .reason attribute, HTTPError should also 531 raise HTTPError(req.get_full_url(), code, msg, hdrs, fp) 547 perform the redirect. Otherwise, raise HTTPError if no-one 569 raise HTTPError(req.get_full_url(), code, msg, headers, fp) 600 raise HTTPError(newurl, code, 618 raise HTTPError(req.get_full_url(), code [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
urllib2.py | 21 IOError); for HTTP errors, raises an HTTPError, which can also be 47 HTTPError -- Also a valid HTTP response, so you can treat an HTTP error 150 class HTTPError(URLError, addinfourl): 161 # object. In some cases, the HTTPError may not have a valid 170 # since URLError specifies a .reason attribute, HTTPError should also 531 raise HTTPError(req.get_full_url(), code, msg, hdrs, fp) 547 perform the redirect. Otherwise, raise HTTPError if no-one 569 raise HTTPError(req.get_full_url(), code, msg, headers, fp) 600 raise HTTPError(newurl, code, 618 raise HTTPError(req.get_full_url(), code [all...] |
/external/chromium/testing/gmock/scripts/ |
upload.py | 115 class ClientLoginError(urllib2.HTTPError): 119 urllib2.HTTPError.__init__(self, url, code, msg, headers, None) 181 HTTPError: If there was some other form of HTTP error. 206 except urllib2.HTTPError, e: 222 HTTPError: If there was an error fetching the authentication cookies. 231 except urllib2.HTTPError, e: 235 raise urllib2.HTTPError(req.get_full_url(), response.code, response.msg, 330 except urllib2.HTTPError, e: [all...] |
/external/chromium/testing/gtest/scripts/ |
upload.py | 115 class ClientLoginError(urllib2.HTTPError): 119 urllib2.HTTPError.__init__(self, url, code, msg, headers, None) 181 HTTPError: If there was some other form of HTTP error. 206 except urllib2.HTTPError, e: 222 HTTPError: If there was an error fetching the authentication cookies. 231 except urllib2.HTTPError, e: 235 raise urllib2.HTTPError(req.get_full_url(), response.code, response.msg, 330 except urllib2.HTTPError, e: [all...] |
/external/chromium_org/testing/gtest/scripts/ |
upload.py | 115 class ClientLoginError(urllib2.HTTPError): 119 urllib2.HTTPError.__init__(self, url, code, msg, headers, None) 181 HTTPError: If there was some other form of HTTP error. 206 except urllib2.HTTPError, e: 222 HTTPError: If there was an error fetching the authentication cookies. 231 except urllib2.HTTPError, e: 235 raise urllib2.HTTPError(req.get_full_url(), response.code, response.msg, 330 except urllib2.HTTPError, e: [all...] |
/external/chromium_org/tools/perf_expectations/ |
make_expectations.py | 70 except urllib2.HTTPError, e:
|
/external/chromium_org/tools/ |
update_reference_build.py | 170 except urllib2.HTTPError, err:
|
/external/chromium_org/components/policy/core/common/cloud/ |
external_policy_data_fetcher_unittest.cc | 271 TEST_F(ExternalPolicyDataFetcherTest, HTTPError) {
|
/external/chromium_org/content/browser/speech/ |
google_streaming_remote_engine_unittest.cc | 245 TEST_F(GoogleStreamingRemoteEngineTest, HTTPError) {
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/ |
buildbot.py | 141 except urllib2.HTTPError, error:
|