Home
last modified time | relevance | path

Searched refs:GetSummary (Results 1 – 25 of 42) sorted by relevance

12

/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/
H A DTestDataFormatterStdString.py62 self.assertEqual(var_wempty.GetSummary(), 'L""', "wempty summary wrong")
64 var_s.GetSummary(), 'L"hello world! מזל טוב!"',
66 self.assertEqual(var_S.GetSummary(), 'L"!!!!"', "S summary wrong")
68 var_mazeltov.GetSummary(), 'L"מזל טוב"',
70 self.assertEqual(var_empty.GetSummary(), '""', "empty summary wrong")
72 var_q.GetSummary(), '"hello world"',
75 var_Q.GetSummary(), '"quite a long std::strin with lots of info inside it"',
77 self.assertEqual(var_uchar.GetSummary(), '"aaaaa"', "u summary wrong")
82 var_S.GetSummary(), 'L"!!!!!"',
/llvm-project-15.0.7/lldb/test/API/python_api/value/
H A DTestValueAPI.py69 self.assertEqual(day.GetSummary(), list_day.GetSummary(), VALID_VARIABLE)
73 self.assertEqual(first_day.GetSummary(), '"Monday"', VALID_VARIABLE)
135 self.expect(child.GetSummary(), exe=False,
144 child.GetSummary() == val2.GetSummary())
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/
H A DTestDataFormatterStdUniquePtr.py44 self.assertEqual('"foobar"', frame.GetValueForVariablePath("sup.object").GetSummary())
45 self.assertEqual('"foobar"', frame.GetValueForVariablePath("*sup").GetSummary())
50 self.assertEqual('"baz"', frame.GetValueForVariablePath("sdp.object").GetSummary())
51 self.assertEqual('"baz"', frame.GetValueForVariablePath("*sdp").GetSummary())
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string_view/
H A DTestDataFormatterLibcxxStringView.py111 self.assertEqual(null_obj.GetSummary(), "Summary Unavailable")
121 TheVeryLongOne.GetSummary(uncappedSummaryStream, summaryOptions)
127 TheVeryLongOne.GetSummary(cappedSummaryStream, summaryOptions)
187 self.assertEqual( broken_obj.GetSummary(), "Summary Unavailable" )
/llvm-project-15.0.7/lldb/examples/summaries/cocoa/
H A DSelector.py13 lldb.eBasicTypeChar).GetPointerType()).GetSummary()
19 lldb.eBasicTypeChar)).AddressOf().GetSummary()
H A DNSBundle.py58 my_string = text.GetSummary()
92 return url_text_vo.GetSummary()
H A DCFString.py27 summary = summary.GetSummary()
55 provider.get_child_index("content")).GetSummary()
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/string/
H A DTestDataFormatterLibcxxString.py84 TheVeryLongOne.GetSummary(uncappedSummaryStream, summaryOptions)
90 TheVeryLongOne.GetSummary(cappedSummaryStream, summaryOptions)
133 summary = var.GetSummary()
/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcppUniquePointer.cpp39 bool GetSummary(Stream &stream, const TypeSummaryOptions &options);
155 bool LibStdcppUniquePtrSyntheticFrontEnd::GetSummary( in GetSummary() function in LibStdcppUniquePtrSyntheticFrontEnd
181 return formatter.GetSummary(stream, options); in LibStdcppUniquePointerSummaryProvider()
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/
H A DTestDataFormatterStdTuple.py38 self.assertEqual('"foobar"', frame.GetValueForVariablePath("ts[0]").GetSummary())
42 self.assertEqual('"baz"', frame.GetValueForVariablePath("tt[1]").GetSummary())
/llvm-project-15.0.7/lldb/examples/scripting/
H A Dtree_utils.py47 root_word = root_word_ptr.GetSummary()
115 print(root.GetChildAtIndex(0).GetSummary())
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/synthupdate/
H A DTestSyntheticFilterRecompute.py57 id_x.GetSummary(), '@"5 elements"',
80 id_x.GetSummary(), "7 key/value pairs",
/llvm-project-15.0.7/lldb/test/API/lang/objc/single-entry-dictionary/
H A DTestObjCSingleEntryDictionary.py84 key.GetSummary(), '@"key"',
87 value.GetSummary(), '@"value"',
/llvm-project-15.0.7/lldb/test/API/python_api/sbvalue_persist/
H A DTestSBValuePersist.py63 self.assertEquals(bazPersist.GetSummary(), '"85"', "bazPersist != 85")
77 self.assertEquals(bazPersist.GetSummary(), '"85"', "bazPersist != 85")
/llvm-project-15.0.7/clang/utils/
H A DClangDataFormat.py54 return print_str.GetSummary()
70 return std_str.GetSummary()
/llvm-project-15.0.7/lldb/examples/summaries/
H A Dpysummary.py11 expr, lldb.SBExpressionOptions()).GetSummary()
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-caching/
H A DTestDataFormatterCaching.py22 self.assertEqual(valobj.GetSummary(), '(1, 2, 3, 4)')
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBValue.i123 GetSummary ();
126 GetSummary (lldb::SBStream& stream,
502 …summary = property(GetSummary, None, doc='''A read only property that returns the summary for this…
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBValue.h71 const char *GetSummary();
73 const char *GetSummary(lldb::SBStream &stream,
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbinline.py170 print(value.GetSummary())
173 answer = value.GetSummary()
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-stepping/
H A DTestObjCStepping.py94 className = mySource_isa.GetSummary()
154 newClassName = mySource_isa.GetSummary()
/llvm-project-15.0.7/lldb/test/API/lang/objc/exceptions/
H A DTestObjCExceptions.py79 self.assertEqual(e1.GetSummary(), '"SomeReason"')
108 self.assertEqual(e2.GetSummary(), '"SomeReason"')
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-static-method/
H A DTestObjCStaticMethod.py58 sel_name = cmd_value.GetSummary()
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc-static-method-stripped/
H A DTestObjCStaticMethodStripped.py63 sel_name = cmd_value.GetSummary()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_value.py20 obj.GetSummary()

12