Searched defs:tx (Results 1 - 25 of 120) sorted by relevance

12345

/external/webkit/Source/WebCore/rendering/
H A DRenderHTMLCanvas.cpp64 void RenderHTMLCanvas::paintReplaced(PaintInfo& paintInfo, int tx, int ty) argument
67 rect.move(tx, ty);
H A DRenderReplica.cpp63 void RenderReplica::paint(PaintInfo& paintInfo, int tx, int ty) argument
68 tx += x();
79 paintMask(paintInfo, tx, ty);
H A DEllipsisBox.cpp32 void EllipsisBox::paint(PaintInfo& paintInfo, int tx, int ty, int lineTop, int lineBottom) argument
47 paintSelection(context, tx, ty, style, style->font());
56 context->drawText(style->font(), TextRun(str.characters(), str.length(), false, 0, 0, TextRun::AllowTrailingExpansion, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->fontMetrics().ascent()));
67 tx += m_x + m_logicalWidth - m_markupBox->x();
69 m_markupBox->paint(paintInfo, tx, ty, lineTop, lineBottom);
73 IntRect EllipsisBox::selectionRect(int tx, int ty) argument
78 IntPoint(m_x + tx, m_y + ty + root()->selectionTop()), root()->selectionHeight()));
81 void EllipsisBox::paintSelection(GraphicsContext* context, int tx, int ty, RenderStyle* style, const Font& font) argument
96 context->clip(IntRect(m_x + tx, y + ty, m_logicalWidth, h));
98 IntPoint(m_x + tx, m_
102 nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, int lineTop, int lineBottom) argument
[all...]
H A DRenderDetailsMarker.cpp121 void RenderDetailsMarker::paint(PaintInfo& paintInfo, int tx, int ty) argument
124 RenderBlock::paint(paintInfo, tx, ty);
128 IntPoint boxOrigin(tx + x(), ty + y());
H A DRenderFieldset.cpp131 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty) argument
140 return RenderBlock::paintBoxDecorations(paintInfo, tx, ty);
152 tx += xOff;
155 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Normal);
157 paintFillLayers(paintInfo, style()->visitedDependentColor(CSSPropertyBackgroundColor), style()->backgroundLayers(), tx, ty, w, h);
158 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Inset);
173 graphicsContext->clipOut(IntRect(tx + legend->x(), clipTop, legend->width(), clipHeight));
175 int clipLeft = tx;
180 paintBorder(paintInfo.context, tx, ty, w, h, style(), true, true);
185 void RenderFieldset::paintMask(PaintInfo& paintInfo, int tx, in argument
[all...]
H A DRenderButton.cpp178 IntRect RenderButton::controlClipRect(int tx, int ty) const argument
181 return IntRect(tx + borderLeft(), ty + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
H A DRenderScrollbarPart.cpp162 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, int tx, int ty, const IntRect& rect) argument
165 setLocation(rect.x() - tx, rect.y() - ty);
174 paint(paintInfo, tx, ty);
176 paint(paintInfo, tx, ty);
178 paint(paintInfo, tx, ty);
180 paint(paintInfo, tx, ty);
182 paint(paintInfo, tx, ty);
H A DRenderTableRow.cpp190 bool RenderTableRow::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction action) argument
200 IntPoint cellPoint = flipForWritingMode(toRenderTableCell(child), IntPoint(tx, ty), ParentToChildFlippingAdjustment);
211 void RenderTableRow::paint(PaintInfo& paintInfo, int tx, int ty) argument
221 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, this);
224 child->paint(paintInfo, tx, ty);
H A DRenderTextControlMultiLine.cpp63 bool RenderTextControlMultiLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) argument
65 if (!RenderTextControl::nodeAtPoint(request, result, x, y, tx, ty, hitTestAction))
69 hitInnerTextElement(result, x, y, tx, ty);
H A DRenderVideo.cpp187 void RenderVideo::paintReplaced(PaintInfo& paintInfo, int tx, int ty) argument
201 rect.move(tx, ty);
/external/dropbear/libtommath/
H A Dbn_fast_s_mp_mul_digs.c53 int tx, ty; local
59 tx = ix - ty;
62 tmpx = a->dp + tx;
66 while (tx++ < a->used && ty-- >= 0) { ... }
68 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_mul_high_digs.c45 int tx, ty, iy; local
50 tx = ix - ty;
53 tmpx = a->dp + tx;
57 while (tx++ < a->used && ty-- >= 0) { ... }
59 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_sqr.c22 * (ty-tx) so that it never happens. You double all those
45 int tx, ty, iy; local
54 tx = ix - ty;
57 tmpx = a->dp + tx;
61 while (tx++ < a->used && ty-- >= 0) { ... }
63 iy = MIN(a->used-tx, ty+1);
65 /* now for squaring tx can never equal ty
69 iy = MIN(iy, (ty-tx+1)>>1);
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLBlock.cpp78 void RenderMathMLBlock::paint(PaintInfo& info, int tx, int ty) argument
80 RenderBlock::paint(info, tx, ty);
85 tx += x();
94 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx + offsetWidth(), ty));
95 info.context->drawLine(IntPoint(tx + offsetWidth(), ty), IntPoint(tx + offsetWidth(), ty + offsetHeight()));
96 info.context->drawLine(IntPoint(tx, ty + offsetHeight()), IntPoint(tx + offsetWidth(), ty + offsetHeight()));
97 info.context->drawLine(IntPoint(tx, t
[all...]
H A DRenderMathMLFraction.cpp134 void RenderMathMLFraction::paint(PaintInfo& info, int tx, int ty) argument
136 RenderMathMLBlock::paint(info, tx, ty);
156 tx += x();
165 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx + offsetWidth(), ty));
H A DRenderMathMLSquareRoot.cpp69 void RenderMathMLSquareRoot::paint(PaintInfo& info, int tx, int ty) argument
71 RenderMathMLBlock::paint(info, tx, ty);
76 tx += x();
112 FloatPoint topStart(tx + frontWidth - topStartShift, ty);
113 FloatPoint bottomLeft(tx + frontWidth * gRadicalBottomPointXPos , ty + maxHeight + gRadicalBasePad);
114 FloatPoint topLeft(tx + frontWidth * gRadicalTopLeftPointXPos , ty + gRadicalTopLeftPointYPos * maxHeight);
115 FloatPoint leftEnd(tx , topLeft.y() + gRadicalLeftEndYShift * style()->fontSize());
/external/fdlibm/
H A De_rem_pio2.c91 double tx[3]; local
166 tx[i] = (double)((int)(z));
167 z = (z-tx[i])*two24;
169 tx[2] = z;
171 while(tx[nx-1]==zero) nx--; /* skip zero term */
172 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
/external/openssl/crypto/rc4/
H A Drc4_enc.c74 register RC4_INT x,y,tx,ty; local
115 tx=d[x], \
116 y=(tx+y)&0xff, \
118 d[y]=tx, \
120 (RC4_CHUNK)d[(tx+ty)&0xff]\
267 tx=d[x]; \
268 y=(tx+y)&0xff; \
270 d[y]=tx; \
271 (out) = d[(tx+ty)&0xff]^ (in);
/external/skia/src/gpu/
H A DGrClip.cpp30 GrClip::GrClip(GrClipIterator* iter, GrScalar tx, GrScalar ty, argument
32 this->setFromIterator(iter, tx, ty, bounds);
86 void GrClip::setFromIterator(GrClipIterator* iter, GrScalar tx, GrScalar ty, argument
105 if (tx || ty) {
106 e.fRect.offset(tx, ty);
126 if (tx || ty) {
127 e.fPath.offset(tx, ty);
H A DFlingState.cpp79 float tx = fDirection.fX * dist; local
82 tx = sk_float_round2int(tx);
85 matrix->setTranslate(tx, ty);
86 // printf("---- evaluate (%g %g)\n", tx, ty);
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DTranslateTransformOperation.h35 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, OperationType type) argument
37 return adoptRef(new TranslateTransformOperation(tx, ty, Length(0, Fixed), type));
40 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, const Length& tz, OperationType type) argument
42 return adoptRef(new TranslateTransformOperation(tx, ty, tz, type));
75 TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType type) argument
76 : m_x(tx)
/external/webkit/Source/WebCore/svg/
H A DSVGTransform.cpp72 void SVGTransform::setTranslate(float tx, float ty) argument
78 m_matrix.translate(tx, ty);
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_proto_util.cc146 std::string tx, rx; local
147 msg.SerializeToString(&tx);
151 tx, &rx, &http_response
/external/skia/src/utils/
H A DSkLayer.cpp144 SkScalar tx = SkScalarMul(m_anchorPoint.fX, m_size.width()); local
146 matrix->preTranslate(tx, ty);
148 matrix->preTranslate(-tx, -ty);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayer.cpp129 SkScalar tx = SkScalarMul(m_anchorPoint.fX, m_size.width()); local
131 matrix->preTranslate(tx, ty);
133 matrix->preTranslate(-tx, -ty);

Completed in 4568 milliseconds

12345