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

1 2 34 5 6 7

  /external/webkit/WebCore/rendering/
RenderBox.cpp 305 void RenderBox::absoluteRects(Vector<IntRect>& rects, int tx, int ty)
307 rects.append(IntRect(tx, ty, width(), height()));
344 void RenderBox::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty)
347 rects.append(IntRect(tx, ty, width(), height()));
536 bool RenderBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction action)
539 ty += y();
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...]
RenderFrameSet.h 100 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
101 virtual void paint(PaintInfo&, int tx, int ty);
RenderTextControlSingleLine.h 61 virtual void paint(PaintInfo&, int tx, int ty);
64 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderImage.cpp 355 void RenderImage::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
381 context->drawRect(IntRect(tx + leftBorder + leftPad, ty + topBorder + topPad, cWidth, cHeight));
404 context->drawImage(image(), style()->colorSpace(), IntPoint(tx + imageX, ty + imageY));
412 int ay = ty + topBorder + topPad;
434 paintCustomHighlight(tx - x(), ty - y(), style()->highlight(), true);
438 IntRect rect(IntPoint(tx + leftBorder + leftPad, ty + topBorder + topPad), contentSize);
443 void RenderImage::paint(PaintInfo& paintInfo, int tx, int ty)
445 RenderReplaced::paint(paintInfo, tx, ty);
514 bool RenderImage::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction)
517 bool inside = RenderReplaced::nodeAtPoint(request, tempResult, x, y, tx, ty, hitTestAction)
    [all...]
RenderListMarker.h 52 virtual void paint(PaintInfo&, int tx, int ty);
RenderMenuList.h 67 virtual IntRect controlClipRect(int tx, int ty) const;
RenderPath.h 64 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
RenderSVGContainer.h 56 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
RenderSVGRoot.h 69 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderWidget.h 64 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderInline.cpp 406 void RenderInline::paint(PaintInfo& paintInfo, int tx, int ty)
408 m_lineBoxes.paint(this, paintInfo, tx, ty);
411 void RenderInline::absoluteRects(Vector<IntRect>& rects, int tx, int ty)
415 rects.append(IntRect(tx + curr->x(), ty + curr->y(), curr->width(), curr->height()));
417 rects.append(IntRect(tx, ty, 0, 0));
424 ty - containingBlock()->y() + box->y());
426 continuation()->absoluteRects(rects, tx - containingBlock()->x(), ty - containingBlock()->y());
496 int x, int y, int tx, int ty, HitTestAction hitTestAction)
498 return m_lineBoxes.hitTest(this, request, result, x, y, tx, ty, hitTestAction);
    [all...]
RenderTableSection.cpp     [all...]
RenderButton.cpp 180 IntRect RenderButton::controlClipRect(int tx, int ty) const
183 return IntRect(tx + borderLeft(), ty + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
RenderFileUploadControl.cpp 182 void RenderFileUploadControl::paintObject(PaintInfo& paintInfo, int tx, int ty)
189 IntRect clipRect(tx + borderLeft(), ty + borderTop(),
225 int iconY = ty + borderTop() + paddingTop() + (contentHeight() - iconHeight) / 2;
238 RenderBlock::paintObject(paintInfo, tx, ty);
SVGRootInlineBox.h 61 virtual void paint(RenderObject::PaintInfo&, int tx, int ty);
RenderView.h 66 virtual void paint(PaintInfo&, int tx, int ty);
67 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
86 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
TextControlInnerElements.cpp 47 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
53 bool RenderTextControlInnerBlock::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction)
61 return RenderBlock::nodeAtPoint(request, result, x, y, tx, ty, placeholderIsVisible ? HitTestBlockBackground : hitTestAction);
  /external/webkit/WebCore/platform/graphics/transforms/
AffineTransform.cpp 204 AffineTransform& AffineTransform::translate(double tx, double ty)
208 m_transform[5] += ty;
212 m_transform[4] += tx * m_transform[0] + ty * m_transform[2];
213 m_transform[5] += tx * m_transform[1] + ty * m_transform[3];
218 AffineTransform& AffineTransform::translateRight(double tx, double ty)
221 m_transform[5] += ty;
TransformationMatrix.cpp 795 TransformationMatrix& TransformationMatrix::translate(double tx, double ty)
797 m_matrix[3][0] += tx * m_matrix[0][0] + ty * m_matrix[1][0];
798 m_matrix[3][1] += tx * m_matrix[0][1] + ty * m_matrix[1][1];
799 m_matrix[3][2] += tx * m_matrix[0][2] + ty * m_matrix[1][2];
800 m_matrix[3][3] += tx * m_matrix[0][3] + ty * m_matrix[1][3];
804 TransformationMatrix& TransformationMatrix::translate3d(double tx, double ty, double tz)
806 m_matrix[3][0] += tx * m_matrix[0][0] + ty * m_matrix[1][0] + tz * m_matrix[2][0];
807 m_matrix[3][1] += tx * m_matrix[0][1] + ty * m_matrix[1][1] + tz * m_matrix[2][1];
808 m_matrix[3][2] += tx * m_matrix[0][2] + ty * m_matrix[1][2] + tz * m_matrix[2][2];
809 m_matrix[3][3] += tx * m_matrix[0][3] + ty * m_matrix[1][3] + tz * m_matrix[2][3]
    [all...]
AffineTransform.h 102 AffineTransform& translate(double tx, double ty);
103 AffineTransform& translateRight(double tx, double ty);
TransformationMatrix.h 225 TransformationMatrix& translate(double tx, double ty);
226 TransformationMatrix& translate3d(double tx, double ty, double tz);
229 TransformationMatrix& translateRight(double tx, double ty);
230 TransformationMatrix& translateRight3d(double tx, double ty, double tz);
  /cts/tools/annotation-helper/src/spechelper/
MethodSelector.java 167 ITypeBinding ty = targetClassE.resolveTypeBinding();
168 if (ty == null) {
171 ITypeBinding[] classTypes = ty.getTypeArguments();
  /external/skia/src/utils/
SkLayer.cpp 138 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height()); local
139 matrix->preTranslate(tx, ty);
141 matrix->preTranslate(-tx, -ty);
  /external/webkit/WebCore/platform/chromium/
PopupMenuChromium.cpp 439 int ty = y(); local
441 r.move(-tx, -ty);
443 gc->translate(static_cast<float>(tx), static_cast<float>(ty));
445 gc->translate(-static_cast<float>(tx), -static_cast<float>(ty));
459 int ty = y(); local
462 gc->drawRect(IntRect(tx, ty, width(), kBorderSize));
463 gc->drawRect(IntRect(tx, ty, kBorderSize, height()));
464 gc->drawRect(IntRect(tx, ty + height() - kBorderSize, width(), kBorderSize));
465 gc->drawRect(IntRect(tx + width() - kBorderSize, ty, kBorderSize, height()));
764 int ty = y() - scrollY() local
    [all...]
  /frameworks/base/libs/rs/
rsType.cpp 92 uint32_t ty = mDimY; local
97 mLODs[lod].mY = ty;
100 offset += tx * rsMax(ty, 1u) * rsMax(tz, 1u) * mElement->getSizeBytes();
102 if (ty > 1) ty >>= 1;

Completed in 349 milliseconds

1 2 34 5 6 7