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

12 3 4 5 6 7

  /external/webkit/WebCore/rendering/
RenderScrollbarPart.h 48 void paintIntoRect(GraphicsContext*, int tx, int ty, const IntRect&);
RenderSVGImage.h 57 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
59 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
69 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
SVGInlineTextBox.h 64 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty);
68 void paintCharacters(RenderObject::PaintInfo&, int tx, int ty, const SVGChar&, const UChar* chars, int length, SVGTextPaintInfo&);
74 void paintDecoration(ETextDecoration, GraphicsContext*, int tx, int ty, int width, const SVGChar&, const SVGTextDecorationInfo&);
RenderBoxModelObject.h 90 void paintBorder(GraphicsContext*, int tx, int ty, int w, int h, const RenderStyle*, bool begin = true, bool end = true);
91 bool paintNinePieceImage(GraphicsContext*, int tx, int ty, int w, int h, const RenderStyle*, const NinePieceImage&, CompositeOperator = CompositeSourceOver);
92 void paintBoxShadow(GraphicsContext*, int tx, int ty, int w, int h, const RenderStyle*, ShadowStyle, bool begin = true, bool end = true);
93 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, int height, InlineFlowBox* = 0, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
104 void calculateBackgroundImageGeometry(const FillLayer*, int tx, int ty, int w, int h, IntRect& destRect, IntPoint& phase, IntSize& tileSize);
RootInlineBox.h 94 void paintEllipsisBox(RenderObject::PaintInfo&, int tx, int ty) const;
95 bool hitTestEllipsisBox(HitTestResult&, int x, int y, int tx, int ty, HitTestAction, bool);
101 void paintCustomHighlight(RenderObject::PaintInfo&, int tx, int ty, const AtomicString& highlightType);
104 virtual void paint(RenderObject::PaintInfo&, int tx, int ty);
115 int tx, int ty, const RenderObject::PaintInfo*);
RenderScrollbarPart.cpp 156 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, int tx, int ty, const IntRect& rect)
159 setLocation(rect.x() - tx, rect.y() - ty);
168 paint(paintInfo, tx, ty);
170 paint(paintInfo, tx, ty);
172 paint(paintInfo, tx, ty);
174 paint(paintInfo, tx, ty);
176 paint(paintInfo, tx, ty);
RenderReplaced.cpp 95 void RenderReplaced::paint(PaintInfo& paintInfo, int tx, int ty)
97 if (!shouldPaint(paintInfo, tx, ty))
101 ty += y();
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...]
RenderInline.h 44 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
68 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
69 void paintOutline(GraphicsContext*, int tx, int ty);
94 virtual void paint(PaintInfo&, int tx, int ty);
96 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
147 void paintOutlineForLine(GraphicsContext*, int tx, int ty, const IntRect& prevLine, const IntRect& thisLine, const IntRect& nextLine);
RenderTable.h 161 virtual void paint(PaintInfo&, int tx, int ty);
162 virtual void paintObject(PaintInfo&, int tx, int ty);
163 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
164 virtual void paintMask(PaintInfo&, int tx, int ty);
167 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int xPos, int yPos, int tx, int ty, HitTestAction);
178 virtual IntRect overflowClipRect(int tx, int ty);
RenderTableRow.cpp 164 bool RenderTableRow::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction action)
173 if (child->isTableCell() && !toRenderBox(child)->hasSelfPaintingLayer() && child->nodeAtPoint(request, result, x, y, tx, ty, action)) {
174 updateHitTestResult(result, IntPoint(x - tx, y - ty));
182 void RenderTableRow::paint(PaintInfo& paintInfo, int tx, int ty)
192 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, this);
195 child->paint(paintInfo, tx, ty);
InlineTextBox.cpp 106 IntRect InlineTextBox::selectionRect(int tx, int ty, int startPos, int endPos)
120 IntPoint(tx + m_x, ty + selTop), selHeight, sPos, ePos));
263 bool InlineTextBox::nodeAtPoint(const HitTestRequest&, HitTestResult& result, int x, int y, int tx, int ty)
268 IntRect rect(tx + m_x, ty + m_y, m_width, height());
270 renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty));
327 void InlineTextBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
387 paintCustomHighlight(tx, ty, styleToUse->highlight());
391 paintCompositionBackground(context, tx, ty, styleToUse, font,
395 paintDocumentMarkers(context, tx, ty, styleToUse, font, true);
398 paintSelection(context, tx, ty, styleToUse, font)
    [all...]
RenderImage.h 62 virtual void paint(PaintInfo&, int tx, int ty);
75 virtual void paintReplaced(PaintInfo&, int tx, int ty);
80 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderTextControl.h 71 void hitInnerTextElement(HitTestResult&, int x, int y, int tx, int ty);
95 virtual IntRect controlClipRect(int tx, int ty) const;
102 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
RenderLineBoxList.h 67 bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction) const;
RenderSVGInlineText.h 42 virtual void absoluteRects(Vector<IntRect>& rects, int tx, int ty);
RenderSVGModelObject.h 60 virtual void absoluteRects(Vector<IntRect>& rects, int tx, int ty);
RenderTableCell.h 90 virtual void paint(PaintInfo&, int tx, int ty);
92 void paintBackgroundsBehindCell(PaintInfo&, int tx, int ty, RenderObject* backgroundObject);
126 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
127 virtual void paintMask(PaintInfo&, int tx, int ty);
RenderTextControlMultiLine.h 41 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RootInlineBox.cpp 118 void RootInlineBox::paintEllipsisBox(RenderObject::PaintInfo& paintInfo, int tx, int ty) const
122 ellipsisBox()->paint(paintInfo, tx, ty);
143 void RootInlineBox::paintCustomHighlight(RenderObject::PaintInfo& paintInfo, int tx, int ty, const AtomicString& highlightType)
156 FloatRect rootRect(tx + x(), ty + selectionTop(), width(), selectionHeight());
164 void RootInlineBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
166 InlineFlowBox::paint(paintInfo, tx, ty);
167 paintEllipsisBox(paintInfo, tx, ty);
171 paintCustomHighlight(paintInfo, tx, ty, styleToUse->highlight());
175 bool RootInlineBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty)
178 if (ellipsisBox()->nodeAtPoint(request, result, x, y, tx, ty)) {
    [all...]
RenderBlock.h 117 int blockX, int blockY, int tx, int ty, const PaintInfo*);
119 int blockX, int blockY, int tx, int ty, const PaintInfo*);
171 virtual void paint(PaintInfo&, int tx, int ty);
172 virtual void paintObject(PaintInfo&, int tx, int ty);
177 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
277 void paintFloats(PaintInfo&, int tx, int ty, bool preservePhase = false);
278 void paintContents(PaintInfo&, int tx, int ty);
279 void paintColumnContents(PaintInfo&, int tx, int ty, bool paintFloats = false);
280 void paintColumnRules(PaintInfo&, int tx, int ty);
281 void paintChildren(PaintInfo&, int tx, int ty);
    [all...]
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...]
RenderListBox.cpp 246 IntRect RenderListBox::itemBoundingBoxRect(int tx, int ty, int index)
249 ty + borderTop() + paddingTop() + itemHeight() * (index - m_indexOffset),
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)
286 ty + borderTop(),
294 void RenderListBox::paintItemForeground(PaintInfo& paintInfo, int tx, int ty, int listIndex
    [all...]
  /bionic/libm/src/
e_rem_pio2f.c 65 double tx[1],ty[2]; local
93 n = __kernel_rem_pio2(tx,ty,e0,1,1,two_over_pi);
94 y[0] = ty[0];
95 y[1] = ty[0] - y[0];
  /external/webkit/WebCore/mathml/
RenderMathMLBlock.h 51 virtual void paint(PaintInfo&, int tx, int ty);

Completed in 448 milliseconds

12 3 4 5 6 7