Home
last modified time | relevance | path

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

12

/external/droiddriver/src/io/appium/droiddriver/actions/
DSwipeAction.java156 int startY; in perform() local
163 startY = adjustedbottom; in perform()
169 startY = adjustedTop; in perform()
175 startY = elementRect.centerY(); in perform()
181 startY = elementRect.centerY(); in perform()
190 double yStep = ((double) (endY - startY)) / steps; in perform()
193 long downTime = Events.touchDown(injector, startX, startY); in perform()
199 Events.touchMove(injector, downTime, startX + (int) (xStep * i), startY + (int) (yStep * i)); in perform()
/external/replicaisland/tools/
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/
DSkMaskFilter.cpp146 int startY = SkMax32(0, r.top() - outerR.top()); in draw_nine_clipped() local
147 int stopY = startY + r.height(); in draw_nine_clipped()
149 for (int y = startY; y < stopY; ++y) { in draw_nine_clipped()
159 int startY = outerR.bottom() - r.bottom(); in draw_nine_clipped() local
160 int stopY = startY + r.height(); in draw_nine_clipped()
162 for (int y = startY; y < stopY; ++y) { in draw_nine_clipped()
DSkGeometry.cpp1141 const SkScalar startY = src.fPts[0].fY; in subdivide() local
1143 if (between(startY, src.fPts[1].fY, endY)) { in subdivide()
1147 if (!between(startY, midY, endY)) { in subdivide()
1149 SkScalar closerY = SkTAbs(midY - startY) < SkTAbs(midY - endY) ? startY : endY; in subdivide()
1152 if (!between(startY, dst[0].fPts[1].fY, dst[0].fPts[2].fY)) { in subdivide()
1155 dst[0].fPts[1].fY = startY; in subdivide()
1163 SkASSERT(between(startY, dst[0].fPts[1].fY, dst[0].fPts[2].fY)); in subdivide()
DSkLinearBitmapPipeline.cpp124 this->pointListFew(1, Sk4f{span.startX()}, Sk4f{span.startY()}); in pointSpan()
180 int32_t y = SkScalarTruncToInt(span.startY()); in pointSpan()
191 int32_t y = SkScalarTruncToInt(span.startY()); in repeatSpan()
258 int32_t y = (int32_t)span.startY(); in repeatSpan()
DSkLinearBitmapPipeline_core.h76 SkScalar startY() const { return Y(fStart); } in startY() function
DSkScan_Hairline.cpp122 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6); in HairLineRgn() local
124 horiline(ix0, ix1, startY, slope, blitter); in HairLineRgn()
DSkLinearBitmapPipeline_sample.h568 && sample_to_filter(span.startY()) == 1.0f) { in pointSpan()
/external/skia/fuzz/
Dfuzz.cpp302 const int startY = (i + 1) * stripeHeight; in fuzz_img() local
303 const int linesToRead = SkTMin(stripeHeight, height - startY); in fuzz_img()
305 codec->getScanlines(bitmap.getAddr(0, startY), linesToRead, bitmap.rowBytes()); in fuzz_img()
318 const int startY = i * stripeHeight; in fuzz_img() local
319 const int linesToRead = SkTMin(stripeHeight, height - startY); in fuzz_img()
320 codec->getScanlines(bitmap.getAddr(0, startY), linesToRead, bitmap.rowBytes()); in fuzz_img()
/external/replicaisland/src/com/replica/replicaisland/
DTiledVertexGrid.java193 final int startY = bottomTile; in draw() local
195 final int endY = startY + verticalSlop + vertTileCount; in draw()
209 for (int tileY = startY; tileY < endY && tileY < mTilesPerColumn; tileY++) { in draw()
DCollisionSystem.java161 float startY = bottom; in testBox() local
173 startY = top; in testBox()
180 … final int startTileY = Utils.clamp((int)(startY / mTileHeight), 0, mWorld.getHeight() - 1); in testBox()
559 final float startY = Utils.byteArrayToFloat(mWorkspaceBytes); in loadCollisionTiles() local
572 newSegment.mStartPoint.set(startX, startY); in loadCollisionTiles()
/external/skia/tools/viewer/
DViewer.cpp910 int startY = SkScalarTruncToInt(rect.fBottom); in drawStats() local
911 int endY = startY - flushHeight; in drawStats()
913 canvas->drawLine(SkIntToScalar(x), SkIntToScalar(startY), in drawStats()
915 startY = endY; in drawStats()
916 endY = startY - paintHeight; in drawStats()
918 canvas->drawLine(SkIntToScalar(x), SkIntToScalar(startY), in drawStats()
920 startY = endY; in drawStats()
921 endY = startY - animateHeight; in drawStats()
923 canvas->drawLine(SkIntToScalar(x), SkIntToScalar(startY), in drawStats()
/external/skia/src/codec/
DSkSampledCodec.cpp214 const int startY = samplingOffsetY + subsetY; in sampledDecode() local
286 if (!this->codec()->skipScanlines(startY)) { in sampledDecode()
/external/opencv/
Dcvjni.cpp515 int startY = MAX(face->y - PAD_FACE_AREA, 0); in storePreviousFace() local
517 int h = m_smallImage->height - startY - face->height - PAD_FACE_AREA_2; in storePreviousFace()
519 m_faceCropArea = cvRect(startX, startY, in storePreviousFace()
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationCommonEdgeTests.cpp76 const int startY = static_cast<int>(0.15f * (float)image.getHeight()); in verifyResult() local
79 for (int y = startY; y < endY; ++y) in verifyResult()
/external/skia/gm/
Ddashing.cpp17 SkScalar startX = SkIntToScalar(0), SkScalar startY = SkIntToScalar(0)) { in drawline() argument
26 canvas->drawLine(startX, startY, finalX, finalY, p); in drawline()
/external/skia/dm/
DDMSrcSink.cpp622 const int startY = (i + 1) * stripeHeight; in draw() local
623 const int linesToRead = SkTMin(stripeHeight, height - startY); in draw()
625 codec->getScanlines(SkTAddOffset<void>(dst, rowBytes * startY), linesToRead, in draw()
638 const int startY = i * stripeHeight; in draw() local
639 const int linesToRead = SkTMin(stripeHeight, height - startY); in draw()
640 codec->getScanlines(SkTAddOffset<void>(dst, rowBytes * startY), linesToRead, in draw()
/external/ImageMagick/Magick++/lib/Magick++/
DDrawable.h404 void startY( double startY_ ) in startY() function
408 double startY( void ) const in startY() function
1162 void startY( double startY_ ) in startY() function
1166 double startY( void ) const in startY() function
/external/ImageMagick/MagickCore/
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),(in…
2645 const unsigned int chunkStartY = startY + chunk*pixelChunkSize;
/external/pdfium/core/fxcodec/codec/
Dfx_codec_progress.cpp677 int startY = m_startY; in GifInputRecordPositionBuf() local
684 (uint8_t*)pDevice->GetScanline(row + startY) + startX * Bpp; in GifInputRecordPositionBuf()
/external/robolectric/v3/runtime/
Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-21.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-22.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-17.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...

12