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

References

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  100   if (PythonTuple::Check(m_py_obj))
  581     *this = Take<PythonTuple>(PyTuple_New(0));
  585   *this = Take<PythonTuple>(PyTuple_New(tuple_size));
  931   PythonTuple arg_tuple(args);
  938   PythonTuple arg_tuple(args);
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))
  538 class PythonTuple : public TypedPythonObject<PythonTuple> {
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
  396   PythonTuple tuple(PyInitialValue::Empty);
  404   PythonTuple tuple(3);
  423   PythonTuple tuple{int_value, string_value, none_value};
  436   PythonTuple tuple{int_value.get(), string_value.get(), none_value.get()};
  448   PythonTuple tuple{int_value.get(), string_value.get()};
  570   PythonTuple three = {one, two};
  572   PythonTuple tuple_to_convert = {one, two, three};
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; };