Home
last modified time | relevance | path

Searched refs:yPos (Results 1 – 20 of 20) sorted by relevance

/external/skia/gm/
Dstlouisarch.cpp37 SkScalar yPos = kHeight / 2 + 10; in onOnceBeforeDraw() local
38 degenBigQuad->moveTo(0, yPos); in onOnceBeforeDraw()
39 degenBigQuad->quadTo(0, yPos, kWidth, yPos); in onOnceBeforeDraw()
53 SkScalar yPos = kHeight / 2; in onOnceBeforeDraw() local
54 degenBigCubic->moveTo(0, yPos); in onOnceBeforeDraw()
55 degenBigCubic->cubicTo(0, yPos, in onOnceBeforeDraw()
56 0, yPos, in onOnceBeforeDraw()
57 kWidth, yPos); in onOnceBeforeDraw()
68 SkScalar yPos = kHeight / 2 - 10; in onOnceBeforeDraw() local
69 degenBigConic->moveTo(0, yPos); in onOnceBeforeDraw()
[all …]
Dpathopsinverse.cpp70 int yPos = 0; in onDraw() local
84 canvas->translate(0, SkIntToScalar(yPos)); in onDraw()
96 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos)); in onDraw()
103 yPos += 150; in onDraw()
/external/skia/tools/viewer/
DShadowReferenceSlide.cpp86 SkScalar yPos = 254.25f; in draw() local
93 canvas->translate(xPos, yPos); in draw()
104 canvas->translate(xPos, yPos); in draw()
115 canvas->translate(xPos, yPos); in draw()
126 canvas->translate(xPos, yPos); in draw()
137 canvas->translate(xPos, yPos); in draw()
148 canvas->translate(xPos, yPos); in draw()
DShadowColorSlide.cpp128 SkScalar yPos = 75; in draw() local
137 canvas->translate(xPos, yPos); in draw()
147 yPos += 200; in draw()
DShipSlide.cpp70 float yPos = (y / (kGrid - 1.0f)) * kWidth; in DrawShipSlide() local
76 xPos, yPos, anchorX, anchorY); in DrawShipSlide()
DQuadStrokerSlide.cpp725 SkScalar yPos = bounds.fTop + (value - min) * bounds.height() / scale; in draw_control() local
727 canvas->drawLine(bounds.fLeft - 5, yPos, bounds.fRight + 5, yPos, paint); in draw_control()
733 canvas->drawString(label, bounds.fLeft + 5, yPos - 5, font, paint); in draw_control()
/external/skia/docs/examples/
DCanvas_drawText.cpp16 float yPos = 20; in draw() local
22 canvas->drawString("Aa", 10 / scale, yPos / scale, font, paint); in draw()
23 yPos += size * 2; in draw()
Dpathops.cpp41 int yPos = 0; in draw() local
60 canvas->translate(0, SkIntToScalar(yPos)); in draw()
72 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos)); in draw()
79 yPos += 150; in draw()
/external/webrtc/sdk/android/api/org/webrtc/
DYuvConverter.java219 final int yPos = 0; in convertInternal() local
220 final int uPos = yPos + stride * frameHeight; in convertInternal()
224 i420ByteBuffer.position(yPos); in convertInternal()
225 i420ByteBuffer.limit(yPos + stride * frameHeight); in convertInternal()
DJavaI420Buffer.java82 int yPos = 0; in allocate() local
83 int uPos = yPos + width * height; in allocate()
89 buffer.position(yPos); in allocate()
/external/MPAndroidChart/MPChartLib/src/main/java/com/github/mikephil/charting/renderer/
DYAxisRendererHorizontalBarChart.java85 float yPos = 0f; in renderAxisLabels() local
90 yPos = mViewPortHandler.contentTop() - baseYOffset; in renderAxisLabels()
92 yPos = mViewPortHandler.contentTop() - baseYOffset; in renderAxisLabels()
98 yPos = mViewPortHandler.contentBottom() + textHeight + baseYOffset; in renderAxisLabels()
100 yPos = mViewPortHandler.contentBottom() + textHeight + baseYOffset; in renderAxisLabels()
104 drawYLabels(c, yPos, positions, mYAxis.getYOffset()); in renderAxisLabels()
/external/lzma/CPP/7zip/UI/FileManager/
DProgressDialog2.cpp462 int yPos = ySize - my - _buttonSizeY; in OnSize() local
488 int ySize2 = yPos - my - y; in OnSize()
504 MoveItem(IDCANCEL, xPos, yPos, bSizeX, _buttonSizeY); in OnSize()
506 MoveItem(IDB_PAUSE, xPos, yPos, bSizeX, _buttonSizeY); in OnSize()
508 MoveItem(IDB_PROGRESS_BACKGROUND, xPos, yPos, bSizeX, _buttonSizeY); in OnSize()
538 yPos = my; in OnSize()
546 yPos = my; in OnSize()
549 MoveItem(kIDs[i], x, yPos, labelSize, sY); in OnSize()
550 MoveItem(kIDs[i + 1], x + labelSize, yPos, valueSize, sY); in OnSize()
551 yPos += sStep; in OnSize()
/external/tensorflow/tensorflow/tools/android/test/src/org/tensorflow/demo/
DTensorFlowYoloDetector.java196 final float yPos = (y + expit(output[offset + 1])) * blockSize; in recognizeImage() local
204 Math.max(0, yPos - h / 2), in recognizeImage()
206 Math.min(bitmap.getHeight() - 1, yPos + h / 2)); in recognizeImage()
/external/skia/tools/sk_app/win/
DWindow_win.cpp264 int yPos = GET_Y_LPARAM(lParam); in WndProc() local
277 eventHandled = window->onMouse(xPos, yPos, istate, in WndProc()
283 int yPos = GET_Y_LPARAM(lParam); in WndProc() local
293 eventHandled = window->onMouse(xPos, yPos, skui::InputState::kMove, in WndProc()
/external/dng_sdk/source/
Ddng_resample.cpp397 real64 yPos = yInt - yFract; in Initialize() local
409 real64 dy2 = yPos * yPos; in Initialize()
421 (real32) kernel.Evaluate (yPos); in Initialize()
/external/webrtc/sdk/android/src/java/org/webrtc/
DAndroidVideoDecoder.java528 final int yPos = 0;
529 final int yEnd = yPos + stride * height;
530 final int uPos = yPos + stride * sliceHeight;
538 buffer.position(yPos);
/external/webrtc/sdk/android/tests/src/org/webrtc/
DAndroidVideoDecoderTest.java112 int yPos = 0; in allocateI420Buffer() local
113 int uPos = yPos + width * height; in allocateI420Buffer()
118 buffer.position(yPos); in allocateI420Buffer()
/external/skia/src/gpu/ganesh/ops/
DAtlasTextOp.cpp581 int yPos = (random->nextU() % 2) * 2 - 1; in GR_DRAW_OP_TEST_DEFINE() local
583 int yInt = (random->nextU() % kMaxTrans) * yPos; in GR_DRAW_OP_TEST_DEFINE()
/external/skia/tests/
DImageFilterTest.cpp828 const SkScalar yPos = SkIntToScalar(height); in DEF_TEST() local
839 untiledCanvas.drawString(text, 0, yPos, font, combinedPaint); in DEF_TEST()
852 tiledCanvas.drawString(text, 0, yPos, font, textPaint); in DEF_TEST()
856 tiledCanvas.drawString(text, 0, yPos, font, combinedPaint); in DEF_TEST()
/external/mesa3d/src/amd/addrlib/src/gfx10/
Dgfx10addrlib.cpp3047 UINT_32 yPos = 0; in ComputeStereoInfo() local
3062 yPos = i; in ComputeStereoInfo()
3076 *pRightXor = 1 << (yPos - m_pipeInterleaveLog2); in ComputeStereoInfo()