Home
last modified time | relevance | path

Searched refs:ValueObjectConstResult (Results 1 – 25 of 27) sorted by relevance

12

/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDValueObjectConstResult.cpp33 ValueObjectConstResult::Create (ExecutionContextScope *exe_scope, in Create()
38 return (new ValueObjectConstResult (exe_scope, in Create()
44 ValueObjectConstResult::ValueObjectConstResult (ExecutionContextScope *exe_scope, in ValueObjectConstResult() function in ValueObjectConstResult
61 ValueObjectConstResult::Create in Create()
70 return (new ValueObjectConstResult (exe_scope, in Create()
77 ValueObjectConstResult::ValueObjectConstResult (ExecutionContextScope *exe_scope, in ValueObjectConstResult() function in ValueObjectConstResult
105 ValueObjectConstResult::Create (ExecutionContextScope *exe_scope, in Create()
113 return (new ValueObjectConstResult (exe_scope, in Create()
123 ValueObjectConstResult::Create (ExecutionContextScope *exe_scope, in Create()
128 return (new ValueObjectConstResult (exe_scope, value, name, module))->GetSP(); in Create()
[all …]
HDValueObjectConstResultImpl.cpp142 … m_address_of_backend = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(), in AddressOf()
HDValueObject.cpp3613 valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(), in CreateConstantValue()
3623 … valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(), m_error); in CreateConstantValue()
3815 … m_addr_of_valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(), in AddressOf()
4115 …lldb::ValueObjectSP ptr_result_valobj_sp(ValueObjectConstResult::Create (exe_ctx.GetBestExecutionC… in CreateValueObjectFromAddress()
4142 new_value_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(), in CreateValueObjectFromData()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDValueObjectConstResult.h26 class ValueObjectConstResult : public ValueObject
70 virtual ~ValueObjectConstResult();
148 ValueObjectConstResult (ExecutionContextScope *exe_scope,
153 ValueObjectConstResult (ExecutionContextScope *exe_scope,
159 ValueObjectConstResult (ExecutionContextScope *exe_scope,
167 ValueObjectConstResult (ExecutionContextScope *exe_scope,
174 ValueObjectConstResult (ExecutionContextScope *exe_scope,
179 ValueObjectConstResult (ExecutionContextScope *exe_scope,
182 DISALLOW_COPY_AND_ASSIGN (ValueObjectConstResult);
HDValueObjectConstResultChild.h69 friend class ValueObjectConstResult; variable
HDValueObjectChild.h111 friend class ValueObjectConstResult; variable
HDValueObjectDynamicValue.h141 friend class ValueObjectConstResult; variable
/NextBSD/contrib/llvm/tools/lldb/source/Expression/
HDClangExpressionVariable.cpp27 m_frozen_sp (ValueObjectConstResult::Create (exe_scope, byte_order, addr_byte_size)) in ClangExpressionVariable()
38 m_frozen_sp (ValueObjectConstResult::Create (exe_scope, value, name)) in ClangExpressionVariable()
HDClangUserExpression.cpp1075 … result_valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(), error); in Evaluate()
1109 … result_valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(), error); in Evaluate()
1168 … result_valobj_sp = ValueObjectConstResult::Create (exe_ctx.GetBestExecutionContextScope(), error); in Evaluate()
HDMaterializer.cpp103 …m_persistent_variable_sp->m_live_sp = ValueObjectConstResult::Create (map.GetBestExecutionContextS… in MakeAllocation()
234 …m_persistent_variable_sp->m_live_sp = ValueObjectConstResult::Create (map.GetBestExecutionContextS… in Dematerialize()
883 ret->m_live_sp = ValueObjectConstResult::Create(exe_scope, in Dematerialize()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/
HDABISysV_i386.cpp458 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectSimple()
519 … return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectSimple()
529 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectSimple()
572 … return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectSimple()
633 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectSimple()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Expression/
HDClangExpressionVariable.h38 class ValueObjectConstResult; variable
251 typedef std::shared_ptr<ValueObjectConstResult> ValueObjectConstResultSP;
/NextBSD/lib/clang/liblldbCore/
HDMakefile.depend101 ValueObjectConstResult.o: DiagnosticCommonKinds.inc.h
102 ValueObjectConstResult.po: DiagnosticCommonKinds.inc.h
HDMakefile71 ValueObjectConstResult.cpp \
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/
HDABISysV_ppc.cpp668 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectSimple()
678 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectSimple()
711 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectSimple()
948 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectImpl()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/
HDABISysV_ppc64.cpp668 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectSimple()
678 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectSimple()
711 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectSimple()
948 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectImpl()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/
HDABISysV_x86_64.cpp742 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectSimple()
752 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectSimple()
792 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectSimple()
1050 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectImpl()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/
HDABISysV_mips64.cpp449 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectImpl()
459 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectImpl()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/
HDABISysV_arm64.cpp900 … return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectImpl()
986 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectImpl()
1017 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectImpl()
1037 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectImpl()
/NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/
HDNSIndexPath.cpp232 return ValueObjectConstResult::Create(m_process, v, ConstString(idx_name.GetData())); in GetIndexAtIndex()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/
HDABIMacOSX_arm64.cpp928 … return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectImpl()
1014 return_valobj_sp = ValueObjectConstResult::Create (thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectImpl()
1045 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectImpl()
1065 return_valobj_sp = ValueObjectConstResult::Create (&thread, in GetReturnValueObjectImpl()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/
HDABISysV_hexagon.cpp544 vObjSP = ValueObjectConstResult::Create in GetReturnValueObjectImpl()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/
HDABISysV_mips.cpp484 return_valobj_sp = ValueObjectConstResult::Create(thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectImpl()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/
HDlldb-forward.h272 class ValueObjectConstResult; variable
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/
HDABIMacOSX_i386.cpp730 return_valobj_sp = ValueObjectConstResult::Create(thread.GetStackFrameAtIndex(0).get(), in GetReturnValueObjectImpl()

12