HomeSort by relevance Sort by last modified time
    Searched refs:ty (Results 126 - 150 of 344) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp 808 TransformationMatrix& TransformationMatrix::translate(double tx, double ty)
810 m_matrix[3][0] += tx * m_matrix[0][0] + ty * m_matrix[1][0];
811 m_matrix[3][1] += tx * m_matrix[0][1] + ty * m_matrix[1][1];
812 m_matrix[3][2] += tx * m_matrix[0][2] + ty * m_matrix[1][2];
813 m_matrix[3][3] += tx * m_matrix[0][3] + ty * m_matrix[1][3];
817 TransformationMatrix& TransformationMatrix::translate3d(double tx, double ty, double tz)
819 m_matrix[3][0] += tx * m_matrix[0][0] + ty * m_matrix[1][0] + tz * m_matrix[2][0];
820 m_matrix[3][1] += tx * m_matrix[0][1] + ty * m_matrix[1][1] + tz * m_matrix[2][1];
821 m_matrix[3][2] += tx * m_matrix[0][2] + ty * m_matrix[1][2] + tz * m_matrix[2][2];
822 m_matrix[3][3] += tx * m_matrix[0][3] + ty * m_matrix[1][3] + tz * m_matrix[2][3]
    [all...]
AffineTransform.cpp 212 AffineTransform& AffineTransform::translate(double tx, double ty)
216 m_transform[5] += ty;
220 m_transform[4] += tx * m_transform[0] + ty * m_transform[2];
221 m_transform[5] += tx * m_transform[1] + ty * m_transform[3];
  /external/llvm/test/Bindings/Ocaml/
executionengine.ml 107 let ty = intptr_type td in var
108 if ty != i32_type && ty != i64_type then bomb "target_data did not work";
  /external/opencv/cv/src/
cvsnakes.cpp 250 int tx, ty; local
256 ty = pt[n - 1].y - 2 * (pt[i].y + j) + pt[i + 1].y;
261 ty = pt[i - 1].y - 2 * (pt[i].y + j) + pt[0].y;
266 ty = pt[i - 1].y - 2 * (pt[i].y + j) + pt[i + 1].y;
269 (float) (tx * tx + ty * ty);
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.cpp     [all...]
RenderButton.cpp 178 IntRect RenderButton::controlClipRect(int tx, int ty) const
181 return IntRect(tx + borderLeft(), ty + borderTop(), width() - borderLeft() - borderRight(), height() - borderTop() - borderBottom());
RenderInline.cpp 463 void RenderInline::paint(PaintInfo& paintInfo, int tx, int ty)
465 m_lineBoxes.paint(this, paintInfo, tx, ty);
468 void RenderInline::absoluteRects(Vector<IntRect>& rects, int tx, int ty)
471 culledInlineAbsoluteRects(this, rects, IntSize(tx, ty));
474 rects.append(enclosingIntRect(FloatRect(tx + curr->x(), ty + curr->y(), curr->width(), curr->height())));
476 rects.append(IntRect(tx, ty, 0, 0));
483 ty - containingBlock()->y() + box->y());
485 continuation()->absoluteRects(rects, tx - containingBlock()->x(), ty - containingBlock()->y());
715 int x, int y, int tx, int ty, HitTestAction hitTestAction)
717 return m_lineBoxes.hitTest(this, request, result, x, y, tx, ty, hitTestAction)
    [all...]
RenderFileUploadControl.cpp 212 void RenderFileUploadControl::paintObject(PaintInfo& paintInfo, int tx, int ty)
220 IntRect clipRect(tx + borderLeft(), ty + borderTop(),
256 int iconY = ty + borderTop() + paddingTop() + (contentHeight() - iconHeight) / 2;
269 RenderBlock::paintObject(paintInfo, tx, ty);
RenderMenuList.h 73 virtual IntRect controlClipRect(int tx, int ty) const;
RenderTextControlSingleLine.cpp 222 void RenderTextControlSingleLine::paint(PaintInfo& paintInfo, int tx, int ty)
224 RenderTextControl::paint(paintInfo, tx, ty);
233 contentsRect.move(tx + x(), ty + y());
238 void RenderTextControlSingleLine::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty)
240 paintBoxDecorationsWithSize(paintInfo, tx, ty, width() - decorationWidthRight(), height());
243 void RenderTextControlSingleLine::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty)
247 rects.append(IntRect(tx, ty, w, height()));
335 bool RenderTextControlSingleLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction hitTestAction)
343 if (!RenderTextControl::nodeAtPoint(request, result, xPos, yPos, tx, ty, hitTestAction))
350 hitInnerTextElement(result, xPos, yPos, tx, ty);
    [all...]
