HomeSort by relevance Sort by last modified time
    Searched refs:IOError (Results 26 - 50 of 405) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/server2/
fake_fetchers.py 72 except IOError as e:
106 except IOError as e:
121 except IOError:
137 except IOError:
152 except IOError:
  /build/tools/
event_log_tags.py 58 except (IOError, OSError), e:
103 except (IOError, OSError), e:
133 except (IOError, OSError), e:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
chunk.py 73 except (AttributeError, IOError):
105 raise IOError, "cannot seek"
161 except IOError:
pty.py 59 except IOError, msg:
86 except IOError:
176 except (IOError, OSError):
linecache.py 93 except (ImportError, IOError):
129 except IOError:
compileall.py 96 except IOError:
107 except IOError, e:
148 except IOError:
209 except IOError:
_pyio.py 32 class BlockingIOError(IOError):
37 super(IOError, self).__init__(errno, strerror)
47 r"""Open file and return a stream. Raise IOError upon failure.
252 class UnsupportedOperation(ValueError, IOError):
269 may raise a IOError when operations they do not support are called.
276 undefined. Implementations may raise IOError in this case.
365 If False, seek(), tell() and truncate() will raise IOError.
371 """Internal: raise an IOError if file is not seekable
374 raise IOError("File or stream is not seekable."
381 If False, read() will raise IOError
    [all...]
gzip.py 129 raise IOError, "Mode " + mode + " not supported"
190 raise IOError, 'Not a gzipped file'
193 raise IOError, 'Unknown compression method'
224 raise IOError(errno.EBADF, "write() on read-only GzipFile object")
245 raise IOError(errno.EBADF, "read() on write-only GzipFile object")
346 raise IOError("CRC check failed %s != %s" % (hex(crc32),
349 raise IOError, "Incorrect length of data produced"
398 raise IOError("Can't rewind in write mode")
423 raise IOError('Negative seek in write mode')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
chunk.py 73 except (AttributeError, IOError):
105 raise IOError, "cannot seek"
161 except IOError:
pty.py 59 except IOError, msg:
86 except IOError:
176 except (IOError, OSError):
linecache.py 93 except (ImportError, IOError):
129 except IOError:
compileall.py 96 except IOError:
107 except IOError, e:
148 except IOError:
209 except IOError:
_pyio.py 32 class BlockingIOError(IOError):
37 super(IOError, self).__init__(errno, strerror)
47 r"""Open file and return a stream. Raise IOError upon failure.
252 class UnsupportedOperation(ValueError, IOError):
269 may raise a IOError when operations they do not support are called.
276 undefined. Implementations may raise IOError in this case.
365 If False, seek(), tell() and truncate() will raise IOError.
371 """Internal: raise an IOError if file is not seekable
374 raise IOError("File or stream is not seekable."
381 If False, read() will raise IOError
    [all...]
gzip.py 129 raise IOError, "Mode " + mode + " not supported"
190 raise IOError, 'Not a gzipped file'
193 raise IOError, 'Unknown compression method'
224 raise IOError(errno.EBADF, "write() on read-only GzipFile object")
245 raise IOError(errno.EBADF, "read() on write-only GzipFile object")
346 raise IOError("CRC check failed %s != %s" % (hex(crc32),
349 raise IOError, "Incorrect length of data produced"
398 raise IOError("Can't rewind in write mode")
423 raise IOError('Negative seek in write mode')
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
fixjsstyle_test.py 51 except IOError, ex:
52 raise IOError('Could not find testdata resource for %s: %s' %
  /external/chromium_org/third_party/closure_linter/closure_linter/
fixjsstyle_test.py 51 except IOError, ex:
52 raise IOError('Could not find testdata resource for %s: %s' %
  /external/chromium_org/third_party/jinja2/
exceptions.py 29 class TemplateNotFound(IOError, LookupError, TemplateError):
37 IOError.__init__(self)
  /external/chromium_org/v8/tools/testrunner/server/
daemon.py 90 except IOError:
111 except IOError:
  /libcore/luni/src/main/java/java/io/
Console.java 106 throw new IOError(e);
153 throw new IOError(ex);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_epoll.py 36 except IOError, e:
115 # IOError: [Errno 9] Bad file descriptor
116 self.assertRaises(IOError, ep.register, 10000,
120 self.assertRaises(IOError, ep.register, server,
142 except IOError, e:
test_file2k.py 146 self.assertRaises(IOError, self.f.read)
164 self.assertRaises(IOError, getattr(self.f, attr))
169 self.assertRaises(IOError, lambda: [line for line in self.f])
174 self.assertRaises(IOError, self.f.readinto, bytearray(len(data)))
179 self.assertRaises(IOError, self.f.write, data)
183 self.assertRaises(IOError, self.f.writelines, [data, data])
187 self.assertRaises(IOError, self.f.truncate)
200 except IOError as e:
203 self.fail("opening a directory didn't raise an IOError")
221 except (IOError, ValueError)
    [all...]
sortperf.py 25 except IOError:
40 except IOError, msg:
test_fileio.py 149 except IOError as e:
153 self.fail("Should have raised IOError")
158 with self.assertRaises(IOError) as cm:
176 except IOError:
188 except IOError as e:
191 self.fail("Should have raised IOError")
195 except IOError:
242 except IOError:
346 self.assertRaises(IOError, msvcrt.get_osfhandle, make_bad_fd())
446 except (UnicodeEncodeError, IOError)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_epoll.py 36 except IOError, e:
115 # IOError: [Errno 9] Bad file descriptor
116 self.assertRaises(IOError, ep.register, 10000,
120 self.assertRaises(IOError, ep.register, server,
142 except IOError, e:
test_file2k.py 146 self.assertRaises(IOError, self.f.read)
164 self.assertRaises(IOError, getattr(self.f, attr))
169 self.assertRaises(IOError, lambda: [line for line in self.f])
174 self.assertRaises(IOError, self.f.readinto, bytearray(len(data)))
179 self.assertRaises(IOError, self.f.write, data)
183 self.assertRaises(IOError, self.f.writelines, [data, data])
187 self.assertRaises(IOError, self.f.truncate)
200 except IOError as e:
203 self.fail("opening a directory didn't raise an IOError")
221 except (IOError, ValueError)
    [all...]

Completed in 540 milliseconds

12 3 4 5 6 7 8 91011>>