Lines Matching refs:PythonInteger
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 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()
470 void PythonInteger::Reset(PyRefType type, PyObject *py_obj) { in Reset()
475 if (!PythonInteger::Check(py_obj)) { in Reset()
500 int64_t PythonInteger::GetInteger() const { in GetInteger()
519 void PythonInteger::SetInteger(int64_t value) { in SetInteger()
523 StructuredData::IntegerSP PythonInteger::CreateStructuredInteger() const { in CreateStructuredInteger()