RenderView.h 72 virtual void paint(PaintInfo&, int tx, int ty);
73 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
85 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
RootInlineBox.cpp 136 void RootInlineBox::paintEllipsisBox(PaintInfo& paintInfo, int tx, int ty, int lineTop, int lineBottom) const
140 ellipsisBox()->paint(paintInfo, tx, ty, lineTop, lineBottom);
160 void RootInlineBox::paintCustomHighlight(PaintInfo& paintInfo, int tx, int ty, const AtomicString& highlightType)
173 FloatRect rootRect(tx + x(), ty + selectionTop(), logicalWidth(), selectionHeight());
181 void RootInlineBox::paint(PaintInfo& paintInfo, int tx, int ty, int lineTop, int lineBottom)
183 InlineFlowBox::paint(paintInfo, tx, ty, lineTop, lineBottom);
184 paintEllipsisBox(paintInfo, tx, ty, lineTop, lineBottom);
188 paintCustomHighlight(paintInfo, tx, ty, styleToUse->highlight());
192 bool RootInlineBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, int lineTop, int lineBottom)
195 if (ellipsisBox()->nodeAtPoint(request, result, x, y, tx, ty, lineTop, lineBottom))
    [all...]
  /external/llvm/include/llvm/IR/
User.h 52 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps)
53 : Value(ty, vty), OperandList(OpList), NumOperands(NumOps) {}
  /external/webkit/Source/WebCore/svg/
SVGTransform.cpp 72 void SVGTransform::setTranslate(float tx, float ty)
78 m_matrix.translate(tx, ty);
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/glrenderer/
GLMock.java 135 float ty = -(top + bottom) / (top - bottom); local
141 tx, ty, tz, 1
  /external/skia/bench/
BitmapBench.cpp 110 int tx = -1, int ty = -1)
111 : INHERITED(param), fIsOpaque(isOpaque), fForceUpdate(forceUpdate), fTileX(tx), fTileY(ty) {
196 int tx = -1, int ty = -1, bool addScale = false,
198 : INHERITED(param, isOpaque, c, forceUpdate, bitmapVolatile, tx, ty)
  /external/skia/gm/
tilemodes.cpp 152 static SkShader* make_bm(SkShader::TileMode tx, SkShader::TileMode ty) {
155 return SkShader::CreateBitmapShader(bm, tx, ty);
158 static SkShader* make_grad(SkShader::TileMode tx, SkShader::TileMode ty) {
164 int index = (int)ty;
  /external/skia/legacy/src/views/
SkTouchGesture.cpp 80 float ty = fDirection.fY * dist; local
83 ty = (float)sk_float_round2int(ty);
85 matrix->setTranslate(tx, ty);
86 // printf("---- evaluate (%g %g)\n", tx, ty);
  /external/skia/src/views/
SkTouchGesture.cpp 80 float ty = fDirection.fY * dist; local
83 ty = (float)sk_float_round2int(ty);
85 matrix->setTranslate(SkFloatToScalar(tx), SkFloatToScalar(ty));
86 // printf("---- evaluate (%g %g)\n", tx, ty);
  /external/webkit/Source/WebCore/platform/graphics/win/
QTTrack.cpp 109 {X2Fix(t.tx), X2Fix(t.ty), fract1},
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGRoot.h 76 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
  /external/skia/legacy/src/utils/
SkLayer.cpp 145 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height()); local
146 matrix->preTranslate(tx, ty);
148 matrix->preTranslate(-tx, -ty);
  /external/skia/src/utils/
SkLayer.cpp 147 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height()); local
148 matrix->preTranslate(tx, ty);
150 matrix->preTranslate(-tx, -ty);
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp 504 int ty = y(); local
506 r.move(-tx, -ty);
508 gc->translate(static_cast<float>(tx), static_cast<float>(ty));
510 gc->translate(-static_cast<float>(tx), -static_cast<float>(ty));
524 int ty = y(); local
527 gc->drawRect(IntRect(tx, ty, width(), kBorderSize));
528 gc->drawRect(IntRect(tx, ty, kBorderSize, height()));
529 gc->drawRect(IntRect(tx, ty + height() - kBorderSize, width(), kBorderSize));
530 gc->drawRect(IntRect(tx + width() - kBorderSize, ty, kBorderSize, height()));
858 int ty = y() - scrollY() local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
Layer.cpp 130 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height()); local
131 matrix->preTranslate(tx, ty);
133 matrix->preTranslate(-tx, -ty);

Completed in 669 milliseconds

1 2 3 4 56 7 8 91011>>