Searched refs:PythonInteger (Results 1 – 3 of 3) sorted by relevance
81 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 PythonInteger443 PythonInteger::PythonInteger(PyRefType type, PyObject *py_obj) in PythonInteger() function in PythonInteger448 PythonInteger::PythonInteger(const PythonInteger &object) in PythonInteger() function in PythonInteger451 PythonInteger::PythonInteger(int64_t value) : PythonObject() { in PythonInteger() function in PythonInteger455 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 …]
34 class PythonInteger; variable278 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;
3160 if (py_return.IsAllocated() && PythonInteger::Check(py_return.get())) { in GetFlagsForCommandObject()3161 PythonInteger int_value(PyRefType::Borrowed, py_return.get()); in GetFlagsForCommandObject()