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

Declarations

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
   69 class PythonInteger;

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
 8400     if (PythonInteger::Check(obj1))
 8402       PythonInteger py_int(PyRefType::Borrowed, obj1);
10541     if (PythonInteger::Check(obj1))
10543       PythonInteger py_int(PyRefType::Borrowed, obj1);
11591     if (PythonInteger::Check(obj1))
11593       PythonInteger py_int(PyRefType::Borrowed, obj1);
22825     if (PythonInteger::Check(obj0))
22827       PythonInteger py_int(PyRefType::Borrowed, obj0);
22879     if (PythonInteger::Check(obj0))
22881       PythonInteger py_int(PyRefType::Borrowed, obj0);
22916     if (PythonInteger::Check(obj0))
22918       PythonInteger py_int(PyRefType::Borrowed, obj0);
44420     if (PythonInteger::Check(obj1))
44422       PythonInteger py_int(PyRefType::Borrowed, obj1);
44525     if (PythonInteger::Check(obj1))
44527       PythonInteger py_int(PyRefType::Borrowed, obj1);
44608     if (PythonInteger::Check(obj1))
44610       PythonInteger py_int(PyRefType::Borrowed, obj1);
64346     if (PythonInteger::Check(obj4))
64348       PythonInteger py_int(PyRefType::Borrowed, obj4);
64436     if (PythonInteger::Check(obj4))
64438       PythonInteger py_int(PyRefType::Borrowed, obj4);
64498     if (PythonInteger::Check(obj2))
64500       PythonInteger py_int(PyRefType::Borrowed, obj2);
64968     if (PythonInteger::Check(obj1))
64970       PythonInteger py_int(PyRefType::Borrowed, obj1);
79953     PythonInteger int_result = result.AsType<PythonInteger>();
79953     PythonInteger int_result = result.AsType<PythonInteger>();
80021     PythonInteger int_result = result.AsType<PythonInteger>();
80021     PythonInteger int_result = result.AsType<PythonInteger>();
80089     PythonInteger int_result = result.AsType<PythonInteger>();
80089     PythonInteger int_result = result.AsType<PythonInteger>();
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  114   if (PythonInteger::Check(m_py_obj))
  488   *this = Take<PythonInteger>(PyLong_FromLongLong(value));
tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  128 template <typename T> T Take(PyObject *obj) {
  131   T thing(PyRefType::Owned, obj);
  304   template <typename T> T AsType() const {
  305     if (!T::Check(m_py_obj))
  415     T::Convert(type, py_obj);
  416     if (T::Check(py_obj))
  483 class PythonInteger : public TypedPythonObject<PythonInteger> {
  655   PythonObject operator()(const Arg &arg, Args... args) {
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
 3104   if (py_return.IsAllocated() && PythonInteger::Check(py_return.get())) {
 3105     PythonInteger int_value(PyRefType::Borrowed, py_return.get());
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
   84   PythonInteger long_value(PyRefType::Owned, PyLong_FromLong(3));
   88   PythonInteger borrowed_long(PyRefType::Borrowed, long_value.get());
  126   PythonInteger major_version_value =
  127       major_version_field.AsType<PythonInteger>();
  128   PythonInteger minor_version_value =
  129       minor_version_field.AsType<PythonInteger>();
  140   PythonInteger version_major =
  142           .AsType<PythonInteger>();
  143   PythonInteger version_minor =
  145           .AsType<PythonInteger>();
  158   PythonInteger version_major =
  160           .AsType<PythonInteger>();
  161   PythonInteger version_minor =
  163           .AsType<PythonInteger>();
  176   PythonInteger python_int(PyRefType::Owned, py_int);
  185   PythonInteger python_long(PyRefType::Owned, py_long);
  194   PythonInteger constructed_int(7);
  299   PythonInteger integer(7);
  339   PythonInteger chk_int(PyRefType::Borrowed, chk_value1.get());
  354   PythonInteger integer(long_value0);
  367   PythonInteger chk_int(PyRefType::Borrowed, chk_value1.get());
  406   PythonInteger int_value(1);
  420   PythonInteger int_value(1);
  432   PythonInteger int_value(1);
  445   PythonInteger int_value(1);
  490   PythonInteger chk_int(PyRefType::Borrowed, chk_value1.get());
  527   PythonInteger chk_int(PyRefType::Borrowed, chk_value1.get());
  568   PythonInteger one(1);
  593   PythonInteger py_int(42);
  597   PythonInteger numerator_attr =
  598       py_int.GetAttributeValue("numerator").AsType<PythonInteger>();
  608   PythonInteger python_ull_value(PyRefType::Owned,
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; };