Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp81 if (PythonInteger::Check(m_py_obj)) in GetObjectType()
183 return PythonInteger(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
441 PythonInteger::PythonInteger() : PythonObject() {} in PythonInteger() function in PythonInteger
443 PythonInteger::PythonInteger(PyRefType type, PyObject *py_obj) in PythonInteger() function in PythonInteger
448 PythonInteger::PythonInteger(const PythonInteger &object) in PythonInteger() function in PythonInteger
451 PythonInteger::PythonInteger(int64_t value) : PythonObject() { in PythonInteger() function in PythonInteger
455 PythonInteger::~PythonInteger() {} in ~PythonInteger()
457 bool PythonInteger::Check(PyObject *py_obj) { in Check()
475 if (!PythonInteger::Check(py_obj)) { in Reset()
500 int64_t PythonInteger::GetInteger() const { in GetInteger()
[all …]
H A DPythonDataObjects.h34 class PythonInteger; variable
278 class PythonInteger : public PythonObject {
280 PythonInteger();
281 explicit PythonInteger(int64_t value);
282 PythonInteger(PyRefType type, PyObject *o);
283 PythonInteger(const PythonInteger &object);
285 ~PythonInteger() override;
H A DScriptInterpreterPython.cpp3160 if (py_return.IsAllocated() && PythonInteger::Check(py_return.get())) { in GetFlagsForCommandObject()
3161 PythonInteger int_value(PyRefType::Borrowed, py_return.get()); in GetFlagsForCommandObject()