Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp167 if (PythonBoolean::Check(m_py_obj)) in GetObjectType()
265 return PythonBoolean(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
548 PythonBoolean::PythonBoolean(bool value) { in PythonBoolean() function in PythonBoolean
552 bool PythonBoolean::Check(PyObject *py_obj) { in Check()
556 bool PythonBoolean::GetValue() const { in GetValue()
560 void PythonBoolean::SetValue(bool value) { in SetValue()
561 *this = Take<PythonBoolean>(PyBool_FromLong(value)); in SetValue()
564 StructuredData::BooleanSP PythonBoolean::CreateStructuredBoolean() const { in CreateStructuredBoolean()
H A DPythonDataObjects.h501 class PythonBoolean : public TypedPythonObject<PythonBoolean> {
505 explicit PythonBoolean(bool value);