Searched refs:excinfo (Results 1 – 13 of 13) sorted by relevance
/external/fonttools/Tests/ttLib/tables/ |
D | _g_l_y_f_test.py | 73 with pytest.raises(TypeError) as excinfo: 75 assert 'unsupported operand' in str(excinfo.value) 83 with pytest.raises(TypeError) as excinfo: 85 assert 'unsupported operand' in str(excinfo.value) 97 with pytest.raises(TypeError) as excinfo: 99 assert 'unsupported operand' in str(excinfo.value) 106 with pytest.raises(TypeError) as excinfo: 108 assert 'unsupported operand' in str(excinfo.value)
|
D | T_S_I__1_test.py | 104 with pytest.raises(TTLibError) as excinfo: 106 assert excinfo.match("textLength .* must not be > 32768")
|
/external/fonttools/Tests/pens/ |
D | recordingPen_test.py | 37 with pytest.raises(KeyError) as excinfo: 39 assert excinfo.value.args[0] == "a"
|
/external/skia/infra/bots/ |
D | utils.py | 159 def RmTreeOnError(function, path, excinfo): argument 173 exception_type = excinfo[0] 174 exception_value = excinfo[1]
|
/external/skqp/infra/bots/ |
D | utils.py | 159 def RmTreeOnError(function, path, excinfo): argument 173 exception_type = excinfo[0] 174 exception_value = excinfo[1]
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/ |
D | graph_actions.py | 328 excinfo = None 372 excinfo = sys.exc_info() 403 if not excinfo: 408 if excinfo: 409 reraise(*excinfo)
|
/external/python/cpython2/Lib/idlelib/ |
D | run.py | 175 typ, val, tb = excinfo = sys.exc_info() 176 sys.last_type, sys.last_value, sys.last_traceback = excinfo
|
/external/llvm/test/CodeGen/ARM/ |
D | legalize-unaligned-load.ll | 15 { i8*, i32 }** noalias nocapture readnone %excinfo,
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/ |
D | legalize-unaligned-load.ll | 15 { i8*, i32 }** noalias nocapture readnone %excinfo,
|
/external/python/cpython3/Lib/idlelib/ |
D | run.py | 205 typ, val, tb = excinfo = sys.exc_info() 206 sys.last_type, sys.last_value, sys.last_traceback = excinfo
|
/external/python/cpython3/Lib/ |
D | contextlib.py | 676 def __exit__(self, *excinfo): argument
|
/external/python/cpython2/Doc/library/ |
D | shutil.rst | 150 parameters: *function*, *path*, and *excinfo*. The first parameter, 154 to *function*. The third parameter, *excinfo*, will be the exception
|
/external/python/cpython3/Doc/library/ |
D | shutil.rst | 266 parameters: *function*, *path*, and *excinfo*. 271 *excinfo*, will be the exception information returned by
|