Home
last modified time | relevance | path

Searched refs:PythonInteger (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp175 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 PythonInteger
458 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()
H A DPythonDataObjects.h71 class PythonInteger; variable
481 class PythonInteger : public TypedPythonObject<PythonInteger> {
485 PythonInteger() : TypedPythonObject() {} // MSVC requires this for some reason
487 explicit PythonInteger(int64_t value);
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig443 As<long long>(pfunc.Call(PythonInteger(max))));
467 PythonObject result = pfunc(PythonInteger(idx));