reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  112   if (PythonBoolean::Check(m_py_obj))
  512   *this = Take<PythonBoolean>(PyBool_FromLong(value));
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  128 template <typename T> T Take(PyObject *obj) {
  131   T thing(PyRefType::Owned, obj);
  415     T::Convert(type, py_obj);
  416     if (T::Check(py_obj))
  501 class PythonBoolean : public TypedPythonObject<PythonBoolean> {
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
  201   PythonBoolean python_true(PyRefType::Owned, Py_True);
  206   PythonBoolean python_false(PyRefType::Owned, Py_False);
  212     PythonBoolean python_boolean(PyRefType::Owned, py_bool);
usr/include/c++/7.4.0/bits/move.h
   98     move(_Tp&& __t) noexcept
usr/include/c++/7.4.0/type_traits
 1633     { typedef _Tp   type; };