Searched refs:PythonInteger (Results 1 – 3 of 3) sorted by relevance
175 if (PythonInteger::Check(m_py_obj)) in GetObjectType()276 PythonInteger(PyRefType::Borrowed, m_py_obj).CreateStructuredInteger(); in CreateStructuredObject()456 PythonInteger::PythonInteger(int64_t value) { SetInteger(value); } in PythonInteger() function in PythonInteger458 bool PythonInteger::Check(PyObject *py_obj) { in Check()467 void PythonInteger::SetInteger(int64_t value) { in SetInteger()468 *this = Take<PythonInteger>(PyLong_FromLongLong(value)); in SetInteger()471 StructuredData::IntegerSP PythonInteger::CreateStructuredInteger() const { in CreateStructuredInteger()478 PythonInteger::CreateStructuredUnsignedInteger() const { in CreateStructuredUnsignedInteger()490 PythonInteger::CreateStructuredSignedInteger() const { in CreateStructuredSignedInteger()
71 class PythonInteger; variable481 class PythonInteger : public TypedPythonObject<PythonInteger> {485 PythonInteger() : TypedPythonObject() {} // MSVC requires this for some reason487 explicit PythonInteger(int64_t value);
443 As<long long>(pfunc.Call(PythonInteger(max))));467 PythonObject result = pfunc(PythonInteger(idx));