HomeSort by relevance Sort by last modified time
    Searched refs:startY (Results 1 - 25 of 49) sorted by null

1 2

  /external/droiddriver/src/com/google/android/droiddriver/actions/
SwipeAction.java 156 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/chromium_org/media/base/android/java/src/org/chromium/media/
VideoCaptureTango.java 122 int startY =
130 for (int j = startY; j < startY + 2 * sizeY; j += 2) {
140 int startY = SF_WIDTH * SF_LINES_HEADER;
143 ByteBuffer.wrap(data, startY, sizeY).get(mFrameBuffer.array(), 0, sizeY);
145 int startY = SF_WIDTH * (SF_LINES_HEADER + SF_LINES_FISHEYE +
159 ByteBuffer.wrap(data, startY, sizeY)
  /cts/tests/tests/animation/src/android/animation/cts/
ObjectAnimatorTest.java 55 float startY = mActivity.mStartY;
57 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
68 assertTrue( y >= startY);
75 float startY = mActivity.mStartY;
77 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
180 float startY = mActivity.mStartY;
182 float[] values = {startY, endY};
194 assertTrue( y >= startY);
214 float startY = mActivity.mStartY;
217 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY)
    [all...]
ValueAnimatorTest.java 118 float startY = mActivity.mStartY;
120 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
218 float startY = mActivity.mStartY;
220 ValueAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
AnimatorSetTest.java 149 float startY = mActivity.mStartY;
151 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
AnimatorTest.java 110 float startY = mActivity.mStartY;
112 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
  /external/chromium_org/third_party/skia/src/core/
SkTileGrid.cpp 87 startY = adjusted.top() / fInfo.fTileInterval.height();
96 startY = SkPin32(startY, 0, fYTiles - 1);
98 endY = SkPin32(endY, startY + 1, fYTiles);
100 const int tilesHit = (endX - startX) * (endY - startY);
105 const SkTDArray<Entry>& tile = fTiles[startY * fXTiles + startX];
120 for (int y = startY; y < endY; y++) {
SkMaskFilter.cpp 136 int startY = SkMax32(0, r.top() - outerR.top());
137 int stopY = startY + r.height();
139 for (int y = startY; y < stopY; ++y) {
149 int startY = outerR.bottom() - r.bottom();
150 int stopY = startY + r.height();
152 for (int y = startY; y < stopY; ++y) {
  /cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test5DetailFragment.java 38 int startY;
102 mPointerEvent.startX, mPointerEvent.startY, mPointerEvent.endX,
118 mPointerEvent.startX = mPointerEvent.startY =
134 mPointerEvent.startY = (int)(event.getY() + offsetInScreen[1]);
TestGenericDetailFragment.java 34 int startY;
99 * format: "startX,startY:endX,endY" where each line represent data for a pointer if
109 mPointerEvents[x].startX, mPointerEvents[x].startY, mPointerEvents[x].endX,
129 mPointerEvents[x].startX = mPointerEvents[x].startY =
147 mPointerEvents[getPointerId(event)].startY =
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEMorphology.h 68 int startY;
FETurbulence.cpp 330 inline void FETurbulence::fillRegion(Uint8ClampedArray* pixelArray, PaintingData& paintingData, int startY, int endY, float baseFrequencyX, float baseFrequencyY)
333 IntPoint point(0, filterRegion.y() + startY);
334 int indexOfPixelChannel = startY * (filterRegion.width() << 2);
338 for (int y = startY; y < endY; ++y) {
351 parameters->filter->fillRegion(parameters->pixelArray, *parameters->paintingData, parameters->startY, parameters->endY, parameters->baseFrequencyX, parameters->baseFrequencyY);
381 int startY = 0;
387 params.startY = startY;
388 startY += i < jobsWithExtra ? stepY + 1 : stepY;
389 params.endY = startY;
    [all...]
FETurbulence.h 108 int startY;
FELighting.h 103 inline void platformApplyGenericPaint(LightingData&, LightSource::PaintingData&, int startX, int startY);
FEConvolveMatrix.cpp 471 int startY = 0;
478 param.yStart = startY;
479 startY += job < jobsWithExtra ? heightPerThread + 1 : heightPerThread;
480 param.yEnd = startY;
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageFrame.h 89 // Copies the pixel data at [(startX, startY), (endX, startY)) to the
92 void copyRowNTimes(int startX, int endX, int startY, int endY)
96 ASSERT(startY < height());
99 const PixelData* const startAddr = getAddr(startX, startY);
100 for (int destY = startY + 1; destY < endY; ++destY)
  /developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
AnimatedNotificationDisplayActivity.java 72 float startY = mImageView.getTranslationY();
75 float distance = (float) Math.sqrt(Math.pow(endX - startX, 2) + Math.pow(endY - startY, 2));
79 PropertyValuesHolder.ofFloat("translationY", startY, endY));
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
AnimatedNotificationDisplayActivity.java 72 float startY = mImageView.getTranslationY();
75 float distance = (float) Math.sqrt(Math.pow(endX - startX, 2) + Math.pow(endY - startY, 2));
79 PropertyValuesHolder.ofFloat("translationY", startY, endY));
  /development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
AnimatedNotificationDisplayActivity.java 72 float startY = mImageView.getTranslationY();
75 float distance = (float) Math.sqrt(Math.pow(endX - startX, 2) + Math.pow(endY - startY, 2));
79 PropertyValuesHolder.ofFloat("translationY", startY, endY));
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java 327 private void moveView(View view, float startX, float endX, float startY, float endY,
339 if (startY != endY) {
340 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, startY, endY);
346 TranslateAnimation translator = new TranslateAnimation(startX, endX, startY, endY);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java 87 float startY = newBall.getY();
92 ValueAnimator bounceAnim = ObjectAnimator.ofFloat(newBall, "y", startY, endY);
120 startY);
  /cts/tests/tests/media/src/android/media/cts/
PresentationSyncTest.java 398 int startX, startY;
400 startY = (num / 16) * (mHeight / 4);
412 GLES20.glScissor(startX, startY, mWidth / 16, mHeight / 4);
EncodeDecodeTest.java     [all...]
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/
CubeWallpaper1.java 224 float startY = newy1 / (4 - newz1 / 400);
228 c.drawLine(startX, startY, stopX, stopY, mPaint);
  /external/chromium_org/third_party/skia/gm/
bitmapscroll.cpp 109 void drawLabel(SkCanvas* canvas, const char *text, int startX, int startY,
115 path.moveTo(SkIntToScalar(startX), SkIntToScalar(startY));

Completed in 2091 milliseconds

1 2