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

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFraction.cpp 134 void RenderMathMLFraction::paint(PaintInfo& info, int tx, int ty)
136 RenderMathMLBlock::paint(info, tx, ty);
157 ty += y() + verticalOffset;
165 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx + offsetWidth(), ty));
  /frameworks/base/graphics/java/android/renderscript/
AllocationAdapter.java 106 int ty = mAdaptedAllocation.mType.getY(); local
110 if ((tx==1) && (ty == 1) && (tz == 1)) {
115 if (ty > 1) ty >>= 1;
120 mCurrentDimY = ty;
  /external/webkit/Source/WebCore/rendering/
RenderWidget.cpp 253 void RenderWidget::paint(PaintInfo& paintInfo, int tx, int ty)
255 if (!shouldPaint(paintInfo, tx, ty))
259 ty += y();
262 paintBoxDecorations(paintInfo, tx, ty);
265 paintMask(paintInfo, tx, ty);
274 paintCustomHighlight(tx - x(), ty - y(), style()->highlight(), true);
278 IntRect borderRect = IntRect(tx, ty, width(), height());
295 IntPoint paintLocation(tx + borderLeft() + paddingLeft(), ty + borderTop() + paddingTop());
299 // When painting widgets into compositing layers, tx and ty are relative to the enclosing compositing layer,
397 bool RenderWidget::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction action
    [all...]
RenderReplaced.cpp 105 void RenderReplaced::paint(PaintInfo& paintInfo, int tx, int ty)
107 if (!shouldPaint(paintInfo, tx, ty))
111 ty += y();
114 paintBoxDecorations(paintInfo, tx, ty);
117 paintMask(paintInfo, tx, ty);
122 paintOutline(paintInfo.context, tx, ty, width(), height());
139 IntRect borderRect = IntRect(tx, ty, width(), height());
151 paintReplaced(paintInfo, tx, ty);
161 selectionPaintingRect.move(tx, ty);
166 bool RenderReplaced::shouldPaint(PaintInfo& paintInfo, int& tx, int& ty)
    [all...]
RenderEmbeddedObject.cpp 138 void RenderEmbeddedObject::paint(PaintInfo& paintInfo, int tx, int ty)
141 RenderReplaced::paint(paintInfo, tx, ty);
145 RenderPart::paint(paintInfo, tx, ty);
148 void RenderEmbeddedObject::paintReplaced(PaintInfo& paintInfo, int tx, int ty)
166 if (!getReplacementTextGeometry(tx, ty, contentRect, path, replacementTextRect, font, run, textWidth))
184 bool RenderEmbeddedObject::getReplacementTextGeometry(int tx, int ty, FloatRect& contentRect, Path& path, FloatRect& replacementTextRect, Font& font, TextRun& run, float& textWidth)
187 contentRect.move(tx, ty);
RenderTextControlMultiLine.cpp 63 bool RenderTextControlMultiLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction)
65 if (!RenderTextControl::nodeAtPoint(request, result, x, y, tx, ty, hitTestAction))
69 hitInnerTextElement(result, x, y, tx, ty);
RenderListBox.cpp 251 IntRect RenderListBox::itemBoundingBoxRect(int tx, int ty, int index)
254 ty + borderTop() + paddingTop() + itemHeight() * (index - m_indexOffset),
258 void RenderListBox::paintObject(PaintInfo& paintInfo, int tx, int ty)
268 paintItemForeground(paintInfo, tx, ty, index);
274 RenderBlock::paintObject(paintInfo, tx, ty);
281 paintScrollbar(paintInfo, tx, ty);
285 paintScrollbar(paintInfo, tx, ty);
291 paintItemBackground(paintInfo, tx, ty, index);
301 void RenderListBox::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty)
304 return RenderBlock::addFocusRingRects(rects, tx, ty);
    [all...]
RenderEmbeddedObject.h 71 bool getReplacementTextGeometry(int tx, int ty, FloatRect& contentRect, Path&, FloatRect& replacementTextRect, Font&, TextRun&, float& textWidth);
RenderListItem.h 60 virtual void paint(PaintInfo&, int tx, int ty);
RenderTableCell.h 97 virtual void paint(PaintInfo&, int tx, int ty);
99 void paintBackgroundsBehindCell(PaintInfo&, int tx, int ty, RenderObject* backgroundObject);
145 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
146 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);
RenderVideo.h 69 virtual void paintReplaced(PaintInfo&, int tx, int ty);
RootInlineBox.h 86 void paintEllipsisBox(PaintInfo&, int tx, int ty, int lineTop, int lineBottom) const;
95 void paintCustomHighlight(PaintInfo&, int tx, int ty, const AtomicString& highlightType);
98 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
99 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, int lineTop, int lineBottom);
  /external/valgrind/main/VEX/
