Home
last modified time | relevance | path

Searched refs:xStart (Results 1 – 4 of 4) sorted by relevance

/cts/tests/tests/rsblas/src/android/renderscript/cts/
Dverify.rscript81 uint32_t xStart = 0;
84 xStart = y;
86 for (uint32_t x = xStart; x < w; x++) {
105 uint32_t xStart = 0;
108 xStart = y;
110 for (uint32_t x = xStart; x < w; x++) {
129 uint32_t xStart = 0;
132 xStart = y;
134 for (uint32_t x = xStart; x < w; x++) {
153 uint32_t xStart = 0;
[all …]
/cts/tests/tests/transition/src/android/transition/cts/
DFadeTest.java255 private static double[] getMeans(Bitmap bitmap1, Bitmap bitmap2, int xStart, int yStart) { in getMeans() argument
260 avg0 += getIntensity(bitmap1.getPixel(xStart + x, yStart + y)); in getMeans()
261 avg1 += getIntensity(bitmap2.getPixel(xStart + x, yStart + y)); in getMeans()
275 int xStart, int yStart) { in getVariances() argument
281 double v0 = getIntensity(bitmap1.getPixel(xStart + x, yStart + y)) - mean0; in getVariances()
282 double v1 = getIntensity(bitmap2.getPixel(xStart + x, yStart + y)) - mean1; in getVariances()
310 private static boolean isWindowWhite(Bitmap bitmap, int xStart, int yStart) { in isWindowWhite() argument
313 if (bitmap.getPixel(xStart + x, yStart + y) != Color.WHITE) { in isWindowWhite()
/cts/tests/tests/renderscript/src/android/renderscript/cts/
Dsingle_source_script.rscript45 opts.xStart = 0;
55 opts.xStart = 0;
/cts/tests/tests/widget/src/android/widget/cts/
DTextViewTest.java8863 int xStart = (int) mParent.getLayout().getPrimaryHorizontal(mStartCharPos, true); in calculatePositions() local
8869 mXPosInside = (xStart + xEnd) / 2; in calculatePositions()
9004 int xStart = (int) textView.getLayout().getPrimaryHorizontal(startIndex, true); in getCenterPositionOfTextAt() local
9010 return new Point((xStart + xEnd) / 2 /* x */, (yTop + yBottom) / 2 /* y */); in getCenterPositionOfTextAt()