Home
last modified time | relevance | path

Searched refs:ExprWnd (Results 1 – 8 of 8) sorted by relevance

/dports/devel/kdbg/kdbg-kdbg-3.0.0/kdbg/
H A Dexprwnd.cpp41 VarTree::VarTree(ExprWnd* parent, ExprValue* v) : in VarTree()
319 ExprWnd::ExprWnd(QWidget* parent, const QString& colHeader) : in ExprWnd() function in ExprWnd
339 ExprWnd::~ExprWnd() in ~ExprWnd()
343 QStringList ExprWnd::exprList() const in exprList()
644 void ExprWnd::removeExpr(VarTree* item) in removeExpr()
676 void ExprWnd::clearPendingUpdates() in clearPendingUpdates()
683 VarTree* ExprWnd::nextUpdatePtr() in nextUpdatePtr()
693 VarTree* ExprWnd::nextUpdateType() in nextUpdateType()
703 VarTree* ExprWnd::nextUpdateStruct() in nextUpdateStruct()
763 bool ExprWnd::isEditing() const in isEditing()
[all …]
H A Ddebugger.h17 class ExprWnd; variable
41 ExprWnd* localVars,
42 ExprWnd* watchVars,
398 void evalInitialStructExpression(VarTree* var, ExprWnd* wnd, bool immediate);
399 void evalStructExpression(VarTree* var, ExprWnd* wnd, bool immediate);
400 void dereferencePointer(ExprWnd* wnd, VarTree* var, bool immediate);
401 void determineType(ExprWnd* wnd, VarTree* var);
568 ExprWnd& m_localVariables;
569 ExprWnd& m_watchVariables;
H A Dexprwnd.h18 class ExprWnd; variable
40 VarTree(ExprWnd* parent, ExprValue* v);
105 ValueEdit(ExprWnd* parent);
122 class ExprWnd : public QTreeWidget
126 ExprWnd(QWidget* parent, const QString& colHeader);
127 ~ExprWnd();
H A Dwatchwindow.h22 ExprWnd* watchVariables() { return &m_watchVariables; } in watchVariables()
31 ExprWnd m_watchVariables;
H A Ddbgmainwnd.h24 class ExprWnd; variable
72 ExprWnd* m_localVariables;
H A Ddebugger.cpp60 ExprWnd* localVars, in KDebugger()
61 ExprWnd* watchVars, in KDebugger()
1582 ExprWnd* wnd; in evalExpressions()
1631 void KDebugger::dereferencePointer(ExprWnd* wnd, VarTree* exprItem, in dereferencePointer()
1649 void KDebugger::determineType(ExprWnd* wnd, VarTree* exprItem) in determineType()
1776 void KDebugger::evalInitialStructExpression(VarTree* var, ExprWnd* wnd, bool immediate) in evalInitialStructExpression()
1799 void KDebugger::evalStructExpression(VarTree* var, ExprWnd* wnd, bool immediate) in evalStructExpression()
1869 ExprWnd* wnd = static_cast<ExprWnd*>(item->treeWidget()); in slotExpanding()
2096 v = ExprWnd::ptrMemberByName(v, expr); in slotValuePopup()
2226 ExprWnd* wnd = static_cast<ExprWnd*>(expr->treeWidget()); in slotValueEdited()
H A Ddbgdriver.h19 class ExprWnd; variable
150 ExprWnd* m_exprWnd;
H A Ddbgmainwnd.cpp83 m_localVariables = new ExprWnd(dw2, i18n("Variable")); in DebuggerMainWnd()
1111 ExprWnd* wnd; in slotEditValue()