Searched refs:Raise (Results 1 – 25 of 64) sorted by relevance
123
/external/python/cpython2/Doc/c-api/ |
D | set.rst | 90 success or *NULL* on failure. Raise :exc:`TypeError` if *iterable* is not 99 set on success or *NULL* on failure. Raise :exc:`TypeError` if *iterable* is 133 convert unhashable sets into temporary frozensets. Raise a :exc:`TypeError` if 134 the *key* is unhashable. Raise :exc:`PyExc_SystemError` if *anyset* is not a 141 instances. Return ``0`` on success or ``-1`` on failure. Raise a :exc:`TypeError` if 142 the *key* is unhashable. Raise a :exc:`MemoryError` if there is no room to grow. 143 Raise a :exc:`SystemError` if *set* is not an instance of :class:`set` or its 158 error is encountered. Does not raise :exc:`KeyError` for missing keys. Raise a 161 temporary frozensets. Raise :exc:`PyExc_SystemError` if *set* is not an 168 object from the *set*. Return *NULL* on failure. Raise :exc:`KeyError` if the [all …]
|
D | sequence.rst | 85 Assign object *v* to the *i*\ th element of *o*. Raise an exception 111 *i2*. Raise an exception and return ``-1`` on failure; return ``0`` on success.
|
D | codec.rst | 100 Raise *exc* as an exception.
|
D | object.rst | 58 *v*. Raise an exception and return ``-1`` on failure; 69 *v*. Raise an exception and return ``-1`` on failure; 380 Map the object *key* to the value *v*. Raise an exception and
|
/external/python/cpython2/Doc/library/ |
D | zipimport.rst | 89 Return the code object for the specified module. Raise 95 Return the data associated with *pathname*. Raise :exc:`IOError` if the 102 was imported. Raise :exc:`ZipImportError` if the module couldn't be 110 Return the source code for the specified module. Raise 118 Return ``True`` if the module specified by *fullname* is a package. Raise
|
D | telnetlib.rst | 70 string. Raise :exc:`EOFError` if the connection is closed and no cooked data is 89 Raise :exc:`EOFError` if connection closed and no cooked data available. Return 98 Raise :exc:`EOFError` if connection closed and no cooked data available. Return 107 Raise :exc:`EOFError` if connection closed and no data available. Return ``''`` 116 Raise :exc:`EOFError` if connection closed and no data available. Return ``''``
|
D | os.path.rst | 124 the number of seconds since the epoch (see the :mod:`time` module). Raise 138 Raise :exc:`os.error` if the file does not exist or is inaccessible. 152 the :mod:`time` module). Raise :exc:`os.error` if the file does not exist or 160 Return the size, in bytes, of *path*. Raise :exc:`os.error` if the file does 259 (as indicated by device number and i-node number). Raise an exception if an
|
D | bdb.rst | 130 Raise a :exc:`BdbQuit` exception if the :attr:`Bdb.quitting` flag is set 138 Raise a :exc:`BdbQuit` exception if the :attr:`Bdb.quitting` flag is set 146 Raise a :exc:`BdbQuit` exception if the :attr:`Bdb.quitting` flag is set 154 Raise a :exc:`BdbQuit` exception if the :attr:`Bdb.quitting` flag is set
|
D | smtpd.rst | 34 Raise :exc:`NotImplementedError` exception. Override this in subclasses to
|
D | thread.rst | 62 Raise a :exc:`KeyboardInterrupt` exception in the main thread. A subthread can 70 Raise the :exc:`SystemExit` exception. When not caught, this will cause the
|
/external/ImageMagick/PerlMagick/demo/ |
D | button.pl | 11 $q->Raise('6x6');
|
/external/autotest/client/tests/error_test_fail/ |
D | control | 7 DOC = """Raise a TestFail. This is for testing Autotest itself."""
|
/external/autotest/client/tests/error_test_na/ |
D | control | 7 DOC = """Raise a TestNAError. This is for testing Autotest itself."""
|
D | control2 | 7 DOC = """Raise a TestNAError directly; for testing Autotest itself."""
|
/external/autotest/client/tests/error_test_error/ |
D | control | 7 DOC = """Raise a TestError. This is for testing Autotest itself."""
|
/external/autotest/client/tests/error_cleanup/ |
D | control | 7 DOC = """Raise an exception during cleanup(). This tests Autotest itself."""
|
/external/autotest/client/tests/error_setup/ |
D | control | 7 DOC = """Raise an exception during setup(). This tests Autotest itself."""
|
/external/autotest/client/tests/error_initialize/ |
D | control | 7 DOC = """Raise an exception during initialize(). This tests Autotest itself."""
|
/external/autotest/client/tests/aborttest/ |
D | control | 8 Raise a JobError to simulate a test aborting. This is for testing Autotest
|
/external/autotest/client/tests/error_skip_step/ |
D | control | 7 DOC = """Raise TestNAError during step1. step0, 2 and 3 should run."""
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/ |
D | template_1-1.in | 18 3. Raise %%MYSIG%%.
|
D | template_23-1.in | 101 /* Raise the signal again. It should be masked */
|
/external/python/cpython2/Python/ |
D | symtable.c | 1087 if (s->v.Raise.type) { in symtable_visit_stmt() 1088 VISIT(st, expr, s->v.Raise.type); in symtable_visit_stmt() 1089 if (s->v.Raise.inst) { in symtable_visit_stmt() 1090 VISIT(st, expr, s->v.Raise.inst); in symtable_visit_stmt() 1091 if (s->v.Raise.tback) in symtable_visit_stmt() 1092 VISIT(st, expr, s->v.Raise.tback); in symtable_visit_stmt()
|
/external/python/cpython2/Tools/compiler/ |
D | ast.txt | 29 Raise: expr1&, expr2&, expr3&
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 31 | Raise(expr? type, expr? inst, expr? tback)
|
123