Home
last modified time | relevance | path

Searched refs:PythonInteger (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp77 PythonInteger i(PyRefType::Borrowed, m_py_obj); in AsLongLong()
93 PythonInteger i(PyRefType::Borrowed, m_py_obj); in AsUnsignedLongLong()
110 PythonInteger i(PyRefType::Borrowed, m_py_obj); in AsModuloUnsignedLongLong()
169 if (PythonInteger::Check(m_py_obj)) in GetObjectType()
268 return PythonInteger(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
484 PythonInteger::PythonInteger(int64_t value) { SetInteger(value); } in PythonInteger() function in PythonInteger
486 bool PythonInteger::Check(PyObject *py_obj) { in Check()
499 void PythonInteger::Convert(PyRefType &type, PyObject *&py_obj) { in Convert()
527 void PythonInteger::SetInteger(int64_t value) { in SetInteger()
528 *this = Take<PythonInteger>(PyLong_FromLongLong(value)); in SetInteger()
[all …]
H A DPythonDataObjects.h71 class PythonInteger; variable
485 class PythonInteger : public TypedPythonObject<PythonInteger> {
489 PythonInteger() : TypedPythonObject() {} // MSVC requires this for some reason
491 explicit PythonInteger(int64_t value);
/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig728 ret_val = unwrapOrSetPythonException(As<long long>(pfunc.Call(PythonInteger(max))));
758 PythonObject result = pfunc(PythonInteger(idx));