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

  /external/webkit/WebCore/platform/graphics/
TextRun.h 36 TextRun(const UChar* c, int len, bool allowTabs = false, int xpos = 0, int padding = 0, bool rtl = false, bool directionalOverride = false,
40 , m_xpos(xpos)
55 TextRun(const String& s, bool allowTabs = false, int xpos = 0, int padding = 0, bool rtl = false, bool directionalOverride = false,
59 , m_xpos(xpos)
83 int xPos() const { return m_xpos; }
  /external/webkit/WebCore/rendering/
RenderFieldset.cpp 73 int xPos;
77 xPos = borderLeft() + paddingLeft();
80 xPos = (width() - legend->width()) / 2;
83 xPos = width() - paddingRight() - borderRight() - legend->width() - legend->marginRight();
88 xPos = width() - paddingRight() - borderRight() - legend->width();
91 xPos = (width() - legend->width()) / 2;
94 xPos = borderLeft() + paddingLeft() + legend->marginLeft();
99 legend->setLocation(xPos, max((b-h)/2, 0));
RenderFlexibleBox.cpp 337 int xPos = borderLeft() + paddingLeft();
360 xPos = borderLeft() + paddingLeft();
426 child->layer()->setStaticX(xPos);
427 else child->layer()->setStaticX(width() - xPos);
450 xPos += child->marginLeft();
472 placeChild(child, xPos, childY);
474 xPos += child->width() + child->marginRight();
479 remainingSpace = borderLeft() + paddingLeft() + contentWidth() - xPos;
644 int xPos = borderLeft() + paddingLeft();
647 xPos = width() - paddingRight() - borderRight()
    [all...]
RenderFrameSet.cpp 142 int xPos = 0;
145 xPos += m_cols.m_sizes[c];
147 paintColumnBorder(paintInfo, IntRect(tx + xPos, ty + yPos, borderThickness, height()));
148 xPos += borderThickness;
537 int xPos = 0;
546 child->setX(xPos);
567 xPos += child->width() + borderThickness;
572 maxWidth = max(xPos, maxWidth);
611 int xPos = 0;
614 child->setLocation(xPos, yPos)
    [all...]
InlineTextBox.cpp 339 int xPos = tx + m_x - leftOverflow;
341 if (xPos >= paintInfo.rect.right() || xPos + w <= paintInfo.rect.x())
    [all...]
RenderBoxModelObject.cpp 347 int xPos = (isBox() ? toRenderBox(this)->x() : 0);
354 xPos -= toRenderBox(offsetPar)->borderLeft();
357 xPos += relativePositionOffsetX();
362 xPos += toRenderBox(curr)->x();
366 xPos += toRenderBox(offsetPar)->x();
370 return xPos;
    [all...]
RenderBox.cpp 536 bool RenderBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action)
543 if (!child->hasLayer() && child->nodeAtPoint(request, result, xPos, yPos, tx, ty, action)) {
544 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
551 if (visibleToHitTesting() && action == HitTestForeground && IntRect(tx, ty, width(), height()).contains(xPos, yPos)) {
552 updateHitTestResult(result, IntPoint(xPos - tx, yPos - ty));
    [all...]
RenderBlock.cpp     [all...]
  /external/webkit/WebCore/svg/
SVGParserUtilities.cpp 173 float xPos = 0.0f;
174 if (!parseNumber(cur, end, xPos))
190 pointsList->appendItem(FloatPoint(xPos, yPos), ec);
  /external/webkit/WebKit/android/nav/
FindCanvas.cpp 174 const SkScalar xPos[], SkScalar /* y */) {
177 const SkPoint* temp = reinterpret_cast<const SkPoint*> (xPos);
210 const SkScalar* xPos = &position[index];
213 r.fLeft = xPos[0];
218 + xPos[lastIndex];
229 canvas->drawPosTextH(glyphs, count * sizeof(uint16_t), xPos, constY, paint);
261 const SkScalar xpos[], SkScalar constY,
263 findHelper(text, byteLength, paint, xpos, constY,
  /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/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/quake/quake/src/QW/client/
gl_vidnt.c 1023 int fwKeys, xPos, yPos, fActive, fMinimized, temp;
    [all...]
vid_win.c     [all...]
  /external/quake/quake/src/WinQuake/
gl_vidnt.cpp 1023 int fwKeys, xPos, yPos, fActive, fMinimized, temp;
    [all...]
vid_win.cpp     [all...]
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
GrassRS.java 69 public float xPos;
329 final int xpos = random(-mWidth, mWidth); local
334 blades.xPos = xpos;
344 blades.turbulencex = xpos * 0.006f;

Completed in 668 milliseconds