Searched refs:tool (Results 1 - 25 of 150) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/testsuite/lib/
H A Dnsswitch-config.exp5 global tool
7 if { [file exists "deja-$tool.tcl"] } {
8 source "deja-$tool.tcl"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dbuttonbar.cpp82 // the tool position (for controls)
161 // wxButtonToolBar tool-related methods
187 wxButtonToolBarTool *tool = (wxButtonToolBarTool*) node->GetData(); local
188 wxRect rectTool = GetToolRect(tool);
197 return tool->IsSeparator() ? NULL : tool;
225 wxToolBarToolBase *tool = FindById(id); local
227 wxCHECK_RET( tool, _T("SetToolShortHelp: no such tool") );
230 tool
285 const wxButtonToolBarTool *tool = (wxButtonToolBarTool *)toolBase; local
377 wxButtonToolBarTool *tool = (wxButtonToolBarTool *) node->GetData(); local
472 wxButtonToolBarTool* tool = (wxButtonToolBarTool*) FindById(event.GetId()); local
504 wxButtonToolBarTool *tool = (wxButtonToolBarTool*) node->GetData(); local
544 wxButtonToolBarTool* tool = (wxButtonToolBarTool*) FindToolForPosition(event.GetX(), event.GetY()); local
[all...]
H A Dtoolbkg.cpp184 // Assume tool ids start from 1
185 wxToolBarToolBase* tool = GetToolBar()->FindById(n + 1); local
186 if (tool)
188 tool->SetLabel(strText);
197 wxToolBarToolBase* tool = GetToolBar()->FindById(n + 1); local
198 if (tool)
199 return tool->GetLabel();
217 wxToolBarToolBase* tool = GetToolBar()->FindById(n + 1);
218 if (tool)
220 // Find the image list index for this tool
307 tool = tbar->FindToolForPosition(tbarPt.x, tbarPt.y); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Dtbargtk.cpp164 wxToolBarTool *tool )
169 wxToolBar *tbar = (wxToolBar *)tool->GetToolBar();
174 if (!tool->IsEnabled()) return;
176 if (tool->CanBeToggled())
178 if (tool->IsRadio() &&
180 tool->IsToggled())
186 tool->Toggle();
188 tool->SetImage(tool->GetBitmap());
190 if ( tool
395 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, toolBase); local
516 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, toolBase); local
549 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, toolBase); local
559 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, toolBase); local
615 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, FindById(id)); local
627 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, FindById(id)); local
639 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, FindById(id)); local
682 wxToolBarTool *tool = (wxToolBarTool *)node->GetData(); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/univ/
H A Dtoolbar.cpp123 // is this tool pressed, even temporarily? (this is different from being
131 // press the tool temporarily by inverting its toggle state
139 // the tool position (for controls)
146 // true if the tool is pressed
149 // true if the tool is under the mouse
216 // wxToolBar tool-related methods
242 wxToolBarToolBase *tool = node->GetData(); local
243 wxRect rectTool = GetToolRect(tool);
252 return tool->IsSeparator() ? NULL : tool;
261 wxToolBarToolBase *tool = FindById(id); local
291 DoEnableTool(wxToolBarToolBase *tool, bool enable) argument
306 DoToggleTool(wxToolBarToolBase *tool, bool WXUNUSED(toggle)) argument
313 DoSetToggle(wxToolBarToolBase *tool, bool WXUNUSED(toggle)) argument
342 const wxToolBarTool *tool = (wxToolBarTool *)toolBase; local
459 wxToolBarTool *tool = (wxToolBarTool *) node->GetData(); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Dtbargtk.cpp156 wxToolBarTool *tool )
161 wxToolBar *tbar = (wxToolBar *)tool->GetToolBar();
166 if (!tool->IsEnabled()) return;
168 if (tool->CanBeToggled())
170 tool->Toggle();
172 tool->SetPixmap(tool->GetBitmap());
174 if ( tool->IsRadio() && !tool->IsToggled() )
181 if( !tbar->OnLeftClick( tool
347 wxToolBarTool *tool = (wxToolBarTool *)toolBase; local
486 wxToolBarTool *tool = (wxToolBarTool *)toolBase; local
509 wxToolBarTool *tool = (wxToolBarTool *)toolBase; local
519 wxToolBarTool *tool = (wxToolBarTool *)toolBase; local
575 wxToolBarTool *tool = (wxToolBarTool *)FindById(id); local
615 wxToolBarTool *tool = (wxToolBarTool *)node->GetData(); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/debug/
H A Ddovalns2 valgrind --tool=memcheck --error-limit=no --gen-suppressions=all --leak-check=full --show-reachable=yes --num-callers=32 $*
H A Ddoval4 valgrind --tool=memcheck --error-limit=no --suppressions=$PROGDIR/debug/valgrind-suppress --gen-suppressions=all --leak-check=full --show-reachable=yes --num-callers=32 $PROGDIR/openvpn "$@"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dtbarbase.cpp71 wxASSERT_MSG( CanBeToggled(), _T("can't toggle this tool") );
164 wxToolBarToolBase *tool = CreateTool(id, label, bitmap, bmpDisabled, kind, local
167 if ( !InsertTool(pos, tool) )
169 delete tool;
174 return tool;
177 wxToolBarToolBase *wxToolBarBase::AddTool(wxToolBarToolBase *tool) argument
179 return InsertTool(GetToolsCount(), tool);
183 wxToolBarBase::InsertTool(size_t pos, wxToolBarToolBase *tool) argument
188 if ( !tool || !DoInsertTool(pos, tool) )
214 wxToolBarToolBase *tool = CreateTool(control); local
232 const wxToolBarToolBase * const tool = node->GetData(); local
262 wxToolBarToolBase *tool = CreateTool(wxID_SEPARATOR, local
299 wxToolBarToolBase *tool = node->GetData(); local
353 wxToolBarToolBase *tool = (wxToolBarToolBase *)NULL; local
372 UnToggleRadioGroup(wxToolBarToolBase *tool) argument
447 wxToolBarToolBase *tool = FindById(id); local
459 wxToolBarToolBase *tool = FindById(id); local
472 wxToolBarToolBase *tool = FindById(id); local
484 wxToolBarToolBase *tool = FindById(id); local
493 wxToolBarToolBase *tool = FindById(id); local
502 wxToolBarToolBase *tool = FindById(id); local
509 wxToolBarToolBase *tool = FindById(id); local
534 wxToolBarToolBase *tool = FindById(id); local
542 wxToolBarToolBase *tool = FindById(id); local
550 wxToolBarToolBase *tool = FindById(id); local
558 wxToolBarToolBase *tool = FindById(id); local
628 wxToolBarToolBase* tool = id == wxID_ANY ? (wxToolBarToolBase*)NULL : FindById(id); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/deprecated/
H A Dtbarsmpl.cpp105 // tool bar tools creation
187 wxToolBarToolSimple *tool = (wxToolBarToolSimple *)toolBase; variable
189 wxCHECK_MSG( !tool->IsControl(), false,
192 tool->m_x = m_xPos;
193 if ( tool->m_x == wxDefaultCoord )
194 tool->m_x = m_xMargin;
196 tool->m_y = m_yPos;
197 if ( tool->m_y == wxDefaultCoord )
198 tool->m_y = m_yMargin;
200 tool
280 wxToolBarToolSimple *tool = (wxToolBarToolSimple *)node->GetData(); local
294 wxToolBarToolSimple *tool = (wxToolBarToolSimple *)node->GetData(); local
387 wxToolBarToolBase *tool = node->GetData(); local
412 wxToolBarToolSimple *tool = (wxToolBarToolSimple *)FindToolForPosition(x, y); local
497 DrawTool(wxToolBarToolBase *tool) argument
505 wxToolBarToolSimple *tool = (wxToolBarToolSimple *)toolBase; local
653 wxToolBarToolSimple *tool = (wxToolBarToolSimple *)node->GetData(); local
671 DoEnableTool(wxToolBarToolBase *tool, bool WXUNUSED(enable)) argument
677 DoToggleTool(wxToolBarToolBase *tool, bool WXUNUSED(toggle)) argument
694 wxToolBarToolBase *tool = FindById(id); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dtoolbar.cpp313 // Find the maximum tool width and height
317 wxToolBarTool *tool = (wxToolBarTool *)node->GetData(); local
318 wxSize sz = tool->GetSize() ;
331 wxToolBarTool *tool = (wxToolBarTool *)node->GetData(); local
332 wxSize cursize = tool->GetSize() ;
340 tool->SetPosition( wxPoint( x , y ) ) ;
399 wxToolBarTool* tool = (wxToolBarTool*) node->GetData() ; local
400 if ( tool->IsButton() )
402 if( (WXWidget) tool->GetControlHandle() == control )
404 if ( tool
437 wxToolBarTool *tool = (wxToolBarTool *)node->GetData() ; local
452 wxToolBarToolBase* tool = FindToolForPosition( pt.x , pt.y ) ; local
559 wxToolBarTool* tool = (wxToolBarTool*) node->GetData() ; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/wince/
H A Dtbarwce.cpp268 bool wxToolMenuBar::DoInsertTool(size_t WXUNUSED(pos), wxToolBarToolBase *tool)
272 tool->Attach(this);
277 bool wxToolMenuBar::DoDeleteTool(size_t pos, wxToolBarToolBase *tool) argument
294 if ( tool2 == tool )
320 if ( tool->IsControl() )
322 nButtonsToDelete = ((wxToolMenuBarTool *)tool)->GetSeparatorsCount();
339 tool->Detach();
382 wxToolMenuBarTool *tool = (wxToolMenuBarTool*) node->GetData(); local
391 switch ( tool->GetStyle() )
394 button.idCommand = tool
495 wxToolBarToolBase *tool = FindById((int)id); variable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/generic/
H A Dbuttonbar.h61 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
62 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
64 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
65 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
66 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
83 // get the bounding rect for the given tool
84 wxRect GetToolRect(wxToolBarToolBase *tool) const;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/qt/
H A Dmy-valgrind.sh5 valgrind --tool=memcheck --leak-check=full --leak-resolution=high --num-callers=32 --log-file=x-valgrind --show-reachable=yes ./transmission-qt
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/motif/
H A Dtoolbar.cpp283 wxToolBarTool *tool = (wxToolBarTool *)node->GetData(); local
285 switch ( tool->GetStyle() )
289 wxControl* control = tool->GetControl();
317 if ( tool->CanBeToggled() && !tool->GetButtonWidget() )
342 else if( !tool->GetButtonWidget() )
357 if( !tool->GetButtonWidget() )
362 tool->SetWidget(button);
366 button = (Widget)tool->GetButtonWidget();
376 bmp = tool
586 wxToolBarTool *tool = (wxToolBarTool *)toolBase; local
597 wxToolBarTool *tool = (wxToolBarTool *)toolBase; local
649 wxToolBarTool *tool = (wxToolBarTool *)node->GetData(); local
666 wxToolBarToolBase *tool = toolBar->FindToolByWidget((WXWidget) w); local
690 wxToolBarToolBase *tool = toolBar->FindToolByWidget((WXWidget) w); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dtoolbar.cpp60 // We have a dual implementation for each tool, ControlRef and HIToolbarItemRef
125 // the embedded control is not under the responsibility of the tool, it gets disposed of in the
139 wxASSERT_MSG( count == 1 , wxT("Reference Count of native tool was not 1 in wxToolBarTool destructor") );
670 wxASSERT_MSG( count >=1 , wxT("Reference Count of native tool was illegal before removal") );
1130 // find the maximum tool width and height
1131 wxToolBarTool *tool; local
1135 tool = (wxToolBarTool *) node->GetData();
1136 if ( tool != NULL )
1138 wxSize sz = tool->GetSize();
1167 tool
1414 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, FindById(id)); local
1428 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, FindById(id)); local
1441 wxToolBarTool *tool; local
1461 wxToolBarToolBase *tool = FindToolForPosition( pt.x, pt.y ); local
1476 wxToolBarTool *tool = (wxToolBarTool *)t; local
1483 wxToolBarTool *tool = wx_static_cast( wxToolBarTool*, toolBase ); variable
1568 GetEventTypeCount(toolBarEventList), toolBarEventList, tool, NULL ); variable
1662 wxToolBarTool* tool = wx_static_cast( wxToolBarTool*, toolbase ); variable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/univ/
H A Dtoolbar.h27 #define wxACTION_TOOLBAR_ENTER wxT("enter") // highlight the tool
28 #define wxACTION_TOOLBAR_LEAVE wxT("leave") // unhighlight the tool
86 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
87 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
89 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
90 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
91 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
109 // get the bounding rect for the given tool
110 wxRect GetToolRect(wxToolBarToolBase *tool) const;
112 // redraw the given tool
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk/
H A Dtbargtk.h83 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
84 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
86 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
87 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
88 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk1/
H A Dtbargtk.h75 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
76 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
78 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
79 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
80 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/
H A Dtoolbar.h69 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
70 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
72 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
73 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
74 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/motif/
H A Dtoolbar.h49 // find tool by widget
57 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
58 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
60 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
61 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
62 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/palmos/
H A Dtoolbar.h71 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
72 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
74 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
75 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
76 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);
100 // the tool the cursor is in
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dtbar95.cpp108 tool
455 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos), wxToolBarToolBase *tool)
459 tool->Attach(this);
465 bool wxToolBar::DoDeleteTool(size_t pos, wxToolBarToolBase *tool) argument
478 if ( tool2 == tool )
502 if ( tool->IsControl() )
504 nButtonsToDelete = ((wxToolBarTool *)tool)->GetSeparatorsCount();
506 tool->GetControl()->Destroy();
521 tool->Detach();
558 wxToolBarToolBase *tool local
708 wxToolBarToolBase *tool = node->GetData(); local
881 wxToolBarToolBase *tool = node->GetData(); local
949 wxToolBarToolBase *tool = nodePrev->GetData(); local
1003 wxToolBarToolBase *tool = node->GetData(); local
1147 wxToolBarToolBase *tool = FindById((int)id); variable
1165 UnToggleRadioGroup(tool); variable
1233 wxToolBarToolBase *tool = FindById(id); local
1401 DoEnableTool(wxToolBarToolBase *tool, bool enable) argument
1407 DoToggleTool(wxToolBarToolBase *tool, bool toggle) argument
1422 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, FindById(id)); local
1434 wxToolBarTool* tool = wx_static_cast(wxToolBarTool*, FindById(id)); local
1482 wxToolBarToolBase *tool = FindToolForPosition(x, y); local
1660 wxToolBarToolBase *tool = node->GetData(); local
1749 wxToolBarToolBase* tool = FindToolForPosition( x, y ); variable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/palmos/
H A Dtoolbar.cpp73 tool
197 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos), wxToolBarToolBase *tool)
202 bool wxToolBar::DoDeleteTool(size_t pos, wxToolBarToolBase *tool) argument
247 // tool state
250 void wxToolBar::DoEnableTool(wxToolBarToolBase *tool, bool enable) argument
254 void wxToolBar::DoToggleTool(wxToolBarToolBase *tool, bool toggle) argument
258 void wxToolBar::DoSetToggle(wxToolBarToolBase *WXUNUSED(tool), bool WXUNUSED(toggle))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/cocoa/
H A Dtoolbar.h96 virtual bool DoInsertTool(size_t pos, wxToolBarToolBase *tool);
97 virtual bool DoDeleteTool(size_t pos, wxToolBarToolBase *tool);
99 virtual void DoEnableTool(wxToolBarToolBase *tool, bool enable);
100 virtual void DoToggleTool(wxToolBarToolBase *tool, bool toggle);
101 virtual void DoSetToggle(wxToolBarToolBase *tool, bool toggle);

Completed in 224 milliseconds

123456