Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp169 if (PythonBoolean::Check(m_py_obj)) in GetObjectType()
268 return PythonBoolean(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
478 PythonBoolean::PythonBoolean(bool value) { in PythonBoolean() function in PythonBoolean
482 bool PythonBoolean::Check(PyObject *py_obj) { in Check()
486 bool PythonBoolean::GetValue() const { in GetValue()
490 void PythonBoolean::SetValue(bool value) { in SetValue()
491 *this = Take<PythonBoolean>(PyBool_FromLong(value)); in SetValue()
494 StructuredData::BooleanSP PythonBoolean::CreateStructuredBoolean() const { in CreateStructuredBoolean()
H A DPythonDataObjects.h484 class PythonBoolean : public TypedPythonObject<PythonBoolean> {
488 explicit PythonBoolean(bool value);