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

1 2 3 4

  /frameworks/support/v4/java/android/support/v4/widget/
ScrollerCompat.java 119 * @param startX Starting horizontal scroll offset in pixels. Positive
128 public void startScroll(int startX, int startY, int dx, int dy) {
129 mScroller.startScroll(startX, startY, dx, dy);
135 * @param startX Starting horizontal scroll offset in pixels. Positive
145 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
146 mScroller.startScroll(startX, startY, dx, dy, duration);
153 * @param startX Starting point of the scroll (X)
168 public void fling(int startX, int startY, int velocityX, int velocityY,
170 mScroller.fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY);
  /external/mesa3d/src/pixelflinger2/
scanline.cpp 199 const unsigned y = start->position.y, startX = start->position.x,
202 assert(bufferWidth > startX && bufferWidth > endX);
207 frame += (y * bufferWidth + startX) * 4;
209 frame += (y * bufferWidth + startX) * 2;
212 const VectorComp_t div = VectorComp_t_CTR(1 / (float)(endX - startX));
231 int * depth = depthBuffer + y * bufferWidth + startX;
232 unsigned char * stencil = stencilBuffer + y * bufferWidth + startX;
238 if (endX >= startX)
239 scanLineFunction(&vertex, &vertexDx, constants, frame, depth, stencil, activeStencil, endX - startX + 1);
262 // const unsigned y = start->position.y, startX = start->position.x
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
TimelineHorizontalScrollView.java 243 final int startX;
246 startX = mHalfParentWidth + getScrollX();
249 startX = playheadOffset;
258 startX - halfPlayheadWidth,
260 startX + halfPlayheadWidth,
269 startX - halfPlayheadWidth,
271 startX + halfPlayheadWidth,
280 startX - halfPlayheadWidth,
282 startX + halfPlayheadWidth,
PlayheadView.java 167 final float startX = Math.max(mScrollX - (((mScrollX - (mScreenWidth / 2)) % spacing)),
169 float startMs = ((tickMs * (startX - (mScreenWidth / 2))) / spacing);
175 for (float i = startX; i <= endX; i += spacing, startMs += tickMs) {
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp 125 float startX = point.x();
140 startX += controller.runWidthSoFar() - afterWidth;
142 startX += controller.totalWidth() - afterWidth;
147 startX += beforeWidth;
149 // Draw the glyph buffer now at the starting point returned in startX.
150 FloatPoint startPoint(startX, point.y());
  /frameworks/base/core/java/android/app/
ActivityOptions.java 199 * defines the coordinate space for <var>startX</var> and <var>startY</var>.
200 * @param startX The x starting location of the new activity, relative to <var>source</var>.
208 int startX, int startY, int startWidth, int startHeight) {
214 opts.mStartX = pts[0] + startX;
232 * defines the coordinate space for <var>startX</var> and <var>startY</var>.
235 * @param startX The x starting location of the bitmap, relative to <var>source</var>.
241 Bitmap thumbnail, int startX, int startY) {
242 return makeThumbnailScaleUpAnimation(source, thumbnail, startX, startY, null);
251 * defines the coordinate space for <var>startX</var> and <var>startY</var>.
254 * @param startX The x starting location of the bitmap, relative to <var>source</var>
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTableTooltipHelper.java 139 private void showTooltip(PropertyTooltipProvider provider, int startX, int endX) {
150 Control control = provider.createTooltipControl(m_property, m_tooltip, endX - startX, this);
160 tooltipLocation = m_table.toDisplay(new Point(startX, m_y));
162 tooltipLocation = m_table.toDisplay(new Point(startX, m_y + m_rowHeight));
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 308 * @param startX Starting horizontal scroll offset in pixels. Positive
317 public void startScroll(int startX, int startY, int dx, int dy) {
318 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
324 * @param startX Starting horizontal scroll offset in pixels. Positive
334 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
339 mStartX = startX;
341 mFinalX = startX + dx;
352 * @param startX Starting point of the scroll (X)
367 public void fling(int startX, int startY, int velocityX, int velocityY,
398 mStartX = startX;
    [all...]
OverScroller.java 350 * @param startX Starting horizontal scroll offset in pixels. Positive
359 public void startScroll(int startX, int startY, int dx, int dy) {
360 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
366 * @param startX Starting horizontal scroll offset in pixels. Positive
376 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
378 mScrollerX.startScroll(startX, dx, duration);
385 * @param startX Starting X coordinate
391 * @return true if a springback was initiated, false if startX and startY were
394 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) {
398 final boolean spingbackX = mScrollerX.springback(startX, minX, maxX)
    [all...]
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.h 95 // Copies the pixel data at [(startX, startY), (endX, startY)) to the
98 void copyRowNTimes(int startX, int endX, int startY, int endY)
100 ASSERT(startX < width());
104 const int rowBytes = (endX - startX) * sizeof(PixelData);
105 const PixelData* const startAddr = getAddr(startX, startY);
107 memcpy(getAddr(startX, destY), startAddr, rowBytes);
  /frameworks/base/core/java/android/widget/
OverScroller.java 348 * @param startX Starting horizontal scroll offset in pixels. Positive
357 public void startScroll(int startX, int startY, int dx, int dy) {
358 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
364 * @param startX Starting horizontal scroll offset in pixels. Positive
374 public void startScroll(int startX, int startY, int dx, int dy, int duration) {
376 mScrollerX.startScroll(startX, dx, duration);
383 * @param startX Starting X coordinate
389 * @return true if a springback was initiated, false if startX and startY were
392 public boolean springBack(int startX, int startY, int minX, int maxX, int minY, int maxY) {
396 final boolean spingbackX = mScrollerX.springback(startX, minX, maxX)
    [all...]
Scroller.java 344 * @param startX Starting horizontal scroll offset in pixels. Positive
353 public void startScroll(int startX, int startY, int dx, int dy) {
354 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...]
  /external/replicaisland/tools/
ExtractPoints.js 77 edge.startX = firstPoint.anchor[0];
84 var normalY = edge.endX - edge.startX;
105 var width = edge.endX - edge.startX;
146 edge.startX -= tile.xOffset;
176 outputString += x + ":" + Math.floor(edge.startX) + "," +
227 lineArray[y] = Array(offsetX + edge.startX, offsetY + edge.startY);
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
BaseLayerAndroid.cpp 202 float startX = startPoint.x();
210 backgroundRect.fLeft = origin.x() - startX;
231 ALOGV("repeatedQuadData: startX %f, startY %f , getWidth() %f, getHeight() %f,"
234 startX , startY , getWidth(), getHeight(), nbX , nbY,
238 // Adding startX and startY into the transform can handle the fixed right /
241 matrix.translate(repeatX ? -startX : 0, repeatY ? -startY : 0);
260 float startX = startPoint.x();
265 float dx = (j * getWidth()) - startX;
  /frameworks/base/core/tests/coretests/src/android/view/
VelocityTest.java 234 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps,
236 drag(vt, startX, endX, startY, endY, steps, startime, duration, new LinearInterpolator());
243 private void drag(VelocityTracker vt, int startX, int endX, int startY, int endY, int steps,
245 addMotionEvent(vt, startX, startY, startime, MotionEvent.ACTION_DOWN);
247 int distX = endX - startX;
251 int x = (int) (startX + distX * ii);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
FlingScroller.java 76 public void fling(int startX, int startY, int velocityX, int velocityY,
78 mStartX = startX;
  /external/replicaisland/src/com/replica/replicaisland/
AnimationPlayerActivity.java 88 float startX = 0.0f;
93 startX = 200 * metrics.density;
97 startX = -200 * metrics.density;
106 Animation gameOverAnim = new TranslateAnimation(startX, 0, 0, 0);
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;
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 703 float startX = getCenterXForColumn(lastCell.column);
713 if (startX < x) {
714 left = startX;
718 right = startX;
733 if (startX < oldX) {
734 left = startX;
738 right = startX;
755 startX = getCenterXForColumn(hitCell.column);
764 if (startX < oldX) {
765 left = startX;
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
ImageUtils.java 383 * @param startX The start horizontal position
389 String title, String subTitle, int startX, int startY, int width, int height) {
394 Color.WHITE, title, subTitle, startX, startY, width, height);
401 Color.BLACK, title, subTitle, startX, startY, width, height);
423 int textColor, String title, String subTitle, int startX, int startY, int width,
428 background.setBounds(startX + INSET, startHeight, startX + width - INSET,
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorSetTest.java 132 float startX = mActivity.mStartX;
134 ObjectAnimator xAnimator = ObjectAnimator.ofFloat(object, propertyX, startX, endX);
  /external/skia/gm/
bitmapscroll.cpp 98 void drawLabel(SkCanvas* canvas, const char *text, int startX, int startY,
103 path.moveTo(SkIntToScalar(startX), SkIntToScalar(startY));
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp 88 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer);
94 // Draw the glyph buffer now at the starting point returned in startX.
95 FloatPoint startPoint(startX, point.y());
  /external/webkit/Source/WebCore/platform/graphics/win/
FontWin.cpp 103 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer);
109 // Draw the glyph buffer now at the starting point returned in startX.
110 FloatPoint startPoint(startX, point.y());
  /frameworks/base/core/java/android/view/
IWindowManager.aidl 87 void overridePendingAppTransitionScaleUp(int startX, int startY, int startWidth,
89 void overridePendingAppTransitionThumb(in Bitmap srcThumb, int startX, int startY,

Completed in 696 milliseconds

1 2 3 4