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

1 23 4 5 6 7 8 9

  /external/webkit/WebCore/rendering/
RenderBox.h 77 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
154 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
163 virtual void paint(PaintInfo&, int tx, int ty);
164 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
262 virtual IntRect overflowClipRect(int tx, int ty);
263 IntRect clipRect(int tx, int ty);
265 virtual IntRect controlClipRect(int /*tx*/, int /*ty*/) const { return IntRect(); }
266 bool pushContentsClip(PaintInfo&, int tx, int ty);
267 void popContentsClip(PaintInfo&, PaintPhase originalPhase, int tx, int ty);
269 virtual void paintObject(PaintInfo&, int /*tx*/, int /*ty*/) { ASSERT_NOT_REACHED();
    [all...]
InlineFlowBox.cpp 599 bool InlineFlowBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty)
602 overflowRect.move(tx, ty);
608 if ((curr->renderer()->isText() || !curr->boxModelObject()->hasSelfPaintingLayer()) && curr->nodeAtPoint(request, result, x, y, tx, ty)) {
609 renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty));
615 IntRect rect(tx + m_x, ty + m_y, m_width, height());
617 renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty)); // Don't add in m_x or m_y here, we want coords in the containing block's space.
624 void InlineFlowBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
628 overflowRect.move(tx, ty);
661 paintMask(paintInfo, tx, ty);
665 paintBoxDecorations(paintInfo, tx, ty)
    [all...]
RenderReplaced.cpp 95 void RenderReplaced::paint(PaintInfo& paintInfo, int tx, int ty)
97 if (!shouldPaint(paintInfo, tx, ty))
100 tx += x();
104 paintBoxDecorations(paintInfo, tx, ty);
107 paintMask(paintInfo, tx, ty);
112 paintOutline(paintInfo.context, tx, ty, width(), height(), style());
129 IntRect borderRect = IntRect(tx, ty, width(), height());
145 paintReplaced(paintInfo, tx, ty);
155 selectionPaintingRect.move(tx, ty);
160 bool RenderReplaced::shouldPaint(PaintInfo& paintInfo, int& tx, int& ty
    [all...]
RenderListBox.cpp 246 IntRect RenderListBox::itemBoundingBoxRect(int tx, int ty, int index)
248 return IntRect(tx + borderLeft() + paddingLeft(),
253 void RenderListBox::paintObject(PaintInfo& paintInfo, int tx, int ty)
263 paintItemForeground(paintInfo, tx, ty, index);
269 RenderBlock::paintObject(paintInfo, tx, ty);
272 paintScrollbar(paintInfo, tx, ty);
276 paintItemBackground(paintInfo, tx, ty, index);
282 void RenderListBox::paintScrollbar(PaintInfo& paintInfo, int tx, int ty)
285 IntRect scrollRect(tx + width() - borderRight() - m_vBar->width(),
294 void RenderListBox::paintItemForeground(PaintInfo& paintInfo, int tx, int ty, int listIndex
    [all...]
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))
224 tx += x();
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...]
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);
RenderTableCell.cpp 643 void RenderTableCell::paint(PaintInfo& paintInfo, int tx, int ty)
649 tx += x();
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)
788 tx -= leftWidth / 2;
806 borders.addBorder(topVal, BSTop, renderTop, tx, ty, tx + w, ty + topWidth, topStyle);
807 borders.addBorder(bottomVal, BSBottom, renderBottom, tx, ty + h - bottomWidth, tx + w, ty + h, bottomStyle)
    [all...]
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);
490 int x = tx + bLeft + (includePadding ? pLeft : 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...]
  /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);
  /external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java 168 SIPServerTransaction tx = (SIPServerTransaction) sipStack local
171 if (tx != null && !tx.passToListener()) {
177 // to the listener (tx == INVITE ST, terminated upon sending
181 && tx.isInviteTransaction() &&
182 ( tx.getLastResponse().getStatusCode()/100 == 2 ||
193 "transaction already exists! " + tx);
264 // Set the tx state to terminated so it is removed from the
287 SIPTransaction tx = eventWrapper.transaction; local
288 if (tx != null)
    [all...]
  /bionic/libm/src/
e_rem_pio2f.c 65 double tx[1],ty[2]; local
92 tx[0] = z;
93 n = __kernel_rem_pio2(tx,ty,e0,1,1,two_over_pi);
s_fma.c 57 double c, cc, hx, hy, p, q, tx, ty; local
153 tx = xs - hx;
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
148 tx = xs - hx;
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 67 int tx() const;
72 void set(float tx, float ty);

Completed in 350 milliseconds

1 23 4 5 6 7 8 9