HomeSort by relevance Sort by last modified time
    Searched refs:endY (Results 26 - 50 of 79) sorted by null

12 3 4

  /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);
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 220 final float endY = mVert.convertToPoint(totalData);
229 mPathStroke.lineTo(endX, endY);
230 mPathFill.lineTo(endX, endY);
233 lastY = endY;
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorTest.java 111 float endY = mActivity.mStartY + mActivity.mDeltaY;
112 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
121 assertEquals(y, endY);
AnimatorSetTest.java 150 float endY = mActivity.mStartY + mActivity.mDeltaY;
151 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
PropertyValuesHolderTest.java 399 public void assertResults(float[] yArray,float startY, float endY) {
403 assertTrue(y <= endY);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FETurbulence.cpp 330 inline void FETurbulence::fillRegion(Uint8ClampedArray* pixelArray, PaintingData& paintingData, int startY, int endY, float baseFrequencyX, float baseFrequencyY)
338 for (int y = startY; y < endY; ++y) {
351 parameters->filter->fillRegion(parameters->pixelArray, *parameters->paintingData, parameters->startY, parameters->endY, parameters->baseFrequencyX, parameters->baseFrequencyY);
389 params.endY = startY;
  /external/chromium_org/third_party/skia/gm/
bitmapscroll.cpp 110 int endX, int endY) {
116 path.lineTo(SkIntToScalar(endX), SkIntToScalar(endY));
  /external/replicaisland/src/com/replica/replicaisland/
TiledVertexGrid.java 195 final int endY = startY + verticalSlop + vertTileCount;
209 for (int tileY = startY; tileY < endY && tileY < mTilesPerColumn; tileY++) {
CollisionSystem.java 162 float endY = top;
174 endY = bottom;
181 final int endTileY = Utils.clamp((int)(endY / mTileHeight), 0, mWorld.getHeight() - 1);
543 // read startx, starty, endx, endy, normalx, normaly
563 final float endY = Utils.byteArrayToFloat(mWorkspaceBytes);
573 newSegment.mEndPoint.set(endX, endY);
    [all...]
  /external/skia/gm/
bitmapscroll.cpp 110 int endX, int endY) {
115 path.lineTo(SkIntToScalar(endX), SkIntToScalar(endY));
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 229 float endY = mY[endIndex];
230 return startY + (fraction * (endY - startY));
  /frameworks/base/libs/hwui/
FontRenderer.cpp 285 uint32_t endY = startY + glyph.fHeight;
312 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) {
322 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) {
330 row = (endY + TEXTURE_BORDER_SIZE - 1) * cacheWidth + startX - TEXTURE_BORDER_SIZE;
345 uint8_t* dstEnd = &cacheBuffer[cacheTexture->getOffset(startX, endY - 1)];
368 for (cacheY = startY; cacheY < endY; cacheY++) {
386 row = (endY + TEXTURE_BORDER_SIZE - 1) * cacheWidth + startX - TEXTURE_BORDER_SIZE;
SpotShadow.cpp 316 float endY = poly[i].y;
318 if (((endY > testy) != (startY > testy))
319 && (testx < (startX - endX) * (testy - endY)
320 / (startY - endY) + endX)) {
    [all...]
  /frameworks/base/libs/hwui/font/
Font.cpp 225 uint32_t endY = startY + (glyph->mBitmapHeight * srcStride);
229 for (uint32_t cacheY = startY, bitmapY = dstY * bitmapWidth; cacheY < endY;
455 uint32_t endY = startY + skiaGlyph.fHeight;
470 glyph->mBitmapMaxV = endY / (float) cacheHeight;
  /frameworks/rs/
rsFont.cpp 119 uint32_t endY = glyph->mBitmapMinY + glyph->mBitmapHeight;
128 for (cacheY = glyph->mBitmapMinY, bY = nPenY; cacheY < endY; cacheY++, bY++) {
267 uint32_t endY = startY + bitmap->rows;
280 glyph->mBitmapMaxV = (float)endY / (float)cacheHeight;
458 uint32_t endY = startY + bitmap->rows;
467 for (cacheY = startY, bY = 0; cacheY < endY; cacheY ++, bY ++) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 559 int startY, endY;
561 endY = mRowMatch.matchedLine - 1;
562 startY = endY - bounds.h;
567 startY = endY = mRowMatch.matchedLine;
570 endY = startY + bounds.h;
573 int endRow = mGrid.getRow(endY);
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 409 int startX, int startY, int endX, int endY, int dX, int dY,
416 for (int x = startX, y = startY; x != endX && y != endY; x += dX, y += dY, inset++) {
437 static uint8_t max_alpha_over_col(png_byte** rows, int offsetX, int startY, int endY)
440 for (int y = startY; y < endY; y++) {
452 int endY = image->height - 2;
466 find_max_opacity(image->rows, midX, endY, -1, midY, 0, -1, &image->outlineInsetsBottom);
475 int innerEndY = endY - image->outlineInsetsBottom;
    [all...]
  /frameworks/base/core/java/android/transition/
ChangeBounds.java 438 int endY = (Integer) endValues.values.get(PROPNAME_WINDOW_Y);
440 if (startX != endX || startY != endY) {
451 startY - tempLocation[1], endX - tempLocation[0], endY - tempLocation[1]);
  /prebuilts/sdk/18/
uiautomator.jar 
  /prebuilts/sdk/19/
uiautomator.jar 
  /prebuilts/sdk/20/
uiautomator.jar 
  /prebuilts/sdk/21/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 699 int startY, endY;
702 endY = sourceBounds.y2();
706 endY = targetBounds.y + 3 * targetBounds.h / 2;
713 graphics.drawLine(sharedX, startY, sharedX, endY);
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkTextureCompressor_Blitter.h 341 const int endY = SkMin32(j + BlockDim, clip.bottom());
343 for (int y = startY; y < endY; ++y) {

Completed in 1206 milliseconds

12 3 4