Home
last modified time | relevance | path

Searched refs:xdepth (Results 1 – 10 of 10) sorted by relevance

/dports/print/py-reportlab/reportlab-3.5.68/src/reportlab/graphics/charts/
H A Dutils3d.py19 def _draw_3d_bar(G, x1, x2, y0, yhigh, xdepth, ydepth, argument
31 if xdepth or ydepth:
33 _add_3d_bar( x2, x2, y0, yhigh, xdepth, ydepth, fillColor=fillColorShaded) #side
35 _add_3d_bar(x1, x2, usd, usd, xdepth, ydepth, fillColor=fillColorShadedTop) #top
40 if xdepth or ydepth:
61 xdepth = zwidth*theta_x
63 depth_slope = xdepth==0 and 1e150 or -ydepth/float(xdepth)
95 P = Polygon(_ystrip_poly(x_0, x_1, y_0, y_1, xdepth, ydepth),
/dports/graphics/netpbm/netpbm-10.91.01/converter/pgm/
H A Dfstopgm.c77 int xrows, xcols, xdepth; in main() local
88 xdepth = 0; in main()
125 &xcols, &xrows, &xdepth ) == 3) { in main()
126 if (xdepth != 8) in main()
/dports/biology/ncbi-toolkit/ncbi/desktop/
H A Dgtrdraw.c160 Int4 numval, nwidth, xwidth, ndepth, xdepth; in AddTreeSentinelToPicture() local
224 xdepth = GetMaximumTreeYcoord (ptrNode); in AddTreeSentinelToPicture()
226 xdepth += 16; in AddTreeSentinelToPicture()
227 gtp->snt = AddSntRectangle (seg, nwidth, ndepth, xwidth, xdepth, in AddTreeSentinelToPicture()
/dports/graphics/gdchart/gdchart0.11.5dev/
H A Dgdchart.c56 int xdepth, in draw_3d_line() argument
63 float depth_slope = xdepth==0? FLT_MAX: (float)ydepth/(float)xdepth; in draw_3d_line()
99 x-1+xdepth, ypts[i].y2-ydepth, in draw_3d_line()
119 int xdepth, in draw_3d_area() argument
128 if( xdepth || ydepth ) in draw_3d_area()
131 float depth_slope = xdepth==0? FLT_MAX: (float)ydepth/(float)xdepth; in draw_3d_area()
139 gdImageLine( im, x1+xdepth, y0-ydepth, x2+xdepth, y0-ydepth, clrshd ); in draw_3d_area()
152 y_intercept+xdepth, y0-ydepth, clrshd ); /* edging */ in draw_3d_area()
198 int xdepth, in draw_3d_bar() argument
213 if( xdepth || ydepth ) in draw_3d_bar()
[all …]
/dports/databases/sqlite3/sqlite-src-3350500/tool/
H A Dstack_usage.tcl31 if {[regexp {sub +\$(0x[0-9a-z]+),%[er]sp} $line all xdepth]} {
33 scan $xdepth %x depth
/dports/databases/sqlcipher/sqlcipher-3.4.2/tool/
H A Dstack_usage.tcl31 if {[regexp {sub +\$(0x[0-9a-z]+),%[er]sp} $line all xdepth]} {
33 scan $xdepth %x depth
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/tool/
H A Dstack_usage.tcl31 if {[regexp {sub +\$(0x[0-9a-z]+),%[er]sp} $line all xdepth]} {
33 scan $xdepth %x depth
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/tool/
H A Dstack_usage.tcl31 if {[regexp {sub +\$(0x[0-9a-z]+),%[er]sp} $line all xdepth]} {
33 scan $xdepth %x depth
/dports/www/elinks/elinks-0.11.7/src/bfu/
H A Dlistbox.c593 int xdepth = widget_data->box.x + box->sel->depth * 5; in mouse_listbox() local
596 if (x >= xdepth && x <= xdepth + 2) in mouse_listbox()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/qt3support/itemviews/
H A Dq3listview.cpp2928 … int xdepth = qMin(treeStepSize() * (current.i->depth() + (rootIsDecorated() ? 1 : 0)) in drawContentsOffset() local
2930 xdepth += d->h->cellPos(cell); in drawContentsOffset()
2934 r2.setLeft(xdepth - 1); in drawContentsOffset()
4266 int xdepth = treeStepSize() * (i->depth() + (rootIsDecorated() ? 1 : 0)) in contentsMousePressEventEx() local
4268 xdepth += d->h->sectionPos(d->h->mapToSection(0)); in contentsMousePressEventEx()
4269 activatedP.rx() -= xdepth; in contentsMousePressEventEx()
6642 … int xdepth = lv->treeStepSize() * (depth() + (lv->rootIsDecorated() ? 1 : 0)) + lv->itemMargin(); in paintFocus() local
6644 xdepth += p; in paintFocus()
6645 intersect = r.intersects(QRect(p, r.y(), xdepth - p + 1, r.height())); in paintFocus()