Symbol: VariableValueNodeChild
headers/private/debugger/value/value_nodes/VariableValueNodeChild.h
15
class VariableValueNodeChild : public ValueNodeChild {
headers/private/debugger/value/value_nodes/VariableValueNodeChild.h
17
VariableValueNodeChild(Variable* variable);
headers/private/debugger/value/value_nodes/VariableValueNodeChild.h
18
virtual ~VariableValueNodeChild();
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
1211
VariableValueNodeChild* child = dynamic_cast<VariableValueNodeChild *>(
src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp
1617
_child = new(std::nothrow) VariableValueNodeChild(variable);
src/kits/debugger/debug_managers/ValueNodeManager.cpp
177
ValueNodeChild* nodeChild = new (std::nothrow) VariableValueNodeChild(
src/kits/debugger/jobs/ResolveValueNodeJob.cpp
150
VariableValueNodeChild* variableChild = dynamic_cast<
src/kits/debugger/jobs/ResolveValueNodeJob.cpp
151
VariableValueNodeChild*>(nodeChild);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1987
_output = new(std::nothrow) VariableValueNodeChild(
src/kits/debugger/value/value_nodes/VariableValueNodeChild.cpp
13
VariableValueNodeChild::VariableValueNodeChild(Variable* variable)
src/kits/debugger/value/value_nodes/VariableValueNodeChild.cpp
22
VariableValueNodeChild::~VariableValueNodeChild()
src/kits/debugger/value/value_nodes/VariableValueNodeChild.cpp
29
VariableValueNodeChild::Name() const
src/kits/debugger/value/value_nodes/VariableValueNodeChild.cpp
36
VariableValueNodeChild::GetType() const
src/kits/debugger/value/value_nodes/VariableValueNodeChild.cpp
43
VariableValueNodeChild::Parent() const
src/kits/debugger/value/value_nodes/VariableValueNodeChild.cpp
50
VariableValueNodeChild::ResolveLocation(ValueLoader* valueLoader,