Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h71 class PythonInteger; variable
469 class PythonInteger : public TypedPythonObject<PythonInteger> {
473 PythonInteger() : TypedPythonObject() {} // MSVC requires this for some reason
475 explicit PythonInteger(int64_t value);
H A DPythonDataObjects.cpp171 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 PythonInteger
448 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()
/openbsd-src/gnu/llvm/lldb/bindings/python/
H A Dpython-wrapper.swig581 As<long long>(pfunc.Call(PythonInteger(max))));
605 PythonObject result = pfunc(PythonInteger(idx));