HomeSort by relevance Sort by last modified time
    Searched defs:xPos (Results 1 - 17 of 17) sorted by null

  /external/skia/gm/
pathopsinverse.cpp 85 int xPos = 150;
90 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos));
95 xPos += 150;
optimizations.cpp 343 int xPos = 0, yPos = 0;
354 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos));
356 xPos += pre->width();
374 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos));
376 xPos += post->width();
379 if (xPos >= kWidth) {
381 xPos = 0;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupStepIndicatorView.java 53 final int xPos = (int)(getWidth() * mXRatio);
56 mIndicatorPath.moveTo(xPos, 0);
57 mIndicatorPath.lineTo(xPos + height, height);
58 mIndicatorPath.lineTo(xPos - height, height);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGParserUtilities.cpp 274 float xPos = 0.0f;
275 if (!parseNumber(ptr, end, xPos))
290 pointsList.append(FloatPoint(xPos, yPos));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFrameSet.cpp 136 LayoutUnit xPos = 0;
139 xPos += m_cols.m_sizes[c];
141 paintColumnBorder(paintInfo, pixelSnappedIntRect(LayoutRect(adjustedPaintOffset.x() + xPos, adjustedPaintOffset.y() + yPos, borderThickness, height())));
142 xPos += borderThickness;
498 int xPos = 0;
501 child->setLocation(IntPoint(xPos, yPos));
512 xPos += width + borderThickness;
RenderDeprecatedFlexibleBox.cpp 366 LayoutUnit xPos = borderLeft() + paddingLeft();
387 xPos = borderLeft() + paddingLeft();
449 childLayer->setStaticInlinePosition(xPos); // FIXME: Not right for regions.
480 xPos += child->marginLeft();
502 placeChild(child, LayoutPoint(xPos, childY));
504 xPos += child->width() + child->marginRight();
507 remainingSpace = borderLeft() + paddingLeft() + contentWidth() - xPos;
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
DimLayer.java 168 final float xPos, yPos;
172 xPos = mBounds.left;
182 xPos = -1 * dw / 6;
188 mDimSurface.setPosition(xPos, yPos);
  /external/webrtc/src/modules/audio_processing/aec/
aec_core_sse2.c 39 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1;
43 xPos -= NR_PART*(PART_LEN1);
48 const __m128 xfBuf_re = _mm_loadu_ps(&aec->xfBuf[0][xPos + j]);
49 const __m128 xfBuf_im = _mm_loadu_ps(&aec->xfBuf[1][xPos + j]);
67 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
69 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
134 int xPos = (i + aec->xfBufBlockPos)*(PART_LEN1);
138 xPos -= NR_PART * PART_LEN1
    [all...]
aec_core.c 248 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1;
252 xPos -= NR_PART*(PART_LEN1);
256 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
258 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
291 // int xPos = (i + aec->xfBufBlockPos)*(PART_LEN1);
295 // xPos -= NR_PART * PART_LEN1;
301 // aec->wfBuf[pos + j][0] += MulRe(aec->xfBuf[xPos + j][0],
302 // -aec->xfBuf[xPos + j][1]
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java 434 float xPos;
435 xPos = 0;
436 xPos += mSeparatorDrawable.getIntrinsicWidth();
437 while (xPos < mContentWidth && pStart + pSize < candSize) {
445 if (xPos + itemWidth < mContentWidth || 0 == pSize) {
446 xPos += itemWidth;
459 float marginExtra = (mContentWidth - xPos) / pSize / 2;
461 if (mContentWidth - xPos > lastItemWidth) {
500 float xPos = mPaddingLeft;
504 xPos += drawVerticalSeparator(canvas, xPos)
    [all...]
  /packages/wallpapers/NoiseField/src/com/android/noisefield/
NoiseFieldRS.java 146 float xPos = Float.parseFloat(values[0]);
151 mVertexColors.set_position(i, new Float3(xPos, yPos, 0.0f), false);
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamRS.java 161 float xPos = new Float(values[0]);
166 mVertexColors.set_position(i, new Float3(xPos, yPos, 0.0f), false);
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 627 int xPos = (col * (imageWidth + widthPadding)) - offsetX;
630 c.drawBitmap(image, xPos, yPos, paint);
GridViewSpecial.java 68 Bitmap b, int xPos, int yPos, int w, int h);
70 int xPos, int yPos, int w, int h);
672 int xPos = mSpec.mLeftEdgePadding;
678 mDrawAdapter.drawDecoration(canvas, image, xPos, yPos,
684 xPos = mSpec.mLeftEdgePadding;
688 xPos += mSpec.mCellWidth + mSpec.mCellSpacing;
701 int xPos = leftSpacing + (col * (mSpec.mCellWidth + spacing));
708 canvas.drawBitmap(mOutline[type], xPos, yTop, null);
933 private void drawEmptyBlock(Canvas canvas, int xPos, int yPos, int row) {
935 canvas.drawRect(xPos, yPos, xPos + mBlockWidth, yPos + mBlockHeight
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelection.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 786 milliseconds