Lines Matching refs:valobj

175     ValueObject &valobj, CompilerType compiler_type,  in GetPossibleMatches()  argument
183 TargetSP target_sp = valobj.GetTargetSP(); in GetPossibleMatches()
188 if (valobj.GetBitfieldBitSize() > 0) { in GetPossibleMatches()
190 sstring.Printf("%s:%d", type_name.AsCString(), valobj.GetBitfieldBitSize()); in GetPossibleMatches()
209 GetPossibleMatches(valobj, non_ref_type, use_dynamic, entries, in GetPossibleMatches()
218 valobj, deffed_referenced_type, in GetPossibleMatches()
225 GetPossibleMatches(valobj, non_ptr_type, use_dynamic, entries, in GetPossibleMatches()
231 GetPossibleMatches(valobj, deffed_pointed_type, use_dynamic, entries, in GetPossibleMatches()
240 ExecutionContext exe_ctx(valobj.GetExecutionContextRef()); in GetPossibleMatches()
250 valobj, deffed_array_type, in GetPossibleMatches()
256 GetCandidateLanguages(valobj.GetObjectRuntimeLanguage())) { in GetPossibleMatches()
259 language->GetPossibleFormattersMatches(valobj, use_dynamic)) { in GetPossibleMatches()
268 GetPossibleMatches(valobj, deffed_type, use_dynamic, entries, in GetPossibleMatches()
283 GetPossibleMatches(valobj, unqual_compiler_ast_type, use_dynamic, in GetPossibleMatches()
288 if (valobj.IsDynamic()) { in GetPossibleMatches()
289 lldb::ValueObjectSP static_value_sp(valobj.GetStaticValue()); in GetPossibleMatches()
451 bool FormatManager::ShouldPrintAsOneLiner(ValueObject &valobj) { in ShouldPrintAsOneLiner() argument
452 TargetSP target_sp = valobj.GetTargetSP(); in ShouldPrintAsOneLiner()
458 if (valobj.GetSummaryFormat().get() != nullptr) in ShouldPrintAsOneLiner()
459 return valobj.GetSummaryFormat()->IsOneLiner(); in ShouldPrintAsOneLiner()
464 auto num_children = valobj.GetNumChildren(max_num_children); in ShouldPrintAsOneLiner()
475 CompilerType compiler_type(valobj.GetCompilerType()); in ShouldPrintAsOneLiner()
477 switch (compiler_type.ShouldPrintAsOneLiner(&valobj)) { in ShouldPrintAsOneLiner()
491 ValueObjectSP child_sp(valobj.GetChildAtIndex(idx)); in ShouldPrintAsOneLiner()
557 ConstString FormatManager::GetTypeForCache(ValueObject &valobj, in GetTypeForCache() argument
559 ValueObjectSP valobj_sp = valobj.GetQualifiedRepresentationIfAvailable( in GetTypeForCache()
560 use_dynamic, valobj.IsSynthetic()); in GetTypeForCache()
621 ImplSP FormatManager::Get(ValueObject &valobj, in Get() argument
623 FormattersMatchData match_data(valobj, use_dynamic); in Get()
679 FormatManager::GetFormat(ValueObject &valobj, in GetFormat() argument
681 return Get<lldb::TypeFormatImplSP>(valobj, use_dynamic); in GetFormat()
685 FormatManager::GetSummaryFormat(ValueObject &valobj, in GetSummaryFormat() argument
687 return Get<lldb::TypeSummaryImplSP>(valobj, use_dynamic); in GetSummaryFormat()
691 FormatManager::GetSyntheticChildren(ValueObject &valobj, in GetSyntheticChildren() argument
693 return Get<lldb::SyntheticChildrenSP>(valobj, use_dynamic); in GetSyntheticChildren()