Home
last modified time | relevance | path

Searched refs:toshow (Results 1 – 25 of 47) sorted by relevance

12

/dports/net-p2p/amule/aMule-2.3.3/src/
H A DSearchListCtrl.cpp137 void CSearchListCtrl::AddResult(CSearchFile* toshow) in AddResult() argument
142 CSearchFile* parent = toshow->GetParent(); in AddResult()
149 } else if (!IsFiltered(toshow)) { in AddResult()
150 if (toshow->HasChildren() && toshow->ShowChildren()) { in AddResult()
163 m_filteredOut.push_back(toshow); in AddResult()
167 m_filteredOut.push_back(toshow); in AddResult()
196 wxASSERT(before->GetParent() != toshow); in AddResult()
219 if (toshow->GetCompleteSourceCount()) { in AddResult()
222 if (toshow->GetClientsCount()) { in AddResult()
226 if (toshow->GetKadPublishInfo() == 0) { in AddResult()
[all …]
H A DSearchListCtrl.h84 void AddResult(CSearchFile* toshow);
89 void RemoveResult(CSearchFile* toshow);
153 static wxString DetermineStatusPrintable(CSearchFile *toshow);
/dports/net-p2p/amule-devel/aMule-SVN-r11065/src/
H A DSearchListCtrl.cpp137 void CSearchListCtrl::AddResult(CSearchFile* toshow) in AddResult() argument
142 CSearchFile* parent = toshow->GetParent(); in AddResult()
149 } else if (!IsFiltered(toshow)) { in AddResult()
150 if (toshow->HasChildren() && toshow->ShowChildren()) { in AddResult()
163 m_filteredOut.push_back(toshow); in AddResult()
167 m_filteredOut.push_back(toshow); in AddResult()
196 wxASSERT(before->GetParent() != toshow); in AddResult()
219 if (toshow->GetCompleteSourceCount()) { in AddResult()
222 if (toshow->GetClientsCount()) { in AddResult()
226 if (toshow->GetKadPublishInfo() == 0) { in AddResult()
[all …]
H A DSearchListCtrl.h84 void AddResult(CSearchFile* toshow);
89 void RemoveResult(CSearchFile* toshow);
153 static wxString DetermineStatusPrintable(CSearchFile *toshow);
/dports/math/vtk9/VTK-9.1.0/IO/GeoJSON/Testing/Python/
H A DTestGeoJSONWriter.py30 toshow=gf variable
32 toshow = ef variable
34 toshow = af
37 gw.SetInputConnection(toshow.GetOutputPort())
/dports/math/vtk8/VTK-8.2.0/IO/GeoJSON/Testing/Python/
H A DTestGeoJSONWriter.py30 toshow=gf variable
32 toshow = ef variable
34 toshow = af
37 gw.SetInputConnection(toshow.GetOutputPort())
/dports/math/vtk6/VTK-6.2.0/IO/GeoJSON/Testing/Python/
H A DTestGeoJSONWriter.py29 toshow=gf variable
31 toshow = ef variable
33 toshow = af
36 gw.SetInputConnection(toshow.GetOutputPort())
/dports/science/py-veusz/veusz-veusz-3.3.1/veusz/dataimport/
H A Ddialog_hdf5.py319 toshow = node = None
324 toshow = 'twod'
327 toshow = 'oned'
330 toshow = 'text'
334 self.oldselection = (node, toshow)
341 if name == toshow:
H A Ddialog_fits.py251 toshow = node = None
256 toshow = 'twod'
260 self.oldselection = (node, toshow)
265 if name == toshow:
/dports/games/nazghul/nazghul-0.7.1/worlds/haxima-1.002/
H A Dgamestart-mech.scm65 (define (gamestart-field-circle-elem xp yp toshow tocheck)
68 (show (not (< (* toshow 8) (* tocheck count))))
79 (ntoshow (if show (- toshow 1) toshow))
/dports/devel/libnaji/libnaji-0.6.4.src/
H A Dnajicat.c234 void onlycat(char *namein, char *toshow) in onlycat() argument
244 l = strlen(toshow); in onlycat()
254 if (a == toshow[i]) in onlycat()
H A Dnajiconv.c140 void onlychar(char *namein, char *nameout, char *toshow) in onlychar() argument
151 l = strlen(toshow); in onlychar()
161 if (a == toshow[i]) in onlychar()
/dports/devel/notcurses/notcurses-3.0.1/src/fetch/
H A Dmain.c473 int toshow = psize - y * showpl; in drawpalette() local
474 if(toshow > showpl){ in drawpalette()
475 toshow = showpl; in drawpalette()
482 for(unsigned x = 0 ; x < (dimx - toshow) / 2 ; ++x){ in drawpalette()
488 for(unsigned x = (dimx - toshow) / 2 ; x < dimx / 2 + 32 ; ++x){ in drawpalette()
489 const int truex = x - (dimx - toshow) / 2; in drawpalette()
/dports/chinese/fcitx/fcitx-4.2.9.7/src/lib/fcitx/
H A Dui.c996 boolean toshow = false; in FcitxUIUpdateInputWindowReal() local
1000 toshow = true; in FcitxUIUpdateInputWindowReal()
1003 toshow = true; in FcitxUIUpdateInputWindowReal()
1008 toshow = true; in FcitxUIUpdateInputWindowReal()
1012 toshow = true; in FcitxUIUpdateInputWindowReal()
1014 if (!toshow) { in FcitxUIUpdateInputWindowReal()
/dports/math/kig/kig-21.12.3/kig/
H A Dkig_part.cpp1073 bool toshow = !mdocument->grid(); in toggleGrid() local
1074 aToggleGrid->setChecked( toshow ); in toggleGrid()
1075 mdocument->setGrid( toshow ); in toggleGrid()
1082 bool toshow = !mdocument->axes(); in toggleAxes() local
1083 aToggleAxes->setChecked( toshow ); in toggleAxes()
1084 mdocument->setAxes( toshow ); in toggleAxes()
/dports/games/tuxtype/tuxtype-1.8.3/src/
H A Dscripting.c1283 int shown, toshow; // used to wrap text in run_script() local
1312 for (toshow = strlen(&curItem->data[shown]); !ok; toshow--) in run_script()
1314 if (toshow + 1 > FNLEN) in run_script()
1317 tmp[toshow] = 0; in run_script()
1330 shown += toshow + 1; in run_script()
/dports/biology/jalview/jalview/src/jalview/gui/
H A DChimeraViewFrame.java365 List<String> toshow = new ArrayList<>(); in showSelectedChains() local
373 toshow.add(item.getText()); in showSelectedChains()
377 jmb.showChains(toshow); in showSelectedChains()
H A DAppJmol.java265 Vector<String> toshow = new Vector<>(); in showSelectedChains() local
273 toshow.addElement(item.getText()); in showSelectedChains()
277 jmb.centerViewer(toshow); in showSelectedChains()
/dports/biology/jalview/jalview/src/jalview/appletgui/
H A DAppletJmol.java397 Vector<String> toshow = new Vector<>(); in centerViewer() local
405 toshow.addElement(item.getLabel()); in centerViewer()
409 jmb.centerViewer(toshow); in centerViewer()
/dports/x11-fm/caja/caja-1.26.0/libcaja-private/
H A Dcaja-progress-info.c606 gboolean toshow; in update_status_icon_and_window() local
617 toshow = (n_progress_ops > 0); in update_status_icon_and_window()
619 if (!toshow) in update_status_icon_and_window()
643 else if (toshow && !window_shown) in update_status_icon_and_window()
/dports/devel/py-hg-evolve/hg-evolve-10.4.1/hgext3rd/evolve/
H A Dobshistory.py557 toshow = []
568 toshow.append(unfi[ctxnode])
571 toshow.append(missingchangectx(unfi, ctxnode))
587 for ctx in toshow:
/dports/www/py-tvdb_api/tvdb_api-3.1.0/
H A Dtvdb_api.py213 toshow = allSeries[:limit]
215 toshow = allSeries
218 for i, cshow in enumerate(toshow):
/dports/net-p2p/eiskaltdcpp-cli/eiskaltdcpp-2.2.10/eiskaltdcpp-qt/src/
H A DHubFrame.cpp489 QString toshow = link; in parseForLinks() local
497 toshow = QUrl::fromEncoded(link.toUtf8()).toString(); in parseForLinks()
538 toshow = keywords.toHtmlEscaped() + " (" + hub.toHtmlEscaped() + ")"; in parseForLinks()
540 toshow = keywords.toHtmlEscaped(); in parseForLinks()
542 toshow = Qt::escape(keywords) + " (" + Qt::escape(hub) + ")"; in parseForLinks()
544 toshow = Qt::escape(keywords); in parseForLinks()
552 toshow = QString("%1 (%2)").arg(name).arg(WulforUtil::formatBytes(size)); in parseForLinks()
557 toshow.prepend("http://"); in parseForLinks()
564 …html_link = "<a href=\"" + link + "\" title=\"" + toshow + "\" style=\"cursor: hand\">" + toshow +… in parseForLinks()
746 QString toshow = tr("%1 (%2)").arg(chunk).arg(WulforUtil::formatBytes(size)); in parseForLinks() local
[all …]
/dports/net-p2p/eiskaltdcpp-lib/eiskaltdcpp-2.2.10/eiskaltdcpp-qt/src/
H A DHubFrame.cpp489 QString toshow = link; in parseForLinks() local
497 toshow = QUrl::fromEncoded(link.toUtf8()).toString(); in parseForLinks()
538 toshow = keywords.toHtmlEscaped() + " (" + hub.toHtmlEscaped() + ")"; in parseForLinks()
540 toshow = keywords.toHtmlEscaped(); in parseForLinks()
542 toshow = Qt::escape(keywords) + " (" + Qt::escape(hub) + ")"; in parseForLinks()
544 toshow = Qt::escape(keywords); in parseForLinks()
552 toshow = QString("%1 (%2)").arg(name).arg(WulforUtil::formatBytes(size)); in parseForLinks()
557 toshow.prepend("http://"); in parseForLinks()
564 …html_link = "<a href=\"" + link + "\" title=\"" + toshow + "\" style=\"cursor: hand\">" + toshow +… in parseForLinks()
746 QString toshow = tr("%1 (%2)").arg(chunk).arg(WulforUtil::formatBytes(size)); in parseForLinks() local
[all …]
/dports/net-p2p/eiskaltdcpp-gtk/eiskaltdcpp-2.2.10/eiskaltdcpp-qt/src/
H A DHubFrame.cpp489 QString toshow = link; in parseForLinks() local
497 toshow = QUrl::fromEncoded(link.toUtf8()).toString(); in parseForLinks()
538 toshow = keywords.toHtmlEscaped() + " (" + hub.toHtmlEscaped() + ")"; in parseForLinks()
540 toshow = keywords.toHtmlEscaped(); in parseForLinks()
542 toshow = Qt::escape(keywords) + " (" + Qt::escape(hub) + ")"; in parseForLinks()
544 toshow = Qt::escape(keywords); in parseForLinks()
552 toshow = QString("%1 (%2)").arg(name).arg(WulforUtil::formatBytes(size)); in parseForLinks()
557 toshow.prepend("http://"); in parseForLinks()
564 …html_link = "<a href=\"" + link + "\" title=\"" + toshow + "\" style=\"cursor: hand\">" + toshow +… in parseForLinks()
746 QString toshow = tr("%1 (%2)").arg(chunk).arg(WulforUtil::formatBytes(size)); in parseForLinks() local
[all …]

12