| /llvm-project/llvm/utils/ |
| H A D | lldbDataFormatters.py | 105 def __init__(self, valobj, internal_dict): 106 self.valobj = valobj 131 self.begin = self.valobj.GetChildMemberWithName("BeginX") 132 self.size = self.valobj.GetChildMemberWithName("Size") 133 the_type = self.valobj.GetType() 150 def __init__(self, valobj, internal_dict): 151 self.valobj = valobj 172 self.data = self.valobj 99 __init__(self, valobj, internal_dict) global() argument 144 __init__(self, valobj, internal_dict) global() argument 174 GetOptionalValue(valobj) global() argument 192 OptionalSummaryProvider(valobj, internal_dict) global() argument 204 __init__(self, valobj, internal_dict) global() argument 221 SmallStringSummaryProvider(valobj, internal_dict) global() argument 234 StringRefSummaryProvider(valobj, internal_dict) global() argument 259 ConstStringSummaryProvider(valobj, internal_dict) global() argument 273 __init__(self, valobj, internal_dict) global() argument 333 __init__(self, valobj, internal_dict) global() argument [all...] |
| /llvm-project/mlir/utils/lldb-scripts/ |
| H A D | mlirDataFormatters.py | 170 valobj: lldb.SBValue, abstractVal: lldb.SBValue, internal_dict 175 if is_derived_attribute_or_type(valobj.GetType(), internal_dict): 176 return valobj.GetType() 180 typeIdMap = get_typeid_map(valobj.GetTarget(), internal_dict) 189 def __init__(self, valobj: lldb.SBValue, internal_dict): 190 self.valobj = valobj 194 impl: lldb.SBValue = self.valobj.GetChildMemberWithName("impl") 195 if self.valobj.GetTypeName() == "mlir::Location": 202 valobj, sel 326 __init__(self, valobj, internal_dict) global() argument 377 __init__(self, valobj, internal_dict) global() argument 463 __init__(self, valobj, internal_dict) global() argument 499 __init__(self, valobj, internal_dict) global() argument 528 __init__(self, valobj, internal_dict) global() argument 581 __init__(self, valobj, internal_dict) global() argument [all...] |
| /llvm-project/lldb/examples/summaries/cocoa/ |
| H A D | NSSet.py | 31 def __init__(self, valobj, params): argument 33 self.valobj = valobj 38 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong) 42 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt) 62 vcount = self.valobj.CreateChildAtOffset( 72 def __init__(self, valobj, params): argument 74 self.valobj = valobj 85 self.valobj.GetExpressionPath(stream) 87 num_children_vo = self.valobj.CreateValueFromExpression("count", expr) 97 def __init__(self, valobj, params): argument [all …]
|
| H A D | NSNumber.py | 33 def __init__(self, valobj, info_bits, data, params): argument 35 self.valobj = valobj 75 def __init__(self, valobj, params): argument 77 self.valobj = valobj 80 self.sys_params.types_cache.char = self.valobj.GetType().GetBasicType( 84 self.sys_params.types_cache.short = self.valobj.GetType().GetBasicType( 88 self.sys_params.types_cache.ushort = self.valobj.GetType().GetBasicType( 92 self.sys_params.types_cache.int = self.valobj.GetType().GetBasicType( 96 self.sys_params.types_cache.long = self.valobj.GetType().GetBasicType( 100 self.sys_params.types_cache.ulong = self.valobj.GetType().GetBasicType( [all …]
|
| H A D | NSDate.py | 74 def __init__(self, valobj, info_bits, data, params): argument 76 self.valobj = valobj 103 def __init__(self, valobj, params): argument 105 self.valobj = valobj 108 self.sys_params.types_cache.double = self.valobj.GetType().GetBasicType( 123 value = self.valobj.CreateChildAtOffset( 138 def __init__(self, valobj, params): argument 140 self.valobj = valobj 143 self.sys_params.types_cache.double = self.valobj.GetType().GetBasicType( 158 value = self.valobj.CreateChildAtOffset( [all …]
|
| H A D | CFDictionary.py | 31 def __init__(self, valobj, params): argument 33 self.valobj = valobj 38 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong) 42 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt) 63 num_children_vo = self.valobj.CreateChildAtOffset( 73 def __init__(self, valobj, params): argument 75 self.valobj = valobj 80 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong) 84 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt) 99 num_children_vo = self.valobj.CreateChildAtOffset( [all …]
|
| H A D | CFArray.py | 31 def __init__(self, valobj, dict, params): argument 33 self.valobj = valobj 43 self.valobj.GetExpressionPath(stream) 44 num_children_vo = self.valobj.CreateValueFromExpression( 61 def __init__(self, valobj, dict, params): argument 63 self.valobj = valobj 66 self.sys_params.types_cache.ulong = self.valobj.GetType().GetBasicType( 77 num_children_vo = self.valobj.CreateChildAtOffset( 87 def __init__(self, valobj, dict, params): argument 89 self.valobj = valobj [all …]
|
| H A D | CFString.py | 20 def CFString_SummaryProvider(valobj, dict): argument 22 provider = CFStringSynthProvider(valobj, dict) 38 def CFAttributedString_SummaryProvider(valobj, dict): argument 40 offset = valobj.GetTarget().GetProcess().GetAddressByteSize() 41 pointee = valobj.GetValueAsUnsigned(0) 45 child_ptr = valobj.CreateValueFromAddress( 46 "string_ptr", pointee, valobj.GetType() 49 "string_data", child_ptr.GetValueAsUnsigned(), valobj.GetType() 74 def __init__(self, valobj, dict): argument 76 self.valobj = valobj [all …]
|
| H A D | NSIndexSet.py | 31 def __init__(self, valobj, params): argument 33 self.valobj = valobj 38 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong) 40 self.sys_params.types_cache.uint32 = self.valobj.GetType().GetBasicType( 45 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt) 47 self.sys_params.types_cache.uint32 = self.valobj.GetType().GetBasicType( 51 self.sys_params.types_cache.uint32 = self.valobj.GetType().GetBasicType( 68 mode_chooser_vo = self.valobj.CreateChildAtOffset( 86 count_vo = self.valobj.CreateChildAtOffset( 92 count_ptr = self.valobj.CreateChildAtOffset( [all …]
|
| H A D | NSBundle.py | 32 def __init__(self, valobj, params): argument 34 self.valobj = valobj 38 self.valobj.GetTarget().FindFirstType("NSString").GetPointerType() 56 text = self.valobj.CreateChildAtOffset( 63 str(self.valobj.GetName()) + " triggered unknown pointer location", 66 self.valobj, self.sys_params 69 statistics.metric_hit("code_notrun", self.valobj) 77 def __init__(self, valobj, params): argument 79 self.valobj = valobj 90 self.valobj.GetExpressionPath(stream) [all …]
|
| H A D | NSData.py | 31 def __init__(self, valobj, params): argument 34 self.valobj = valobj 39 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong) 43 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt) 61 size = self.valobj.CreateChildAtOffset( 73 def __init__(self, valobj, params): argument 76 self.valobj = valobj 87 self.valobj.GetExpressionPath(stream) 89 num_children_vo = self.valobj.CreateValueFromExpression( 102 def GetSummary_Impl(valobj): argument [all …]
|
| H A D | NSException.py | 26 def __init__(self, valobj, params): argument 28 self.valobj = valobj 31 self.sys_params.types_cache.id = self.valobj.GetType().GetBasicType( 50 name_ptr = self.valobj.CreateChildAtOffset( 53 reason_ptr = self.valobj.CreateChildAtOffset( 68 def __init__(self, valobj, params): argument 70 self.valobj = valobj 81 self.valobj.GetExpressionPath(stream) 82 name_vo = self.valobj.CreateValueFromExpression( 85 reason_vo = self.valobj.CreateValueFromExpression( [all …]
|
| H A D | NSMachPort.py | 31 def __init__(self, valobj, params): argument 33 self.valobj = valobj 38 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong) 42 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt) 62 vport = self.valobj.CreateChildAtOffset( 72 def __init__(self, valobj, params): argument 74 self.valobj = valobj 85 self.valobj.GetExpressionPath(stream) 86 num_children_vo = self.valobj.CreateValueFromExpression( 94 def GetSummary_Impl(valobj): argument [all …]
|
| H A D | CFBinaryHeap.py | 31 def __init__(self, valobj, params): argument 33 self.valobj = valobj 38 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong) 42 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt) 59 size = self.valobj.CreateChildAtOffset( 69 def __init__(self, valobj, params): argument 71 self.valobj = valobj 82 self.valobj.GetExpressionPath(stream) 83 num_children_vo = self.valobj.CreateValueFromExpression( 91 def GetSummary_Impl(valobj): argument [all …]
|
| H A D | CFBag.py | 31 def __init__(self, valobj, params): argument 33 self.valobj = valobj 38 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedLong) 42 self.valobj.GetType().GetBasicType(lldb.eBasicTypeUnsignedInt) 62 size = self.valobj.CreateChildAtOffset( 72 def __init__(self, valobj, params): argument 74 self.valobj = valobj 85 self.valobj.GetExpressionPath(stream) 86 num_children_vo = self.valobj.CreateValueFromExpression( 94 def GetSummary_Impl(valobj): argument [all …]
|
| H A D | NSURL.py | 31 def __init__(self, valobj, params): argument 33 self.valobj = valobj 37 self.valobj.GetTarget().FindFirstType("NSString").GetPointerType() 41 self.valobj.GetTarget().FindFirstType("NSURL").GetPointerType() 66 text = self.valobj.CreateChildAtOffset( 69 base = self.valobj.CreateChildAtOffset( 89 def __init__(self, valobj, params): argument 91 self.valobj = valobj 102 self.valobj.GetExpressionPath(stream) 103 url_text_vo = self.valobj.CreateValueFromExpression( [all …]
|
| /llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | CxxStringTypes.cpp | 52 static bool CharStringSummaryProvider(ValueObject &valobj, Stream &stream) { in CharStringSummaryProvider() argument 53 Address valobj_addr = GetArrayAddressOrPointerValue(valobj); in CharStringSummaryProvider() 57 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj); in CharStringSummaryProvider() 59 options.SetTargetSP(valobj.GetTargetSP()); in CharStringSummaryProvider() 70 static bool CharSummaryProvider(ValueObject &valobj, Stream &stream) { in CharSummaryProvider() argument 73 valobj.GetData(data, error); in CharSummaryProvider() 79 StringPrinter::ReadBufferAndDumpToStreamOptions options(valobj); in CharSummaryProvider() 82 valobj.GetValueAsCString(ElemTraits.second, value); in CharSummaryProvider() 98 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &) { in Char8StringSummaryProvider() argument 99 return CharStringSummaryProvider<StringElementType::UTF8>(valobj, strea in Char8StringSummaryProvider() 103 Char16StringSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions &) Char16StringSummaryProvider() argument 108 Char32StringSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions &) Char32StringSummaryProvider() argument 113 WCharStringSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions &) WCharStringSummaryProvider() argument 155 Char8SummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions &) Char8SummaryProvider() argument 160 Char16SummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions &) Char16SummaryProvider() argument 165 Char32SummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions &) Char32SummaryProvider() argument 170 WCharSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions &) WCharSummaryProvider() argument [all...] |
| H A D | LibCxx.cpp | 107 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) { in LibcxxFunctionSummaryProvider() 109 ValueObjectSP valobj_sp(valobj.GetNonSyntheticValue()); in LibcxxFunctionSummaryProvider() 155 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) { in LibcxxSmartPointerSummaryProvider() 156 ValueObjectSP valobj_sp(valobj.GetNonSyntheticValue()); in LibcxxSmartPointerSummaryProvider() 197 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) { in LibcxxUniquePointerSummaryProvider() 198 ValueObjectSP valobj_sp(valobj.GetNonSyntheticValue()); in LibcxxUniquePointerSummaryProvider() 432 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) { in ExtractLibcxxStringInfo() 433 if (valobj.IsPointerType()) { in ExtractLibcxxStringInfo() 434 uint64_t value = valobj.GetValueAsUnsigned(0); in ExtractLibcxxStringInfo() 440 nullptr, nullptr, &valobj, fals in ExtractLibcxxStringInfo() 80 LibcxxFunctionSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxFunctionSummaryProvider() argument 128 LibcxxSmartPointerSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxSmartPointerSummaryProvider() argument 170 LibcxxUniquePointerSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxUniquePointerSummaryProvider() argument 394 LibcxxContainerSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxContainerSummaryProvider() argument 414 ExtractLibcxxStringInfo(ValueObject & valobj) ExtractLibcxxStringInfo() argument 504 LibcxxWStringSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options,ValueObjectSP location_sp,size_t size) LibcxxWStringSummaryProvider() argument 568 LibcxxWStringSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options) LibcxxWStringSummaryProvider() argument 583 LibcxxStringSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options,std::string prefix_token,ValueObjectSP location_sp,uint64_t size) LibcxxStringSummaryProvider() argument 627 LibcxxStringSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options,std::string prefix_token) LibcxxStringSummaryProvider() argument 641 formatStringImpl(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options,std::string prefix_token) formatStringImpl() argument 655 LibcxxStringSummaryProviderASCII(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options) LibcxxStringSummaryProviderASCII() argument 662 LibcxxStringSummaryProviderUTF16(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options) LibcxxStringSummaryProviderUTF16() argument 669 LibcxxStringSummaryProviderUTF32(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options) LibcxxStringSummaryProviderUTF32() argument 676 LibcxxExtractStringViewData(ValueObject & valobj) LibcxxExtractStringViewData() argument 696 formatStringViewImpl(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options,std::string prefix_token) formatStringViewImpl() argument 715 LibcxxStringViewSummaryProviderASCII(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options) LibcxxStringViewSummaryProviderASCII() argument 722 LibcxxStringViewSummaryProviderUTF16(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options) LibcxxStringViewSummaryProviderUTF16() argument 729 LibcxxStringViewSummaryProviderUTF32(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options) LibcxxStringViewSummaryProviderUTF32() argument 736 LibcxxWStringViewSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & summary_options) LibcxxWStringViewSummaryProvider() argument 754 LibcxxChronoTimePointSecondsSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options,const char * fmt) LibcxxChronoTimePointSecondsSummaryProvider() argument 798 LibcxxChronoSysSecondsSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxChronoSysSecondsSummaryProvider() argument 804 LibcxxChronoLocalSecondsSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxChronoLocalSecondsSummaryProvider() argument 810 LibcxxChronoTimepointDaysSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options,const char * fmt) LibcxxChronoTimepointDaysSummaryProvider() argument 852 LibcxxChronoSysDaysSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxChronoSysDaysSummaryProvider() argument 858 LibcxxChronoLocalDaysSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxChronoLocalDaysSummaryProvider() argument 864 LibcxxChronoMonthSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxChronoMonthSummaryProvider() argument 885 LibcxxChronoWeekdaySummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxChronoWeekdaySummaryProvider() argument 906 LibcxxChronoYearMonthDaySummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) LibcxxChronoYearMonthDaySummaryProvider() argument [all...] |
| /llvm-project/lldb/examples/synthetic/bitfield/ |
| H A D | example.py | 9 def __init__(self, valobj, dict): argument 12 self.valobj = valobj 54 if not self.valobj.IsValid(): 57 return self.valobj.GetChildMemberWithName("value") 60 op_chosen = self.valobj.GetChildMemberWithName("oper").GetValueAsUnsigned() 66 return self.valobj.CreateValueFromExpression( 70 return self.valobj.CreateValueFromExpression( 74 return self.valobj.CreateValueFromExpression( 78 return self.valobj.CreateValueFromExpression( 82 return self.valobj.CreateValueFromExpression( [all …]
|
| /llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/shared_ptr/ |
| H A D | TestDataFormatterLibcxxSharedPtr.py | 22 valobj = self.expect_var_path( 29 valobj.child[0].GetValueAsUnsigned(lldb.LLDB_INVALID_ADDRESS), 0 36 valobj = self.expect_var_path( 41 self.assertRegex(valobj.summary, r"^10( strong=1)? weak=1$") 42 self.assertNotEqual(valobj.child[0].unsigned, 0) 44 valobj = self.expect_var_path( 49 self.assertRegex(valobj.summary, r"^10( strong=1)? weak=1$") 50 self.assertNotEqual(valobj.child[0].unsigned, 0) 52 valobj = self.expect_var_path( 57 self.assertRegex(valobj.summary, r"^10( strong=1)? weak=1$") [all …]
|
| /llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A D | Cocoa.cpp | 39 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) { in NSBundleSummaryProvider() 40 ProcessSP process_sp = valobj.GetProcessSP(); in NSBundleSummaryProvider() argument 50 runtime->GetClassDescriptor(valobj)); in NSBundleSummaryProvider() 57 lldb::addr_t valobj_addr = valobj.GetValueAsUnsigned(0); in NSBundleSummaryProvider() 69 ValueObjectSP text(valobj.GetSyntheticChildAtOffset( in NSBundleSummaryProvider() 71 valobj.GetCompilerType().GetBasicTypeFromAST(lldb::eBasicTypeObjCID), in NSBundleSummaryProvider() 90 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) { in NSTimeZoneSummaryProvider() 91 ProcessSP process_sp = valobj.GetProcessSP(); in NSTimeZoneSummaryProvider() argument 101 runtime->GetClassDescriptor(valobj)); in NSTimeZoneSummaryProvider() 108 lldb::addr_t valobj_addr = valobj in NSTimeZoneSummaryProvider() 140 NSNotificationSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) NSNotificationSummaryProvider() argument 189 NSMachPortSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) NSMachPortSummaryProvider() argument 235 NSIndexSetSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) NSIndexSetSummaryProvider() argument 342 NSNumber_FormatChar(ValueObject & valobj,Stream & stream,char value,lldb::LanguageType lang) NSNumber_FormatChar() argument 355 NSNumber_FormatShort(ValueObject & valobj,Stream & stream,short value,lldb::LanguageType lang) NSNumber_FormatShort() argument 368 NSNumber_FormatInt(ValueObject & valobj,Stream & stream,int value,lldb::LanguageType lang) NSNumber_FormatInt() argument 381 NSNumber_FormatLong(ValueObject & valobj,Stream & stream,int64_t value,lldb::LanguageType lang) NSNumber_FormatLong() argument 394 NSNumber_FormatInt128(ValueObject & valobj,Stream & stream,const llvm::APInt & value,lldb::LanguageType lang) NSNumber_FormatInt128() argument 411 NSNumber_FormatFloat(ValueObject & valobj,Stream & stream,float value,lldb::LanguageType lang) NSNumber_FormatFloat() argument 424 NSNumber_FormatDouble(ValueObject & valobj,Stream & stream,double value,lldb::LanguageType lang) NSNumber_FormatDouble() argument 438 NSNumberSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) NSNumberSummaryProvider() argument 731 NSDecimalNumberSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) NSDecimalNumberSummaryProvider() argument 780 NSURLSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) NSURLSummaryProvider() argument 904 NSDateSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) NSDateSummaryProvider() argument 1006 ObjCClassSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) ObjCClassSummaryProvider() argument 1066 NSDataSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) NSDataSummaryProvider() argument 1129 ObjCBOOLSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) ObjCBOOLSummaryProvider() argument 1160 ObjCBooleanSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) ObjCBooleanSummaryProvider() argument 1190 ObjCSELSummaryProvider(ValueObject & valobj,Stream & stream,const TypeSummaryOptions & options) ObjCSELSummaryProvider() argument [all...] |
| H A D | Cocoa.h | 22 bool NSIndexSetSummaryProvider(ValueObject &valobj, Stream &stream, 25 bool NSArraySummaryProvider(ValueObject &valobj, Stream &stream, 29 bool NSDataSummaryProvider(ValueObject &valobj, Stream &stream, 32 bool NSNumberSummaryProvider(ValueObject &valobj, Stream &stream, 35 bool NSDecimalNumberSummaryProvider(ValueObject &valobj, Stream &stream, 38 bool NSNotificationSummaryProvider(ValueObject &valobj, Stream &stream, 41 bool NSTimeZoneSummaryProvider(ValueObject &valobj, Stream &stream, 44 bool NSMachPortSummaryProvider(ValueObject &valobj, Stream &stream, 47 bool NSDateSummaryProvider(ValueObject &valobj, Stream &stream, 50 bool NSBundleSummaryProvider(ValueObject &valobj, Strea [all...] |
| /llvm-project/lldb/examples/summaries/ |
| H A D | sp_cp.py | 11 def __init__(self, valobj, dict): argument 12 self.valobj = valobj 30 return self.valobj.GetChildMemberWithName("_M_ptr") 33 self.valobj.GetChildMemberWithName("_M_refcount") 40 def SharedPtr_SummaryProvider(valobj, dict): argument 41 return "use = " + str(valobj.GetChildMemberWithName("count").GetValueAsUnsigned()) 45 def __init__(self, valobj, dict): argument 46 self.valobj = valobj 64 return self.valobj.GetChildMemberWithName("ptr_") 66 return self.valobj.GetChildMemberWithName("cntrl_").GetChildMemberWithName( [all …]
|
| /llvm-project/lldb/examples/synthetic/ |
| H A D | gnu_libstdcpp.py | 9 def ForwardListSummaryProvider(valobj, dict): argument 10 list_capping_size = valobj.GetTarget().GetMaximumNumberOfChildrenToDisplay() 11 text = "size=" + str(valobj.GetNumChildren()) 12 if valobj.GetNumChildren() > list_capping_size: 18 def StdOptionalSummaryProvider(valobj, dict): argument 19 has_value = valobj.GetNumChildren() > 0 25 def __init__(self, valobj, dict): argument 26 self.valobj = valobj 30 self.payload = self.valobj 61 __init__(self, valobj, dict) global() argument 66 get_object_kind(self, valobj) global() argument 143 __init__(self, valobj, dict, has_prev) global() argument 325 __init__(self, valobj, dict) global() argument 341 __init__(self, valobj, dict) global() argument 365 __init__(self, valobj) global() argument 451 __init__(self, valobj, bool_type) global() argument 502 __init__(self, valobj, dict) global() argument 538 __init__(self, valobj, dict) global() argument 551 get_object_kind(self, valobj) global() argument 737 __init__(self, valobj, d) global() argument 897 VariantSummaryProvider(valobj, dict) global() argument 930 __init__(self, valobj, dict) global() argument [all...] |
| /llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/unique_ptr/ |
| H A D | TestDataFormatterLibcxxUniquePtr.py | 44 valobj = self.expect_var_path( 51 valobj.child[0].GetValueAsUnsigned(lldb.LLDB_INVALID_ADDRESS), 0 58 valobj = self.expect_var_path( 64 self.assertNotEqual(valobj.child[0].unsigned, 0) 66 valobj = self.expect_var_path( 72 self.assertNotEqual(valobj.child[0].unsigned, 0) 74 valobj = self.expect_var_path( 80 self.assertNotEqual(valobj.child[0].unsigned, 0) 82 valobj = self.expect_var_path( 89 valobj = self.expect_var_path("up_user", type=self.make_expected_type("User")) [all …]
|