HomeSort by relevance Sort by last modified time
    Searched refs:ty (Results 51 - 75 of 174) sorted by null

1 23 4 5 6 7

  /external/webkit/WebCore/rendering/
InlineBox.cpp 162 void InlineBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
173 renderer()->paint(info, tx, ty);
176 renderer()->paint(info, tx, ty);
178 renderer()->paint(info, tx, ty);
180 renderer()->paint(info, tx, ty);
182 renderer()->paint(info, tx, ty);
186 bool InlineBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty)
191 return renderer()->hitTest(request, result, IntPoint(x, y), tx, ty);
InlineFlowBox.h 87 virtual void paintBoxDecorations(RenderObject::PaintInfo&, int tx, int ty);
88 virtual void paintMask(RenderObject::PaintInfo&, int tx, int ty);
89 void paintFillLayers(const RenderObject::PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int w, int h, CompositeOperator = CompositeSourceOver);
90 void paintFillLayer(const RenderObject::PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int w, int h, CompositeOperator = CompositeSourceOver);
91 void paintBoxShadow(GraphicsContext*, RenderStyle*, ShadowStyle, int tx, int ty, int w, int h);
92 virtual void paintTextDecorations(RenderObject::PaintInfo&, int tx, int ty, bool paintedChildren = false);
93 virtual void paint(RenderObject::PaintInfo&, int tx, int ty);
94 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty);
RenderTableRow.h 56 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
61 virtual void paint(PaintInfo&, int tx, int ty);
RenderWidget.cpp 219 void RenderWidget::paint(PaintInfo& paintInfo, int tx, int ty)
221 if (!shouldPaint(paintInfo, tx, ty))
225 ty += y();
228 paintBoxDecorations(paintInfo, tx, ty);
231 paintMask(paintInfo, tx, ty);
240 paintCustomHighlight(tx - x(), ty - y(), style()->highlight(), true);
244 IntRect borderRect = IntRect(tx, ty, width(), height());
265 IntPoint paintLocation(tx + borderLeft() + paddingLeft(), ty + borderTop() + paddingTop());
269 // When painting widgets into compositing layers, tx and ty are relative to the enclosing compositing layer,
353 bool RenderWidget::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction action
    [all...]
RenderTableCell.cpp 643 void RenderTableCell::paint(PaintInfo& paintInfo, int tx, int ty)
650 ty += y();
652 if (ty - table()->outerBorderTop() < paintInfo.rect.bottom() + os &&
653 ty + height() + table()->outerBorderBottom() > paintInfo.rect.y() - os)
654 paintCollapsedBorder(paintInfo.context, tx, ty, width(), height());
658 RenderBlock::paint(paintInfo, tx, ty);
771 void RenderTableCell::paintCollapsedBorder(GraphicsContext* graphicsContext, int tx, int ty, int w, int h)
789 ty -= topWidth / 2;
806 borders.addBorder(topVal, BSTop, renderTop, tx, ty, tx + w, ty + topWidth, topStyle)
    [all...]
RenderTableSection.h 123 virtual void paint(PaintInfo&, int tx, int ty);
124 virtual void paintObject(PaintInfo&, int tx, int ty);
128 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderTextControlMultiLine.cpp 64 bool RenderTextControlMultiLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction)
66 if (!RenderTextControl::nodeAtPoint(request, result, x, y, tx, ty, hitTestAction))
73 hitInnerTextElement(result, x, y, tx, ty);
RenderFileUploadControl.h 59 virtual void paintObject(PaintInfo&, int tx, int ty);
RenderForeignObject.h 53 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderListItem.h 57 virtual void paint(PaintInfo&, int tx, int ty);
RenderVideo.h 67 virtual void paintReplaced(PaintInfo&, int tx, int ty);
RenderBoxModelObject.cpp 443 void RenderBoxModelObject::paintFillLayerExtended(const PaintInfo& paintInfo, const Color& c, const FillLayer* bgLayer, int tx, int ty, int w, int h, InlineFlowBox* box, CompositeOperator op, RenderObject* backgroundObject)
458 IntRect borderRect(tx, ty, w, h);
479 context->clip(toRenderBox(this)->overflowClipRect(tx, ty));
481 // Now adjust our tx, ty, w, h to reflect a scrolled content box with borders at the ends.
482 layer()->subtractScrolledContentOffset(tx, ty);
491 int y = ty + borderTop() + (includePadding ? paddingTop() : 0);
500 IntRect maskRect(tx, ty, w, h);
515 box->paint(info, tx - box->x(), ty - box->y());
519 paint(info, tx - x, ty - y);
575 IntRect rect(tx, ty, w, h)
    [all...]
