Searched refs:valobj_sp (Results 26 - 50 of 60) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxUnorderedMap.cpp30 LibcxxStdUnorderedMapSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
56 LibcxxStdUnorderedMapSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp) argument
57 : SyntheticChildrenFrontEnd(*valobj_sp), m_element_type(), m_tree(nullptr),
59 if (valobj_sp)
218 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) {
219 return (valobj_sp ? new LibcxxStdUnorderedMapSyntheticFrontEnd(valobj_sp)
217 LibcxxStdUnorderedMapSyntheticFrontEndCreator( CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) argument
H A DLibCxxBitset.cpp116 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) {
117 if (valobj_sp)
118 return new BitsetFrontEnd(*valobj_sp);
115 LibcxxBitsetSyntheticFrontEndCreator( CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) argument
H A DLibCxxMap.cpp177 LibcxxStdMapSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp);
207 LibcxxStdMapSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp) argument
208 : SyntheticChildrenFrontEnd(*valobj_sp), m_tree(nullptr),
211 if (valobj_sp)
463 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) {
464 return (valobj_sp ? new LibcxxStdMapSyntheticFrontEnd(valobj_sp) : nullptr);
462 LibcxxStdMapSyntheticFrontEndCreator( CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) argument
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectList.h41 void SetValueObjectAtIndex(size_t idx, const lldb::ValueObjectSP &valobj_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp138 ValueObjectSP valobj_sp; variable
147 valobj_sp = frame_sp->GuessValueForAddress(m_options.address.getValue());
149 valobj_sp = frame_sp->GuessValueForRegisterAndOffset(
159 valobj_sp = StopInfo::GetCrashingDereference(stop_info_sp);
162 if (!valobj_sp) {
169 [&valobj_sp](ConstString type, ConstString var,
174 valobj_sp->GetExpressionPath(stream, format);
181 ValueObjectPrinter printer(valobj_sp.get(), &result.GetOutputStream(),
503 ValueObjectSP valobj_sp; variable
549 valobj_sp
[all...]
H A DCommandObjectWatchpoint.cpp864 ValueObjectSP valobj_sp; variable
880 valobj_sp = frame->GetValueForVariableExpressionPath(
884 if (!valobj_sp) {
896 valobj_sp = valobj_list.GetValueObjectAtIndex(0);
901 if (valobj_sp) {
903 addr = valobj_sp->GetAddressOf(false, &addr_type);
908 ? valobj_sp->GetByteSize()
911 compiler_type = valobj_sp->GetCompilerType();
1057 ValueObjectSP valobj_sp; variable
1068 target->EvaluateExpression(expr, frame, valobj_sp, option
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DVectorType.cpp191 VectorTypeSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp) argument
192 : SyntheticChildrenFrontEnd(*valobj_sp), m_parent_format(eFormatInvalid),
301 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) {
302 if (!valobj_sp)
304 return new VectorTypeSyntheticFrontEnd(valobj_sp);
300 VectorTypeSyntheticFrontEndCreator( CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) argument
H A DFormatManager.cpp560 ValueObjectSP valobj_sp = valobj.GetQualifiedRepresentationIfAvailable( local
562 if (valobj_sp && valobj_sp->GetCompilerType().IsValid()) {
563 if (!valobj_sp->GetCompilerType().IsMeaninglessWithoutDynamicResolution())
564 return valobj_sp->GetQualifiedTypeName();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSIndexPath.cpp34 NSIndexPathSyntheticFrontEnd(lldb::ValueObjectSP valobj_sp) argument
35 : SyntheticChildrenFrontEnd(*valobj_sp.get()), m_descriptor_sp(nullptr),
305 lldb::ValueObjectSP valobj_sp) {
306 if (valobj_sp)
307 return new NSIndexPathSyntheticFrontEnd(valobj_sp);
304 NSIndexPathSyntheticFrontEndCreator(CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) argument
H A DCocoa.h99 lldb::ValueObjectSP valobj_sp);
103 lldb::ValueObjectSP valobj_sp);
H A DCocoa.cpp921 ObjCClassSyntheticChildrenFrontEnd(lldb::ValueObjectSP valobj_sp) argument
922 : SyntheticChildrenFrontEnd(*valobj_sp) {}
943 CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) {
944 return new ObjCClassSyntheticChildrenFrontEnd(valobj_sp);
1074 lldb::ValueObjectSP valobj_sp; local
1089 valobj_sp = ValueObject::CreateValueObjectFromAddress("text", data_address,
1097 valobj_sp =
1101 if (!valobj_sp)
1104 stream.Printf("%s", valobj_sp->GetSummaryAsCString());
942 ObjCClassSyntheticFrontEndCreator( CXXSyntheticChildren *, lldb::ValueObjectSP valobj_sp) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangPersistentVariables.cpp30 const lldb::ValueObjectSP &valobj_sp) {
31 return AddNewlyConstructedVariable(new ClangExpressionVariable(valobj_sp));
29 CreatePersistentVariable( const lldb::ValueObjectSP &valobj_sp) argument
H A DClangPersistentVariables.h45 CreatePersistentVariable(const lldb::ValueObjectSP &valobj_sp) override;
H A DClangExpressionVariable.h68 ClangExpressionVariable(const lldb::ValueObjectSP &valobj_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp104 lldb::ValueObjectSP &valobj_sp) {
111 if (!valobj_sp)
147 valobj_sp->GetChildMemberWithName(ConstString("__f_"), true));
164 ExecutionContext exe_ctx(valobj_sp->GetExecutionContextRef());
103 FindLibCppStdFunctionCallableInfo( lldb::ValueObjectSP &valobj_sp) argument
H A DCPPLanguageRuntime.h41 FindLibCppStdFunctionCallableInfo(lldb::ValueObjectSP &valobj_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DVariable.cpp350 ValueObjectSP valobj_sp(
356 valobj_list.SetValueObjectAtIndex(i, valobj_sp);
368 ValueObjectSP valobj_sp(
374 valobj_list.SetValueObjectAtIndex(i, valobj_sp);
403 ValueObjectSP valobj_sp; local
418 valobj_sp = variable_valobj_sp->GetValueForExpressionPath(
420 if (!valobj_sp) {
430 valobj_sp = variable_valobj_sp;
433 valobj_list.Append(valobj_sp);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DUserExpression.cpp117 lldb::ValueObjectSP valobj_sp; local
119 valobj_sp = frame_sp->GetValueForVariableExpressionPath(
127 if (!err.Success() || !valobj_sp.get())
130 lldb::addr_t ret = valobj_sp->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
H A DMaterializer.cpp440 lldb::ValueObjectSP valobj_sp = variable
443 if (!valobj_sp) {
450 Status valobj_error = valobj_sp->GetError();
462 valobj_sp->GetData(valobj_extractor, extract_error);
488 valobj_sp->GetAddressOf(scalar_is_load_address, &address_type);
502 valobj_sp->GetData(data, extract_error);
610 lldb::ValueObjectSP valobj_sp = variable
613 if (!valobj_sp) {
624 map.GetMemoryData(data, m_temporary_allocation, valobj_sp->GetByteSize(),
646 valobj_sp
[all...]
H A DREPL.cpp323 lldb::ValueObjectSP valobj_sp = persistent_var_sp->GetValueObject(); local
325 PrintOneVariable(debugger, output_sp, valobj_sp,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DREPL.h130 lldb::ValueObjectSP &valobj_sp,
H A DExpressionVariable.h215 CreatePersistentVariable(const lldb::ValueObjectSP &valobj_sp) = 0;
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBBlock.cpp281 lldb::ValueObjectSP valobj_sp(
285 value_sb.SetSP(valobj_sp, use_dynamic);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp521 ValueObjectSP valobj_sp; local
538 valobj_sp = ValueObjectConstResult::Create(
541 valobj_sp = GetVectorValueObject();
543 valobj_sp = GetStructValueObject();
546 return valobj_sp;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp2676 ValueObjectSP valobj_sp; local
2691 valobj_sp = ValueObjectConstResult::Create(
2696 if (!valobj_sp) {
2698 valobj_sp = ValueObjectConstResult::Create(
2701 return valobj_sp;
2881 ValueObjectSP valobj_sp; local
2888 valobj_sp = ValueObjectMemory::Create(
2891 return valobj_sp;
2895 ValueObjectSP valobj_sp; local
2902 valobj_sp
[all...]

Completed in 211 milliseconds

123