Lines Matching defs:PythonInteger
173 if (PythonInteger::Check(m_py_obj))
274 PythonInteger(PyRefType::Borrowed, m_py_obj).CreateStructuredInteger();
452 // PythonInteger
454 PythonInteger::PythonInteger(int64_t value) { SetInteger(value); }
456 bool PythonInteger::Check(PyObject *py_obj) {
465 void PythonInteger::SetInteger(int64_t value) {
466 *this = Take<PythonInteger>(PyLong_FromLongLong(value));
469 StructuredData::IntegerSP PythonInteger::CreateStructuredInteger() const {
476 PythonInteger::CreateStructuredUnsignedInteger() const {
488 PythonInteger::CreateStructuredSignedInteger() const {