test_main.c 308 sz = sizeofIRType(data->Iex.LDle.ty);
505 static IRType shadowType ( IRType ty );
648 static IRType shadowType ( IRType ty )
650 switch (ty) {
655 case Ity_I64: return ty;
659 default: ppIRType(ty);
666 static IRExpr* definedOfType ( IRType ty ) {
667 switch (ty) {
704 static IRAtom* assignNew ( MCEnv* mce, IRType ty, IRExpr* e ) {
705 IRTemp t = newIRTemp(mce->bb->tyenv, ty);
936 IRType ty; local
1019 IRType ty; local
1133 IRType ty; local
1164 IRType ty, tyS; local
1216 IRType ty = descr->elemTy; local
1301 IRType ty; local
2094 IRType ty; local
2174 IRType ty, tyH; local
2208 IRType ty, tyAddr; local
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
ParticleDepositionHeightMap.java 131 int tx, ty; local
202 ty = (sy + dy[(jj + m) % 8]) % (size);
206 if (tempBuffer[tx][ty] + 1.0f < tempBuffer[sx][sy]) {
207 tempBuffer[tx][ty] += 1.0f;
210 sy = ty;
245 ty = maxy;
249 for (y = sy; y <= ty; y++) {
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 106 bool isImplicitStrong(QualType ty) {
107 if (isa<AttributedType>(ty.getTypePtr()))
109 return ty.getLocalQualifiers().getObjCLifetime() == Qualifiers::OCL_Strong;
  /frameworks/compile/libbcc/lib/AndroidBitcode/ARM/
ARMABCExpandVAArg.cpp 43 llvm::Type *ty = pty->getContainedType(0); local
55 uint64_t ty_align = dl->getABITypeAlignment(ty);
70 uint64_t offset = llvm::RoundUpToAlignment(dl->getTypeSizeInBits(ty)/8, 4);
  /frameworks/compile/libbcc/lib/AndroidBitcode/Mips/
MipsABCExpandVAArg.cpp 43 llvm::Type *ty = pty->getContainedType(0); local
53 int64_t type_align = dl->getABITypeAlignment(ty);
72 llvm::RoundUpToAlignment(dl->getTypeSizeInBits(ty) / 8, type_align);
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c 454 static IRTemp newTemp ( IRType ty )
456 vassert(isPlausibleIRType(ty));
457 return newIRTemp( irsb->tyenv, ty );
575 static IRExpr* loadBE ( IRType ty, IRExpr* addr )
577 return IRExpr_Load(Iend_BE, ty, addr);
897 static IROp mkSzOp ( IRType ty, IROp op8 )
900 vassert(ty == Ity_I8 || ty == Ity_I16 ||
901 ty == Ity_I32 || ty == Ity_I64)
1050 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
1058 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
1447 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
1456 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
1465 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
1485 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
1498 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
2453 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
2616 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
2678 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
3003 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
3640 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
3758 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
4134 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
4269 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
4517 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
4774 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
4959 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
5012 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
5063 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
5103 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
5200 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
5275 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
5666 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
5716 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
5768 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
5819 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
6028 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
6297 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
6402 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
6649 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
6945 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
7084 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
8303 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
13996 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
14086 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
14288 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
14420 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
16485 IRType ty = mode64 ? Ity_I64 : Ity_I32; local
17736 IRType ty; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
TransformationMatrixCG.cpp 44 setF(t.ty);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGForeignObject.h 53 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderSVGModelObject.h 58 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
  /external/webkit/Source/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));
  /external/skia/src/gpu/
GrPathUtils.h 87 float ty = fM[5]; local
92 uv->fY = ky * xy->fX + sy * xy->fY + ty;
  /external/webkit/Source/WebCore/svg/
SVGMatrix.h 43 SVGMatrix translate(double tx, double ty)
46 copy.translate(tx, ty);

Completed in 610 milliseconds

1 23 4 5 6 7 8 91011>>