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

Declarations

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
  271   PyObjectType GetObjectType() const;

References

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
  205   switch (GetObjectType()) {
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
  178   EXPECT_EQ(PyObjectType::Integer, python_int.GetObjectType());
  186   EXPECT_EQ(PyObjectType::Integer, python_long.GetObjectType());
  202   EXPECT_EQ(PyObjectType::Boolean, python_true.GetObjectType());
  207   EXPECT_EQ(PyObjectType::Boolean, python_false.GetObjectType());
  213     EXPECT_EQ(PyObjectType::Boolean, python_boolean.GetObjectType());
  231   EXPECT_EQ(PyObjectType::String, python_bytes.GetObjectType());
  249   EXPECT_EQ(PyObjectType::ByteArray, python_bytes.GetObjectType());
  269   EXPECT_EQ(PyObjectType::String, python_string.GetObjectType());
  331   EXPECT_EQ(PyObjectType::List, list.GetObjectType());
  482   EXPECT_EQ(PyObjectType::Dictionary, dict.GetObjectType());