RenderDataGrid.cpp 132 void RenderDataGrid::paintObject(PaintInfo& paintInfo, int tx, int ty)
138 RenderBlock::paintObject(paintInfo, tx, ty);
144 paintColumnHeaders(paintInfo, tx, ty);
147 void RenderDataGrid::paintColumnHeaders(PaintInfo& paintInfo, int tx, int ty)
161 columnRect.move(tx, ty);
163 paintColumnHeader(column, paintInfo, tx, ty);
RenderTable.cpp 484 void RenderTable::paint(PaintInfo& paintInfo, int tx, int ty)
487 ty += y();
492 if (ty + topVisibleOverflow() >= paintInfo.rect.bottom() + os || ty + bottomVisibleOverflow() <= paintInfo.rect.y() - os)
497 bool pushedClip = pushContentsClip(paintInfo, tx, ty);
498 paintObject(paintInfo, tx, ty);
500 popContentsClip(paintInfo, paintPhase, tx, ty);
503 void RenderTable::paintObject(PaintInfo& paintInfo, int tx, int ty)
507 paintBoxDecorations(paintInfo, tx, ty);
510 paintMask(paintInfo, tx, ty);
    [all...]
SVGInlineTextBox.cpp 294 bool SVGInlineTextBox::nodeAtPoint(const HitTestRequest&, HitTestResult& result, int x, int y, int tx, int ty)
300 renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty));
351 void SVGInlineTextBox::paintCharacters(RenderObject::PaintInfo& paintInfo, int tx, int ty, const SVGChar& svgChar, const UChar* chars, int length, SVGTextPaintInfo& textPaintInfo)
387 paintCustomHighlight(tx, ty, styleToUse->highlight());
391 paintCompositionBackground(paintInfo.context, tx, ty, styleToUse, font,
395 paintDocumentMarkers(paintInfo.context, tx, ty, styleToUse, font, true);
449 paintDocumentMarkers(paintInfo.context, tx, ty, styleToUse, font, false);
466 paintCompositionUnderline(paintInfo.context, tx, ty, underline);
544 void SVGInlineTextBox::paintDecoration(ETextDecoration decoration, GraphicsContext* context, int tx, int ty, int width, const SVGChar& svgChar, const SVGTextDecorationInfo& info)
560 ty += baseline
    [all...]
RenderBlock.cpp 3299 int ty = _ty + y(); local
    [all...]
  /external/webkit/WebCore/svg/
SVGTransform.idl 39 void setTranslate(in float tx, in float ty);
SVGTransform.h 59 void setTranslate(float tx, float ty);
SVGTransform.cpp 92 void SVGTransform::setTranslate(float tx, float ty)
98 m_matrix.translate(tx, ty);
  /bionic/libm/src/
s_fma.c 57 double c, cc, hx, hy, p, q, tx, ty; local
158 ty = ys - hy;
161 q = hx * ty + tx * hy;
163 cc = p - c + q + tx * ty;
s_fmal.c 52 long double c, cc, hx, hy, p, q, tx, ty; local
153 ty = ys - hy;
156 q = hx * ty + tx * hy;
158 cc = p - c + q + tx * ty;
  /external/webkit/WebKit/android/plugins/
ANPMatrixInterface.cpp 76 static void anp_preTranslate(ANPMatrix* matrix, float tx, float ty) {
77 matrix->preTranslate(SkFloatToScalar(tx), SkFloatToScalar(ty));
80 static void anp_postTranslate(ANPMatrix* matrix, float tx, float ty) {
81 matrix->postTranslate(SkFloatToScalar(tx), SkFloatToScalar(ty));
  /frameworks/base/services/surfaceflinger/
Transform.h 68 int ty() const;
72 void set(float tx, float ty);
  /external/openssl/crypto/rc4/
rc4_enc.c 74 register RC4_INT x,y,tx,ty; local
117 ty=d[y], \
119 d[x]=ty, \
120 (RC4_CHUNK)d[(tx+ty)&0xff]\
269 d[x]=ty=d[y]; \
271 (out) = d[(tx+ty)&0xff]^ (in);
  /external/skia/src/utils/
SkNinePatch.cpp 57 const SkScalar vy, const SkScalar ty,
62 texs->set(0, ty); texs++;
71 texs->set(tx, ty); texs++;
74 texs->set(SkIntToScalar(width), ty); texs++; local
200 const SkScalar ty = SkIntToScalar(yDivs[y]); local
204 vy += ty;
206 fillRow(verts, texs, vy, ty, bounds, xDivs, numXDivs,

Completed in 192 milliseconds

1 23 4 5 6 7