Lines Matching defs:PythonInteger
175 if (PythonInteger::Check(m_py_obj))
276 PythonInteger(PyRefType::Borrowed, m_py_obj).CreateStructuredInteger();
454 // PythonInteger
456 PythonInteger::PythonInteger(int64_t value) { SetInteger(value); }
458 bool PythonInteger::Check(PyObject *py_obj) {
467 void PythonInteger::SetInteger(int64_t value) {
468 *this = Take<PythonInteger>(PyLong_FromLongLong(value));
471 StructuredData::IntegerSP PythonInteger::CreateStructuredInteger() const {
478 PythonInteger::CreateStructuredUnsignedInteger() const {
490 PythonInteger::CreateStructuredSignedInteger() const {