Searched refs:startY (Results 1 - 25 of 39) sorted by relevance

12

/external/droiddriver/src/io/appium/droiddriver/actions/
H A DSwipeAction.java156 int startY;
163 startY = adjustedbottom;
169 startY = adjustedTop;
175 startY = elementRect.centerY();
181 startY = elementRect.centerY();
190 double yStep = ((double) (endY - startY)) / steps;
193 long downTime = Events.touchDown(injector, startX, startY);
199 Events.touchMove(injector, downTime, startX + (int) (xStep * i), startY + (int) (yStep * i));
/external/replicaisland/tools/
H A DExtractPoints.js78 edge.startY = firstPoint.anchor[1];
83 var normalX = -(edge.endY - edge.startY);
106 var height = edge.endY - edge.startY;
147 edge.startY -= tile.yOffset;
172 edge.startY = tileSizeY - edge.startY;
177 Math.floor(edge.startY) + ":" + Math.floor(edge.endX) + "," +
227 lineArray[y] = Array(offsetX + edge.startX, offsetY + edge.startY);
/external/skia/src/core/
H A DSkMaskFilter.cpp146 int startY = SkMax32(0, r.top() - outerR.top()); local
147 int stopY = startY + r.height();
149 for (int y = startY; y < stopY; ++y) {
159 int startY = outerR.bottom() - r.bottom(); local
160 int stopY = startY + r.height();
162 for (int y = startY; y < stopY; ++y) {
H A DSkGeometry.cpp1141 const SkScalar startY = src.fPts[0].fY; local
1143 if (between(startY, src.fPts[1].fY, endY)) {
1147 if (!between(startY, midY, endY)) {
1149 SkScalar closerY = SkTAbs(midY - startY) < SkTAbs(midY - endY) ? startY : endY;
1152 if (!between(startY, dst[0].fPts[1].fY, dst[0].fPts[2].fY)) {
1155 dst[0].fPts[1].fY = startY;
1163 SkASSERT(between(startY, dst[0].fPts[1].fY, dst[0].fPts[2].fY));
H A DSkLinearBitmapPipeline.cpp124 this->pointListFew(1, Sk4f{span.startX()}, Sk4f{span.startY()});
180 int32_t y = SkScalarTruncToInt(span.startY());
191 int32_t y = SkScalarTruncToInt(span.startY());
258 int32_t y = (int32_t)span.startY();
H A DSkLinearBitmapPipeline_core.h76 SkScalar startY() const { return Y(fStart); } function in class:__anon16963::Span
H A DSkScan_Hairline.cpp122 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6);
124 horiline(ix0, ix1, startY, slope, blitter);
H A DSkLinearBitmapPipeline_sample.h568 && sample_to_filter(span.startY()) == 1.0f) {
/external/replicaisland/src/com/replica/replicaisland/
H A DTiledVertexGrid.java193 final int startY = bottomTile;
195 final int endY = startY + verticalSlop + vertTileCount;
209 for (int tileY = startY; tileY < endY && tileY < mTilesPerColumn; tileY++) {
H A DCollisionSystem.java161 float startY = bottom;
173 startY = top;
180 final int startTileY = Utils.clamp((int)(startY / mTileHeight), 0, mWorld.getHeight() - 1);
559 final float startY = Utils.byteArrayToFloat(mWorkspaceBytes);
572 newSegment.mStartPoint.set(startX, startY);
/external/skia/fuzz/
H A Dfuzz.cpp302 const int startY = (i + 1) * stripeHeight; local
303 const int linesToRead = SkTMin(stripeHeight, height - startY);
305 codec->getScanlines(bitmap.getAddr(0, startY), linesToRead, bitmap.rowBytes());
318 const int startY = i * stripeHeight; local
319 const int linesToRead = SkTMin(stripeHeight, height - startY);
320 codec->getScanlines(bitmap.getAddr(0, startY), linesToRead, bitmap.rowBytes());
/external/skia/src/codec/
H A DSkSampledCodec.cpp214 const int startY = samplingOffsetY + subsetY; local
286 if (!this->codec()->skipScanlines(startY)) {
/external/skia/tools/viewer/
H A DViewer.cpp910 int startY = SkScalarTruncToInt(rect.fBottom); local
911 int endY = startY - flushHeight;
913 canvas->drawLine(SkIntToScalar(x), SkIntToScalar(startY),
915 startY = endY;
916 endY = startY - paintHeight;
918 canvas->drawLine(SkIntToScalar(x), SkIntToScalar(startY),
920 startY = endY;
921 endY = startY - animateHeight;
923 canvas->drawLine(SkIntToScalar(x), SkIntToScalar(startY),
/external/opencv/
H A Dcvjni.cpp515 int startY = MAX(face->y - PAD_FACE_AREA, 0); local
517 int h = m_smallImage->height - startY - face->height - PAD_FACE_AREA_2;
519 m_faceCropArea = cvRect(startX, startY,
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationCommonEdgeTests.cpp76 const int startY = static_cast<int>(0.15f * (float)image.getHeight()); local
79 for (int y = startY; y < endY; ++y)
/external/skia/gm/
H A Ddashing.cpp17 SkScalar startX = SkIntToScalar(0), SkScalar startY = SkIntToScalar(0)) {
26 canvas->drawLine(startX, startY, finalX, finalY, p);
/external/skia/dm/
H A DDMSrcSink.cpp622 const int startY = (i + 1) * stripeHeight; local
623 const int linesToRead = SkTMin(stripeHeight, height - startY);
625 codec->getScanlines(SkTAddOffset<void>(dst, rowBytes * startY), linesToRead,
638 const int startY = i * stripeHeight; local
639 const int linesToRead = SkTMin(stripeHeight, height - startY);
640 codec->getScanlines(SkTAddOffset<void>(dst, rowBytes * startY), linesToRead,
/external/ImageMagick/Magick++/lib/Magick++/
H A DDrawable.h404 void startY( double startY_ ) function in class:Magick::DrawableArc
408 double startY( void ) const function in class:Magick::DrawableArc
1162 void startY( double startY_ ) function in class:Magick::DrawableLine
1166 double startY( void ) const function in class:Magick::DrawableLine
/external/ImageMagick/MagickCore/
H A Daccelerate-kernels-private.h2618 const unsigned int startY = get_group_id(1)*pixelPerWorkgroup;
2619 const unsigned int stopY = MagickMin(startY + pixelPerWorkgroup,filteredRows);
2620 const unsigned int actualNumPixelToCompute = stopY - startY;
2627 const int cacheRangeStartY = MagickMax((int)((startY+0.5f)/yFactor+MagickEpsilon-support+0.5f),(int)(0));
2645 const unsigned int chunkStartY = startY + chunk*pixelChunkSize;
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec_progress.cpp677 int startY = m_startY; local
684 (uint8_t*)pDevice->GetScanline(row + startY) + startX * Bpp;
/external/robolectric/v3/runtime/
H A Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-17.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-19.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-21.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...

Completed in 634 milliseconds

12