HomeSort by relevance Sort by last modified time
    Searched defs:startX (Results 26 - 50 of 206) sorted by null

12 3 4 5 6 7 8 9

  /frameworks/support/transition/src/main/java/androidx/transition/
Slide.java 253 float startX = mSlideCalculator.getGoneX(sceneRoot, view);
257 startX, startY, endX, endY, sDecelerate);
267 float startX = view.getTranslationX();
273 startX, startY, endX, endY, sAccelerate);
ChangeBounds.java 423 int startX = (Integer) startValues.values.get(PROPNAME_WINDOW_X);
428 if (startX != endX || startY != endY) {
439 Path topLeftPath = getPathMotion().getPath(startX - mTempLocation[0],
  /hardware/intel/img/psb_video/src/
tng_vld_dec.c 83 uint32_t startX = 0, startY = 0, luma_addr_offset = 0, chroma_addr_offset = 0;
102 startX = ((uint32_t)obj_context->current_render_target->offset_x_s + 0x3f) & ~0x3f;
104 luma_addr_offset = (((uint32_t)(startX + out_loop_surface->stride * startY)) + 0x3f ) & ~0x3f;
105 chroma_addr_offset = (((uint32_t)(startX + out_loop_surface->stride * startY / 2)) + 0x3f ) & ~0x3f;
  /packages/apps/Camera2/jni/
jpegutil.h 202 // The line is defined by (startX, startY) -> (endX, endY), computed via the
204 int startX;
206 transform_.Map(0, y, &startX, &startY);
212 // Clamp (startX, startY) and (endX, endY) to the valid bounds of the plane.
213 startX = min(startX, plane_.width - 1);
217 startX = max(startX, 0);
225 int dx = sgn(endX - startX);
228 // The index into plane_.data of (startX, startY
    [all...]
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/
CubeWallpaper1.java 223 float startX = newx1 / (4 - newz1 / 400);
228 c.drawLine(startX, startY, stopX, stopY, mPaint);
  /external/opencv/
cvjni.cpp 514 int startX = MAX(face->x - PAD_FACE_AREA, 0);
516 int w = m_smallImage->width - startX - face->width - PAD_FACE_AREA_2;
519 m_faceCropArea = cvRect(startX, startY,
  /frameworks/base/core/java/com/android/internal/transition/
EpicenterTranslateClipReveal.java 131 final float startX = startBounds.centerX() - endBounds.centerX();
136 view.setTranslationX(startX);
150 final State startStateX = new State(startClip.left, startClip.right, startX);
172 final float startX = (float) endValues.values.get(PROPNAME_TRANSLATE_X);
182 final State startStateX = new State(startClip.left, startClip.right, startX);
210 private static Animator createRectAnimator(final View view, State startX, State startY,
222 final ObjectAnimator animX = ObjectAnimator.ofObject(view, propX, evaluator, startX, endX);
  /frameworks/base/libs/hwui/font/
Font.cpp 426 uint32_t startX = 0;
433 mState->cacheBitmap(skiaGlyph, glyph, &startX, &startY, precaching);
439 uint32_t endX = startX + skiaGlyph.fWidth;
442 glyph->mStartX = startX;
452 glyph->mBitmapMinU = startX / (float)cacheWidth;
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
FadeAndShortSlide.java 230 float startX = mSlideCalculator.getGoneX(sceneRoot, view, position, mDistance);
233 view, endValues, left, startX, endX, APPEAR_INTERPOLATOR, this);
258 float startX = view.getTranslationX();
262 view, startValues, left, startX, endX, DISAPPEAR_INTERPOLATOR, this);
263 if (slideAnimator == null) { // slideAnimator is null if startX == endX
  /cts/tests/tests/media/src/android/media/cts/
PresentationSyncTest.java 400 int startX, startY;
401 startX = (num % 16) * (mWidth / 16);
405 startX = (mWidth - mWidth/16) - startX;
414 GLES20.glScissor(startX, startY, mWidth / 16, mHeight / 4);
  /external/replicaisland/src/com/replica/replicaisland/
TiledVertexGrid.java 192 final int startX = leftTile;
194 final int endX = startX + horizontalSlop + horzTileCount;
207 final int startOffset = (startX * indexesPerTile);
208 final int count = (endX - startX) * indexesPerTile;
  /external/skia/src/codec/
SkJpegCodec.cpp 711 uint32_t startX = options.fSubset->x();
714 // libjpeg-turbo may need to align startX to a multiple of the IDCT
716 // startX to the appropriate alignment and also increase the value
719 jpeg_crop_scanline(fDecoderMgr->dinfo(), &startX, &width);
721 SkASSERT(startX <= (uint32_t) options.fSubset->x());
723 SkASSERT(startX + width >= (uint32_t) options.fSubset->right());
736 fSwizzlerSubset.setXYWH(options.fSubset->x() - startX, 0,
741 if (startX != (uint32_t) options.fSubset->x() ||
    [all...]
  /external/skqp/src/codec/
SkJpegCodec.cpp 710 uint32_t startX = options.fSubset->x();
713 // libjpeg-turbo may need to align startX to a multiple of the IDCT
715 // startX to the appropriate alignment and also increase the value
718 jpeg_crop_scanline(fDecoderMgr->dinfo(), &startX, &width);
720 SkASSERT(startX <= (uint32_t) options.fSubset->x());
722 SkASSERT(startX + width >= (uint32_t) options.fSubset->right());
735 fSwizzlerSubset.setXYWH(options.fSubset->x() - startX, 0,
740 if (startX != (uint32_t) options.fSubset->x() ||
    [all...]
  /frameworks/base/core/java/android/transition/
ChangeBounds.java 437 int startX = (Integer) startValues.values.get(PROPNAME_WINDOW_X) - tempLocation[0];
442 if (startX != endX || startY != endY) {
449 drawable.setBounds(startX, startY, startX + width, startY + height);
453 Path topLeftPath = getPathMotion().getPath(startX, startY, endX, endY);
  /frameworks/base/libs/hwui/
FontRenderer.cpp 195 const SkGlyph& glyph, uint32_t* startX,
198 if (cacheTextures[i]->fitBitmap(glyph, startX, startY)) {
247 uint32_t startX = 0;
250 CacheTexture* cacheTexture = cacheBitmapInTexture(*cacheTextures, glyph, &startX, &startY);
257 cacheTexture = cacheBitmapInTexture(*cacheTextures, glyph, &startX, &startY);
268 *retOriginX = startX;
271 uint32_t endX = startX + glyph.fWidth;
293 (startY - TEXTURE_BORDER_SIZE) * cacheWidth + startX - TEXTURE_BORDER_SIZE;
300 cacheBuffer[row + startX - TEXTURE_BORDER_SIZE] = 0;
301 for (uint32_t cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/pageindicators/
PageIndicatorDots.java 244 float startX = (getWidth() - mNumPages * circleGap + mDotRadius) / 2;
246 float x = startX + mDotRadius;
277 float startX = (getWidth() - mNumPages * circleGap + mDotRadius) / 2;
281 sTempRect.left = startX + startCircle * circleGap;
  /packages/apps/Messaging/src/com/android/messaging/ui/
MultiAttachmentLayout.java 82 public final int startX;
87 private Tile(final int startX, final int startY, final int endX, final int endY) {
88 this.startX = startX;
95 return MeasureSpec.makeMeasureSpec((endX - startX + 1) * cellWidth - padding * 2,
104 public static Tile large(final int startX, final int startY) {
105 return new Tile(startX, startY, startX + 1, startY + 1);
108 public static Tile wide(final int startX, final int startY) {
109 return new Tile(startX, startY, startX + 1, startY)
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 210 final float startX = mHoriz.convertToPoint(startTime);
224 mPathStroke.lineTo(startX, startY);
225 mPathFill.lineTo(startX, startY);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 550 int startX, endX;
553 startX = endX - bounds.w;
554 column = mGrid.getColumn(startX);
556 startX = mColumnMatch.matchedLine; // TODO: What happens on type=RIGHT?
557 endX = startX + bounds.w;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 542 int startX;
545 startX = targetBounds.x + targetBounds.w / 4;
549 startX = sourceBounds.x;
556 graphics.drawLine(startX, sharedY, endX, sharedY);
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowCanvas.java 182 public void drawLine(float startX, float startY, float stopX, float stopY, Paint paint) {
183 linePaintEvents.add(new LinePaintHistoryEvent(startX, startY, stopX, stopY, paint));
316 public float startX;
322 float startX, float startY, float stopX, float stopY, Paint paint) {
326 this.startX = startX;
  /frameworks/base/core/java/android/widget/
Magnifier.java 167 final int startX = mClampedCenterZoomCoords.x - mBitmapWidth / 2;
179 performPixelCopy(startX, startY, true /* update window position */);
    [all...]
  /frameworks/rs/
rsFont.cpp 254 uint32_t startX = 0;
259 glyph->mIsValid = state->cacheBitmap(bitmap, &startX, &startY);
265 uint32_t endX = startX + bitmap->width;
268 glyph->mBitmapMinX = startX;
276 glyph->mBitmapMinU = (float)startX / (float)cacheWidth;
423 uint32_t startX = 0;
428 bitmapFit = mCacheLines[i]->fitBitmap(bitmap, &startX, &startY);
440 bitmapFit = mCacheLines[i]->fitBitmap(bitmap, &startX, &startY);
453 *retOriginX = startX;
456 uint32_t endX = startX + bitmap->width
    [all...]
  /frameworks/support/heifwriter/src/androidTest/java/androidx/heifwriter/
HeifWriterTest.java 524 int startX, startY;
527 startX = (width - borderWidth * 2) * i / 7 + borderWidth;
528 GLES20.glScissor(startX, borderWidth,
537 startX = (width / 6) + (width / 6) * frameIndex;
539 GLES20.glScissor(startX, startY, width / 6, height / 3);
542 GLES20.glScissor(startX + borderWidth, startY + borderWidth,
  /prebuilts/sdk/18/
uiautomator.jar 

Completed in 2292 milliseconds

12 3 4 5 6 7 8 9