Searched refs:PythonInteger (Results 1 – 3 of 3) sorted by relevance
71 class PythonInteger; variable469 class PythonInteger : public TypedPythonObject<PythonInteger> {473 PythonInteger() : TypedPythonObject() {} // MSVC requires this for some reason475 explicit PythonInteger(int64_t value);
171 if (PythonInteger::Check(m_py_obj)) in GetObjectType()271 return PythonInteger(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()446 PythonInteger::PythonInteger(int64_t value) { SetInteger(value); } in PythonInteger() function in PythonInteger448 bool PythonInteger::Check(PyObject *py_obj) { in Check()457 void PythonInteger::SetInteger(int64_t value) { in SetInteger()458 *this = Take<PythonInteger>(PyLong_FromLongLong(value)); in SetInteger()461 StructuredData::IntegerSP PythonInteger::CreateStructuredInteger() const { in CreateStructuredInteger()
581 As<long long>(pfunc.Call(PythonInteger(max))));605 PythonObject result = pfunc(PythonInteger(idx));