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

References

tools/lldb/include/lldb/Core/StructuredDataImpl.h
   88     return (m_data_sp ? m_data_sp->GetType() :
   96     if (m_data_sp->GetType() == lldb::eStructuredDataTypeDictionary) {
   99     } else if (m_data_sp->GetType() == lldb::eStructuredDataTypeArray) {
tools/lldb/source/API/SBStructuredData.cpp
   70   if (!json_obj || json_obj->GetType() != eStructuredDataTypeDictionary)
tools/lldb/source/API/SBThread.cpp
  522           if (node->GetType() == eStructuredDataTypeString) {
  526           if (node->GetType() == eStructuredDataTypeInteger) {
  530           if (node->GetType() == eStructuredDataTypeFloat) {
  534           if (node->GetType() == eStructuredDataTypeBoolean) {
  541           if (node->GetType() == eStructuredDataTypeNull) {
tools/lldb/source/Core/FormatEntity.cpp
 1021     if (value->GetType() == eStructuredDataTypeInteger) {
 1027     } else if (value->GetType() == eStructuredDataTypeFloat) {
 1030     } else if (value->GetType() == eStructuredDataTypeString) {
 1033     } else if (value->GetType() == eStructuredDataTypeArray) {
 1038     } else if (value->GetType() == eStructuredDataTypeDictionary) {
 1335             object_sp->GetType() == eStructuredDataTypeDictionary) {
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
 3452           json_object->GetType() != lldb::eStructuredDataTypeDictionary) {
 3472         if (custom_params_sp->GetType() !=
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
 1051       json_object->GetType() != lldb::eStructuredDataTypeDictionary)
 1071       custom_params_sp->GetType() != lldb::eStructuredDataTypeDictionary)
 1113       json_object->GetType() != lldb::eStructuredDataTypeDictionary)
 1150       json_object->GetType() != lldb::eStructuredDataTypeDictionary)
 1218       json_object->GetType() != lldb::eStructuredDataTypeDictionary)
tools/lldb/source/Target/Thread.cpp
 1983     if (activity && activity->GetType() == eStructuredDataTypeDictionary) {
 1987       if (name && name->GetType() == eStructuredDataTypeString && id &&
 1988           id->GetType() == eStructuredDataTypeInteger) {
 1996     if (breadcrumb && breadcrumb->GetType() == eStructuredDataTypeDictionary) {
 2004           breadcrumb_text->GetType() == eStructuredDataTypeString) {
 2010     if (messages && messages->GetType() == eStructuredDataTypeArray) {
 2019           if (message && message->GetType() == eStructuredDataTypeDictionary) {
 2025                 message_text->GetType() == eStructuredDataTypeString) {
tools/lldb/source/Utility/StructuredData.cpp
   99   if (this->GetType() == lldb::eStructuredDataTypeDictionary) {
  115   if (this->GetType() == lldb::eStructuredDataTypeArray) {
tools/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
  515   ASSERT_EQ(custom_params->GetType(), eStructuredDataTypeDictionary);
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
  384             array_sp->GetItemAtIndex(0)->GetType());
  386             array_sp->GetItemAtIndex(1)->GetType());
  453             array_sp->GetItemAtIndex(0)->GetType());
  455             array_sp->GetItemAtIndex(1)->GetType());