Home
last modified time | relevance | path

Searched refs:array_sp (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp355 auto array_sp = list.CreateStructuredArray(); in TEST_F() local
357 array_sp->GetItemAtIndex(0)->GetType()); in TEST_F()
359 array_sp->GetItemAtIndex(1)->GetType()); in TEST_F()
361 auto int_sp = array_sp->GetItemAtIndex(0)->GetAsInteger(); in TEST_F()
362 auto string_sp = array_sp->GetItemAtIndex(1)->GetAsString(); in TEST_F()
423 auto array_sp = tuple.CreateStructuredArray(); in TEST_F() local
424 EXPECT_EQ(tuple.GetSize(), array_sp->GetSize()); in TEST_F()
426 array_sp->GetItemAtIndex(0)->GetType()); in TEST_F()
428 array_sp->GetItemAtIndex(1)->GetType()); in TEST_F()
/llvm-project-15.0.7/lldb/source/Host/common/
H A DXML.cpp457 std::shared_ptr<StructuredData::Array> array_sp( in CreatePlistValue() local
459 node.ForEachChildElement([&array_sp](const XMLNode &node) -> bool { in CreatePlistValue()
460 array_sp->AddItem(CreatePlistValue(node)); in CreatePlistValue()
463 return array_sp; in CreatePlistValue()
/llvm-project-15.0.7/lldb/source/API/
H A DSBStructuredData.cpp137 StructuredData::ObjectSP array_sp = dict->GetKeys(); in GetKeys() local
138 StructuredData::Array *key_arr = array_sp->GetAsArray(); in GetKeys()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp712 auto array_sp = object_sp->GetAsArray(); in GetRemoteUnixSignals() local
713 if (!array_sp || !array_sp->IsValid()) in GetRemoteUnixSignals()
718 bool done = array_sp->ForEach( in GetRemoteUnixSignals()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DStructuredData.h379 auto array_sp = std::make_shared<Array>(); in GetKeys() local
384 array_sp->Push(key_object_sp); in GetKeys()
386 return array_sp; in GetKeys()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp883 StructuredData::ArraySP array_sp = std::make_shared<StructuredData::Array>(); in ExtractCrashInfoAnnotations() local
975 array_sp->AddItem(entry_sp); in ExtractCrashInfoAnnotations()
978 return array_sp; in ExtractCrashInfoAnnotations()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp613 TypeSP array_sp = std::make_shared<lldb_private::Type>( in CreateArrayType() local
617 array_sp->SetEncodingType(element_type.get()); in CreateArrayType()
618 return array_sp; in CreateArrayType()