Lines Matching refs:PythonInteger
77 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()
531 StructuredData::IntegerSP PythonInteger::CreateStructuredInteger() const { in CreateStructuredInteger()