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.cpp173 if (PythonInteger::Check(m_py_obj)) in GetObjectType()
274 PythonInteger(PyRefType::Borrowed, m_py_obj).CreateStructuredInteger(); in CreateStructuredObject()
454 PythonInteger::PythonInteger(int64_t value) { SetInteger(value); } in PythonInteger() function in PythonInteger
456 bool PythonInteger::Check(PyObject *py_obj) { in Check()
465 void PythonInteger::SetInteger(int64_t value) { in SetInteger()
466 *this = Take<PythonInteger>(PyLong_FromLongLong(value)); in SetInteger()
469 StructuredData::IntegerSP PythonInteger::CreateStructuredInteger() const { in CreateStructuredInteger()
476 PythonInteger::CreateStructuredUnsignedInteger() const { in CreateStructuredUnsignedInteger()
488 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.swig347 As<long long>(pfunc.Call(PythonInteger(max))));
371 PythonObject result = pfunc(PythonInteger(idx));
686 PythonObject result = pfunc(args_list, PythonInteger(args_pos), PythonInteger(pos_in_arg));
714 PythonObject result = pfunc(PythonString(long_option), PythonInteger(pos_in_arg));