Searched refs:retobj (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/lldb/test/API/functionalities/plugins/command_plugin/ |
D | TestPluginCommands.py | 40 retobj = lldb.SBCommandReturnObject() 43 "plugin load %s" % self.getBuildArtifact(plugin_lib_name), retobj) 45 retobj.Clear() 48 "plugin_loaded_command child abc def ghi", retobj) 51 print(retobj.GetOutput()) 53 self.expect(retobj, substrs=['abc def ghi'], exe=False) 55 retobj.Clear() 59 "plugin_loaded_ ch abc def ghi", retobj) 62 print(retobj.GetOutput()) 64 self.expect(retobj, substrs=['abc def ghi'], exe=False)
|
/external/llvm-project/lldb/test/API/functionalities/multidebugger_commands/ |
D | TestMultipleDebuggersCommands.py | 27 retobj = lldb.SBCommandReturnObject() 28 interpreter_1.HandleCommand("apropos env", retobj) 30 magic_text in str(retobj), 34 print(str(retobj)) 43 retobj = lldb.SBCommandReturnObject() 44 interpreter_2.HandleCommand("apropos env", retobj) 46 magic_text in str(retobj), 50 print(str(retobj))
|
/external/python/cpython3/Modules/cjkcodecs/ |
D | multibytecodec.c | 197 PyObject *retobj = NULL, *retstr = NULL, *tobj; in multibytecodec_encerror() local 289 retobj = call_error_callback(errors, buf->excobj); in multibytecodec_encerror() 290 if (retobj == NULL) in multibytecodec_encerror() 293 if (!PyTuple_Check(retobj) || PyTuple_GET_SIZE(retobj) != 2 || in multibytecodec_encerror() 294 (!PyUnicode_Check((tobj = PyTuple_GET_ITEM(retobj, 0))) && !PyBytes_Check(tobj)) || in multibytecodec_encerror() 295 !PyLong_Check(PyTuple_GET_ITEM(retobj, 1))) { in multibytecodec_encerror() 324 newpos = PyLong_AsSsize_t(PyTuple_GET_ITEM(retobj, 1)); in multibytecodec_encerror() 336 Py_DECREF(retobj); in multibytecodec_encerror() 341 Py_XDECREF(retobj); in multibytecodec_encerror() 352 PyObject *retobj = NULL, *retuni = NULL; in multibytecodec_decerror() local [all …]
|
/external/python/cpython2/Modules/cjkcodecs/ |
D | multibytecodec.c | 227 PyObject *retobj = NULL, *retstr = NULL, *tobj; in multibytecodec_encerror() local 307 retobj = call_error_callback(errors, buf->excobj); in multibytecodec_encerror() 308 if (retobj == NULL) in multibytecodec_encerror() 311 if (!PyTuple_Check(retobj) || PyTuple_GET_SIZE(retobj) != 2 || in multibytecodec_encerror() 312 !PyUnicode_Check((tobj = PyTuple_GET_ITEM(retobj, 0))) || in multibytecodec_encerror() 313 !_PyAnyInt_Check(PyTuple_GET_ITEM(retobj, 1))) { in multibytecodec_encerror() 337 newpos = PyInt_AsSsize_t(PyTuple_GET_ITEM(retobj, 1)); in multibytecodec_encerror() 349 Py_DECREF(retobj); in multibytecodec_encerror() 354 Py_XDECREF(retobj); in multibytecodec_encerror() 365 PyObject *retobj = NULL, *retuni = NULL; in multibytecodec_decerror() local [all …]
|
/external/python/setuptools/pkg_resources/_vendor/ |
D | pyparsing.py | 343 retobj = object.__new__(cls) 344 retobj.__doinit = True 345 return retobj
|
/external/python/setuptools/setuptools/_vendor/ |
D | pyparsing.py | 343 retobj = object.__new__(cls) 344 retobj.__doinit = True 345 return retobj
|