/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
ScrollerHelper.java | 67 position, 0, // startX, startY 77 currX, 0, // startX, startY 92 currPosition, 0, // startX, startY
|
/external/mesa3d/src/mesa/swrast/ |
s_aatritemp.h | 190 GLint ix, startX = (GLint) (x - xAdj); 199 while (startX < SWRAST_MAX_WIDTH) { 200 coverage = compute_coveragef(pMin, pMid, pMax, startX, iy); 203 startX++; 207 ix = startX; 238 if (ix > startX) { 239 span.x = startX; 241 span.end = (GLuint) ix - (GLuint) startX; 259 GLint ix, left, startX = (GLint) (x + xAdj); 268 if (startX >= ctx->DrawBuffer->_Xmax) [all...] |
/external/pdfium/xfa/src/fxbarcode/qrcode/ |
BC_QRAlignmentPatternFinder.h | 24 int32_t startX,
|
BC_QRAlignmentPatternFinder.cpp | 30 int32_t startX,
36 m_startX(startX),
52 int32_t startX = m_startX;
54 int32_t maxJ = startX + m_width;
64 int32_t j = startX;
|
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/src/main/res/color/ |
gradient.xml | 19 android:startX="10"
|
/frameworks/base/core/java/android/transition/ |
ArcMotion.java | 180 public Path getPath(float startX, float startY, float endX, float endY) { 198 path.moveTo(startX, startY); 203 ex = (startX + endX) / 2; 204 ey = startY + mMinimumHorizontalTangent * Math.abs(endX - startX) / 2; 205 } else if (startX == endX) { 206 ex = startX + mMinimumVerticalTangent * Math.abs(endY - startY) / 2; 209 float deltaX = endX - startX; 215 float dx = (startX + endX) / 2; 233 ex = startX; 248 ex = startX + eDistX [all...] |
Explode.java | 89 float startX = endX + mTempLoc[0]; 93 startX, startY, endX, endY, sDecelerate, this); 105 float startX = view.getTranslationX(); 107 float endX = startX; 122 viewPosX, viewPosY, startX, startY, endX, endY, sAccelerate, this);
|
/external/droiddriver/src/io/appium/droiddriver/actions/ |
SwipeAction.java | 155 int startX; 162 startX = elementRect.centerX(); 168 startX = elementRect.centerX(); 174 startX = adjustedLeft; 180 startX = adjustedRight; 189 double xStep = ((double) (endX - startX)) / steps; 193 long downTime = Events.touchDown(injector, startX, startY); 199 Events.touchMove(injector, downTime, startX + (int) (xStep * i), startY + (int) (yStep * i));
|
/external/pdfium/xfa/src/fxbarcode/pdf417/ |
BC_PDF417Codeword.cpp | 26 CBC_Codeword::CBC_Codeword(int32_t startX,
30 m_startX = startX;
|
/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...] |
/frameworks/base/libs/hwui/ |
FontRenderer.cpp | 201 const SkGlyph& glyph, uint32_t* startX, uint32_t* startY) { 203 if (cacheTextures[i]->fitBitmap(glyph, startX, startY)) { 252 uint32_t startX = 0; 255 CacheTexture* cacheTexture = cacheBitmapInTexture(*cacheTextures, glyph, &startX, &startY); 262 cacheTexture = cacheBitmapInTexture(*cacheTextures, glyph, &startX, &startY); 273 *retOriginX = startX; 276 uint32_t endX = startX + glyph.fWidth; 298 uint32_t row = (startY - TEXTURE_BORDER_SIZE) * cacheWidth + startX 306 cacheBuffer[row + startX - TEXTURE_BORDER_SIZE] = 0; 307 for (cacheX = startX, bX = 0; cacheX < endX; cacheX++, bX++) [all...] |
/frameworks/support/compat/java/android/support/v4/app/ |
ActivityOptionsCompat.java | 90 * defines the coordinate space for startX and startY. 91 * @param startX The x starting location of the new activity, relative to 100 int startX, int startY, int startWidth, int startHeight) { 103 ActivityOptionsCompat24.makeScaleUpAnimation(source, startX, startY, 107 ActivityOptionsCompat23.makeScaleUpAnimation(source, startX, startY, 111 ActivityOptionsCompat21.makeScaleUpAnimation(source, startX, startY, 115 ActivityOptionsCompatJB.makeScaleUpAnimation(source, startX, startY, 127 * defines the coordinate space for <var>startX</var> and <var>startY</var>. 128 * @param startX The x starting location of the new activity, relative to <var>source</var>. 136 int startX, int startY, int width, int height) [all...] |
/developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
AnimatedNotificationDisplayActivity.java | 71 float startX = mImageView.getTranslationX(); 75 float distance = (float) Math.sqrt(Math.pow(endX - startX, 2) + Math.pow(endY - startY, 2)); 78 PropertyValuesHolder.ofFloat("translationX", startX, endX),
|
/developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
AnimatedNotificationDisplayActivity.java | 71 float startX = mImageView.getTranslationX(); 75 float distance = (float) Math.sqrt(Math.pow(endX - startX, 2) + Math.pow(endY - startY, 2)); 78 PropertyValuesHolder.ofFloat("translationX", startX, endX),
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
AnimatedNotificationDisplayActivity.java | 71 float startX = mImageView.getTranslationX(); 75 float distance = (float) Math.sqrt(Math.pow(endX - startX, 2) + Math.pow(endY - startY, 2)); 78 PropertyValuesHolder.ofFloat("translationX", startX, endX),
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/superkoalio/ |
SuperKoalio.java | 201 int startX, startY, endX, endY;
203 startX = endX = (int)(koala.position.x + Koala.WIDTH + koala.velocity.x);
205 startX = endX = (int)(koala.position.x + koala.velocity.x);
209 getTiles(startX, startY, endX, endY, tiles);
226 startX = (int)(koala.position.x);
228 getTiles(startX, startY, endX, endY, tiles);
261 private boolean isTouched (float startX, float endX) {
262 // Check for touch inputs between startX and endX
263 // startX/endX are given between 0 (left edge of the screen) and 1 (right edge of the screen)
266 if (Gdx.input.isTouched(i) && (x >= startX && x <= endX)) { [all...] |
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/ |
btHeightfieldTerrainShape.cpp | 304 int startX=0; 313 if (quantizedAabbMin[1]>startX) 314 startX = quantizedAabbMin[1]; 325 if (quantizedAabbMin[0]>startX) 326 startX = quantizedAabbMin[0]; 337 if (quantizedAabbMin[0]>startX) 338 startX = quantizedAabbMin[0]; 359 for(int x=startX; x<endX; x++)
|
/frameworks/av/include/media/stagefright/ |
YUVCanvas.h | 44 // Fills the rectangular region [startX,endX]x[startY,endY] with the given YUV values. 48 // Copies the region [startX,endX]x[startY,endY] from srcImage into the
|
/frameworks/base/core/java/android/app/ |
ActivityOptions.java | 384 * defines the coordinate space for <var>startX</var> and <var>startY</var>. 385 * @param startX The x starting location of the new activity, relative to <var>source</var>. 393 int startX, int startY, int width, int height) { 399 opts.mStartX = pts[0] + startX; 412 * defines the coordinate space for <var>startX</var> and <var>startY</var>. 413 * @param startX The x starting location of the new activity, relative to <var>source</var>. 421 int startX, int startY, int width, int height) { 426 opts.mStartX = pts[0] + startX; 444 * defines the coordinate space for <var>startX</var> and <var>startY</var>. 447 * @param startX The x starting location of the bitmap, relative to <var>source</var> [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
Scroller.java | 307 * @param startX Starting horizontal scroll offset in pixels. Positive 316 public void startScroll(int startX, int startY, int dx, int dy) { 317 startScroll(startX, startY, dx, dy, DEFAULT_DURATION); 323 * @param startX Starting horizontal scroll offset in pixels. Positive 333 public void startScroll(int startX, int startY, int dx, int dy, int duration) { 338 mStartX = startX; 340 mFinalX = startX + dx; 351 * @param startX Starting point of the scroll (X) 366 public void fling(int startX, int startY, int velocityX, int velocityY, 397 mStartX = startX; [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherScroller.java | 343 * @param startX Starting horizontal scroll offset in pixels. Positive 352 public void startScroll(int startX, int startY, int dx, int dy) { 353 startScroll(startX, startY, dx, dy, DEFAULT_DURATION); 360 * @param startX Starting horizontal scroll offset in pixels. Positive 370 public void startScroll(int startX, int startY, int dx, int dy, int duration) { 375 mStartX = startX; 377 mFinalX = startX + dx; 388 * @param startX Starting point of the scroll (X) 403 public void fling(int startX, int startY, int velocityX, int velocityY, 433 mStartX = startX; [all...] |
/cts/tests/tests/graphics/res/color/ |
fill_gradient_linear.xml | 24 android:startX="0"
|
fill_gradient_linear_clamp.xml | 24 android:startX="0"
|
fill_gradient_linear_item.xml | 24 android:startX="0"
|
fill_gradient_linear_item_overlap.xml | 24 android:startX="0"
|