Home
last modified time | relevance | path

Searched refs:PythonBoolean (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedPythonInterface.h
H A DPythonDataObjects.cpp171 if (PythonBoolean::Check(m_py_obj)) in GetObjectType()
270 return PythonBoolean(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
501 PythonBoolean::PythonBoolean(bool value) { in PythonBoolean() function in PythonBoolean
505 bool PythonBoolean::Check(PyObject *py_obj) { in Check()
509 bool PythonBoolean::GetValue() const { in GetValue()
513 void PythonBoolean::SetValue(bool value) { in SetValue()
514 *this = Take<PythonBoolean>(PyBool_FromLong(value)); in SetValue()
517 StructuredData::BooleanSP PythonBoolean::CreateStructuredBoolean() const { in CreateStructuredBoolean()
H A DPythonDataObjects.h500 class PythonBoolean : public TypedPythonObject<PythonBoolean> {
504 explicit PythonBoolean(bool value);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedPythonInterface.h412 return python::PythonBoolean(arg); in Transform()
476 python::PythonBoolean boolean_arg = python::PythonBoolean( in ReverseTransform()