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.cpp173 if (PythonBoolean::Check(m_py_obj)) in GetObjectType()
272 return PythonBoolean(PyRefType::Borrowed, m_py_obj) in CreateStructuredObject()
503 PythonBoolean::PythonBoolean(bool value) { in PythonBoolean() function in PythonBoolean
507 bool PythonBoolean::Check(PyObject *py_obj) { in Check()
511 bool PythonBoolean::GetValue() const { in GetValue()
515 void PythonBoolean::SetValue(bool value) { in SetValue()
516 *this = Take<PythonBoolean>(PyBool_FromLong(value)); in SetValue()
519 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.h309 return python::PythonBoolean(arg); in Transform()
366 python::PythonBoolean boolean_arg = python::PythonBoolean( in ReverseTransform()