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

1 2 3

  /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/webrtc/video_engine/test/auto_test/interface/
vie_autotest_windows.h 43 int ViECreateWindow(HWND &hwndMain, int xPos, int yPos, int width,
  /external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
TranslateUtil.java 52 float xPos = text.getPaddingLeft() + (sizePerChar * x);
55 TestTouchUtils.singleClickView(test.getInstrumentation(), text, (int) xPos, (int) yPos);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-201590.js 43 var xPos = ((xOffset) * gdpRatio) + this.ORIGIN.x * this.scale -
47 xPos = xPos - Math.round(((tileWidth) * gdpRatio)) +
50 x: Math.floor(xPos),
  /packages/apps/Gallery/src/com/android/camera/
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...]
ImageGallery.java 782 Bitmap b, int xPos, int yPos, int w, int h) {
800 mDstRect.set(xPos, yPos, xPos + w, yPos + h);
804 mDstRect.set(xPos, yPos, xPos + w, yPos + h);
814 int left = (w - width) / 2 + xPos;
837 canvas.drawRect(xPos, yPos, xPos + w, yPos + h, paint);
841 int left = (w - width) / 2 + xPos;
854 int xPos, int yPos, int w, int h)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core_sse2.c 37 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1;
41 xPos -= num_partitions * (PART_LEN1);
46 const __m128 xfBuf_re = _mm_loadu_ps(&aec->xfBuf[0][xPos + j]);
47 const __m128 xfBuf_im = _mm_loadu_ps(&aec->xfBuf[1][xPos + j]);
65 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j],
66 aec->xfBuf[1][xPos + j],
69 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j],
70 aec->xfBuf[1][xPos + j],
148 int xPos = (i + aec->xfBufBlockPos) * (PART_LEN1);
152 xPos -= num_partitions * PART_LEN1
    [all...]
aec_core_neon.c 39 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1;
44 xPos -= num_partitions * PART_LEN1;
50 const float32x4_t xfBuf_re = vld1q_f32(&aec->xfBuf[0][xPos + j]);
51 const float32x4_t xfBuf_im = vld1q_f32(&aec->xfBuf[1][xPos + j]);
68 fft[1] = MulRe(aec->xfBuf[0][xPos + PART_LEN],
69 -aec->xfBuf[1][xPos + PART_LEN],
aec_core_mips.c 327 int xPos = (i + aec->xfBufBlockPos) * PART_LEN1;
331 xPos -= aec->num_partitions * (PART_LEN1);
335 float *aRe = aec->xfBuf[0] + xPos;
336 float *aIm = aec->xfBuf[1] + xPos;
442 int xPos = (i + aec->xfBufBlockPos)*(PART_LEN1);
446 xPos -= aec->num_partitions * PART_LEN1;
450 float *aRe = aec->xfBuf[0] + xPos;
451 float *aIm = aec->xfBuf[1] + xPos;
    [all...]
  /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...]
  /external/chromium_org/third_party/skia/gm/
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;
pathopsinverse.cpp 88 int xPos = 150;
93 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos));
98 xPos += 150;
  /external/skia/gm/
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;
pathopsinverse.cpp 88 int xPos = 150;
93 canvas->translate(SkIntToScalar(xPos), SkIntToScalar(yPos));
98 xPos += 150;
  /external/pdfium/core/src/reflow/
reflowedpage.cpp 154 void CPDF_ReflowedPage::GetDisplayMatrix(CFX_AffineMatrix& matrix, FX_INT32 xPos, FX_INT32 yPos, FX_INT32 xSize, FX_INT32 ySize, FX_INT32 iRotate, const CFX_AffineMatrix* pPageMatrix)
165 x0 = xPos;
167 x1 = xPos;
169 x2 = xPos + xSize;
173 x0 = xPos;
175 x1 = xPos + xSize;
177 x2 = xPos;
181 x0 = xSize + xPos;
183 x1 = xSize + xPos ;
185 x2 = xPos;
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_win.cc 148 int ViEAutoTestWindowManager::ViECreateWindow(HWND &hwndMain, int xPos,
173 xPos, // horizontal position
191 ::SetWindowPos(hwndMain, HWND_TOP, xPos, yPos, width, height,
  /external/pdfium/core/include/reflow/
reflowengine.h 23 virtual void GetDisplayMatrix(CFX_AffineMatrix& matrix, FX_INT32 xPos, FX_INT32 yPos, FX_INT32 xSize, FX_INT32 ySize, FX_INT32 iRotate, const CFX_AffineMatrix* pPageMatrix) = 0;
  /frameworks/base/services/core/java/com/android/server/wm/
DimLayer.java 148 final float xPos, yPos;
152 xPos = mBounds.left;
162 xPos = -1 * dw / 6;
170 mDimSurface.setPosition(xPos, yPos);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
StretchesViewer.java 243 for (int xPos = 0; xPos < xLen; xPos++) {
244 Projection p = mProjection[yPos][xPos];
ImageViewer.java 650 for (int xPos = 0; xPos < xLen; xPos++) {
651 Chunk c = mChunks[yPos][xPos];
684 for (int xPos = 0; xPos < xLen; xPos++) {
685 Chunk c = mBadChunks[yPos][xPos];
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.h 87 virtual float width(unsigned from, unsigned len, const Font&, float xPos, TextDirection, HashSet<const SimpleFontData*>* fallbackFonts = 0, GlyphOverflow* = 0) const;
88 virtual float width(unsigned from, unsigned len, float xPos, TextDirection, bool firstLine = false, HashSet<const SimpleFontData*>* fallbackFonts = 0, GlyphOverflow* = 0) const;
180 float widthFromCache(const Font&, int start, int len, float xPos, TextDirection, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow*) const;
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;
507 int xPos = 0;
510 child->setLocation(IntPoint(xPos, yPos));
521 xPos += width + borderThickness;
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextRun.h 65 TextRun(const LChar* c, unsigned len, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
68 , m_xpos(xpos)
85 TextRun(const UChar* c, unsigned len, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
88 , m_xpos(xpos)
105 TextRun(const String& string, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
108 , m_xpos(xpos)
133 TextRun(const StringView& string, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
136 , m_xpos(xpos)
198 float xPos() const { return m_xpos; }
199 void setXPos(float xPos) { m_xpos = xPos;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
NinePatchedImage.java 669 for (int xPos = 0; xPos < xLen; xPos++) {
670 Chunk c = chunks[yPos][xPos];
764 for (int xPos = 0; xPos < lenX; xPos++) {
765 Chunk chunk = mPatchChunks[yPos][xPos];
769 yPos, xPos, chunk.toString()));
773 projections[yPos][xPos] = p
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 990 void CPDF_Page::GetDisplayMatrix(CFX_AffineMatrix& matrix, int xPos, int yPos,
1001 x0 = xPos;
1003 x1 = xPos;
1005 x2 = xPos + xSize;
1009 x0 = xPos;
1011 x1 = xPos + xSize;
1013 x2 = xPos;
1017 x0 = xPos + xSize;
1019 x1 = xPos + xSize;
1021 x2 = xPos;
    [all...]

Completed in 1569 milliseconds

1 2 3