Searched refs:endX (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/tkpiechart/
H A Dslice.tcl202 set endX [expr {$xRadius * cos($end * $PI / 180)}]
218 $startX $startY $endX $endY\
219 $endX $endBottom $startX $startBottom
223 $endX $endY $endX $endBottom
246 -$xRadius 0 $endX $endY $endX $endBottom -$xRadius $height
250 $endX $endY $endX $endBottom
286 -$xRadius 0 $endX
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/bmp/
H A DBMPImageReader.cpp599 const int endX = std::min(m_coord.x() + count, m_parent->size().width()); local
607 fillRGBA(endX, m_data->data()[m_decodedOffset + 3], m_data->data()[m_decodedOffset + 2], code, 0xff);
620 for (int which = 0; m_coord.x() < endX; ) {
640 const int endX = m_coord.x() + numPixels; local
641 if (endX > m_parent->size().width())
668 for (size_t pixel = 0; (pixel < pixelsPerByte) && (m_coord.x() < endX); ++pixel) {
691 while (m_coord.x() < endX) {
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFEMorphology.cpp135 const int endX = std::min(x + radiusX, width - 1); local
136 unsigned char columnExtrema = srcPixelArray->item(extremaStartY * effectWidth + endX * 4 + clrChannel);
138 unsigned char pixel = srcPixelArray->item(i * effectWidth + endX * 4 + clrChannel);
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/
H A DImageDecoder.h87 // Copies the pixel data at [(startX, startY), (endX, startY)) to the
90 void copyRowNTimes(int startX, int endX, int startY, int endY) argument
93 ASSERT(endX <= width());
96 const int rowBytes = (endX - startX) * sizeof(PixelData);
/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DShape.cpp208 int endX = alphaAboveThreshold ? x + 1 : x; local
209 intervals->intervalAt(y + imageRect.y()).unite(IntShapeInterval(startX + imageRect.x(), endX + imageRect.x()));
/macosx-10.10/WebCore-7600.1.25/Modules/mediacontrols/
H A DmediaControlsiOS.js244 var endX = thumbWidth / 2 + (width - thumbWidth) * this.video.currentTime / this.video.duration;
248 context.fillRect(0, 0, endX, height);
H A DmediaControlsApple.js966 var endX = width * endTime / duration;
967 context.fillRect(startX, 0, endX - startX, height);
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkGrid.c507 int endX, endY; /* last column/row in the layout */
548 endX = MAX(gridPtr->columnEnd, gridPtr->columnMax);
551 if ((endX == 0) || (endY == 0)) {
559 column2 = endX;
575 if (column > 0 && column < endX) {
578 x = gridPtr->columnPtr[endX-1].offset;
589 } else if (column2 >= endX) {
590 width = gridPtr->columnPtr[endX-1].offset - x;
768 int endX, endY; /* End of grid. */
804 endX
504 int endX, endY; /* last column/row in the layout */ local
762 int endX, endY; /* End of grid. */ local
[all...]
H A DtkFont.c1917 int startX, endX;
1924 &endX);
1927 y + fontPtr->underlinePos, (unsigned int) (endX - startX),
1897 int startX, endX; local
H A DtkTextDisp.c7626 int endX;
7629 chunkPtr->x, x, 0, &endX); /* CHAR OFFSET */
7573 int endX; local
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkGrid.c428 int endX, endY; /* last column/row in the layout */
469 endX = MAX(gridPtr->columnEnd, gridPtr->columnMax);
472 if ((endX == 0) || (endY == 0)) {
479 column2 = endX;
491 if (column > 0 && column < endX) {
494 x = gridPtr->columnPtr[endX-1].offset;
505 } else if (column2 >= endX) {
506 width = gridPtr->columnPtr[endX-1].offset - x;
682 int endX, endY; /* end of grid */
718 endX
426 int endX, endY; /* last column/row in the layout */ local
677 int endX, endY; /* end of grid */ local
[all...]
H A DtkFont.c1788 int startX, endX;
1793 Tk_MeasureChars(tkfont, string, lastByte, -1, 0, &endX);
1796 y + fontPtr->underlinePos, (unsigned int) (endX - startX),
1769 int startX, endX; local
H A DtkTextDisp.c4811 int endX;
4814 chunkPtr->numBytes - 1, chunkPtr->x, x, 0, &endX);
4777 int endX; local
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DPlatformPathWinCE.cpp719 float startX, startY, endX, endY; local
725 getEllipsePointByAngle(ear, a, b, endX, endY);
728 transformArcPoint(endX, endY, p);
733 PlatformPathElement::ArcTo data = { { endX, endY }, { p.x(), p.y() }, { a, b }, !anticlockwise };
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSGradientValue.cpp635 float endX = c / (slope - perpendicularSlope); local
636 float endY = perpendicularSlope * endX + c;
640 secondPoint.set(halfWidth + endX, halfHeight - endY);
642 firstPoint.set(halfWidth - endX, halfHeight + endY);
H A DCSSParser.cpp8299 RefPtr<CSSPrimitiveValue> endX, endY;
8308 endX = location;
8319 if (endX)
8321 endX = location;
8332 result->setFirstX(endX.release());

Completed in 211 milliseconds