Home
last modified time | relevance | path

Searched refs:ExpressionVariable (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangExpressionVariable.cpp26 : ExpressionVariable(LLVMCastKind::eKindClang), m_parser_vars(), in ClangExpressionVariable()
36 : ExpressionVariable(LLVMCastKind::eKindClang), m_parser_vars(), in ClangExpressionVariable()
44 : ExpressionVariable(LLVMCastKind::eKindClang), m_parser_vars(), in ClangExpressionVariable()
54 : ExpressionVariable(LLVMCastKind::eKindClang), m_parser_vars(), in ClangExpressionVariable()
DClangExpressionVariable.h60 class ClangExpressionVariable : public ExpressionVariable {
195 static bool classof(const ExpressionVariable *ev) { in classof()
196 return ev->getKind() == ExpressionVariable::eKindClang; in classof()
/external/llvm-project/lldb/include/lldb/Expression/
DExpressionVariable.h23 class ExpressionVariable
24 : public std::enable_shared_from_this<ExpressionVariable> {
31 ExpressionVariable(LLVMCastKind kind) : m_flags(0), m_kind(kind) {} in ExpressionVariable() function
33 virtual ~ExpressionVariable();
138 AddNewlyConstructedVariable(ExpressionVariable *var) { in AddNewlyConstructedVariable()
DREPL.h131 ExpressionVariable *var = nullptr) = 0;
/external/llvm-project/lldb/source/Expression/
DExpressionVariable.cpp16 ExpressionVariable::~ExpressionVariable() {} in ~ExpressionVariable()
18 uint8_t *ExpressionVariable::GetValueBytes() { in GetValueBytes()
DMaterializer.cpp97 ExpressionVariable::EVKeepInTarget) { in MakeAllocation()
101 ~ExpressionVariable::EVNeedsAllocation; in MakeAllocation()
155 ExpressionVariable::EVNeedsAllocation) { in Materialize()
158 ExpressionVariable::EVIsLLDBAllocated; in Materialize()
165 ExpressionVariable::EVIsProgramReference && in Materialize()
168 ExpressionVariable::EVIsLLDBAllocated) { in Materialize()
211 ExpressionVariable::EVIsLLDBAllocated) || in Dematerialize()
213 ExpressionVariable::EVIsProgramReference)) { in Dematerialize()
215 ExpressionVariable::EVIsProgramReference && in Dematerialize()
247 ExpressionVariable::EVIsLLDBAllocated; in Dematerialize()
[all …]
DCMakeLists.txt5 ExpressionVariable.cpp
/external/llvm-project/lldb/source/Target/
DABI.cpp129 ExpressionVariable::EVIsFreezeDried; in GetReturnValueObject()
131 ExpressionVariable::EVIsLLDBAllocated; in GetReturnValueObject()
133 ExpressionVariable::EVNeedsAllocation; in GetReturnValueObject()
138 ExpressionVariable::EVIsProgramReference; in GetReturnValueObject()
/external/llvm-project/lldb/include/lldb/
Dlldb-forward.h89 class ExpressionVariable; variable
321 typedef std::shared_ptr<lldb_private::ExpressionVariable> ExpressionVariableSP;
/external/llvm-project/lldb/include/lldb/Core/
DValueObject.h890 friend class ExpressionVariable; // For SetName variable
/external/llvm-project/lldb/source/Core/
DValueObject.cpp3237 persistent_var_sp->m_flags |= ExpressionVariable::EVIsProgramReference; in Persist()