Searched defs:ty (Results 1 - 25 of 163) sorted by relevance

1234567

/external/clang/include/clang/Sema/
H A DLocInfoType.h38 LocInfoType(QualType ty, TypeSourceInfo *TInfo) argument
39 : Type((TypeClass)LocInfo, ty, ty->isDependentType(),
40 ty->isInstantiationDependentType(),
41 ty->isVariablyModifiedType(),
42 ty->containsUnexpandedParameterPack()),
/external/llvm/include/llvm/
H A DConstant.h47 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps) argument
48 : User(ty, vty, Ops, NumOps) {}
H A DUser.h52 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps) argument
53 : Value(ty, vty), OperandList(OpList), NumOperands(NumOps) {}
/external/llvm/test/Bindings/Ocaml/
H A Dexecutionengine.ml107 let ty = intptr_type td in var
108 if ty != i32_type && ty != i64_type then bomb "target_data did not work";
/external/webkit/Source/WebCore/rendering/
H A DRenderHTMLCanvas.cpp64 void RenderHTMLCanvas::paintReplaced(PaintInfo& paintInfo, int tx, int ty) argument
67 rect.move(tx, ty);
H A DRenderReplica.cpp63 void RenderReplica::paint(PaintInfo& paintInfo, int tx, int ty) argument
69 ty += y();
79 paintMask(paintInfo, tx, ty);
H A DEllipsisBox.cpp32 void EllipsisBox::paint(PaintInfo& paintInfo, int tx, int ty, int lineTop, int lineBottom) argument
47 paintSelection(context, tx, ty, style, style->font());
56 context->drawText(style->font(), TextRun(str.characters(), str.length(), false, 0, 0, TextRun::AllowTrailingExpansion, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->fontMetrics().ascent()));
68 ty += m_y + style->fontMetrics().ascent() - (m_markupBox->y() + m_markupBox->renderer()->style(m_firstLine)->fontMetrics().ascent());
69 m_markupBox->paint(paintInfo, tx, ty, lineTop, lineBottom);
73 IntRect EllipsisBox::selectionRect(int tx, int ty) argument
78 IntPoint(m_x + tx, m_y + ty + root()->selectionTop()), root()->selectionHeight()));
81 void EllipsisBox::paintSelection(GraphicsContext* context, int tx, int ty, RenderStyle* style, const Font& font) argument
96 context->clip(IntRect(m_x + tx, y + ty, m_logicalWidth, h));
98 IntPoint(m_x + tx, m_y + ty
102 nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, int lineTop, int lineBottom) argument
[all...]
H A DRenderDetailsMarker.cpp121 void RenderDetailsMarker::paint(PaintInfo& paintInfo, int tx, int ty) argument
124 RenderBlock::paint(paintInfo, tx, ty);
128 IntPoint boxOrigin(tx + x(), ty + y());
H A DRenderFieldset.cpp131 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty) argument
140 return RenderBlock::paintBoxDecorations(paintInfo, tx, ty);
148 ty += yOff;
155 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Normal);
157 paintFillLayers(paintInfo, style()->visitedDependentColor(CSSPropertyBackgroundColor), style()->backgroundLayers(), tx, ty, w, h);
158 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Inset);
171 int clipTop = ty;
177 graphicsContext->clipOut(IntRect(clipLeft, ty + legend->y(), clipWidth, legend->height()));
180 paintBorder(paintInfo.context, tx, ty, w, h, style(), true, true);
185 void RenderFieldset::paintMask(PaintInfo& paintInfo, int tx, int ty) argument
[all...]
H A DRenderScrollbarPart.cpp162 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, int tx, int ty, const IntRect& rect) argument
165 setLocation(rect.x() - tx, rect.y() - ty);
174 paint(paintInfo, tx, ty);
176 paint(paintInfo, tx, ty);
178 paint(paintInfo, tx, ty);
180 paint(paintInfo, tx, ty);
182 paint(paintInfo, tx, ty);
H A DRenderTableRow.cpp190 bool RenderTableRow::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction action) argument
200 IntPoint cellPoint = flipForWritingMode(toRenderTableCell(child), IntPoint(tx, ty), ParentToChildFlippingAdjustment);
211 void RenderTableRow::paint(PaintInfo& paintInfo, int tx, int ty) argument
221 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, this);
224 child->paint(paintInfo, tx, ty);
/external/dropbear/libtommath/
H A Dbn_fast_s_mp_mul_digs.c53 int tx, ty; local
58 ty = MIN(b->used-1, ix);
59 tx = ix - ty;
63 tmpy = b->dp + ty;
66 while (tx++ < a->used && ty-- >= 0) { ... }
68 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_mul_high_digs.c45 int tx, ty, iy; local
49 ty = MIN(b->used-1, ix);
50 tx = ix - ty;
54 tmpy = b->dp + ty;
57 while (tx++ < a->used && ty-- >= 0) { ... }
59 iy = MIN(a->used-tx, ty+1);
H A Dbn_fast_s_mp_sqr.c22 * (ty-tx) so that it never happens. You double all those
45 int tx, ty, iy; local
53 ty = MIN(a->used-1, ix);
54 tx = ix - ty;
58 tmpy = a->dp + ty;
61 while (tx++ < a->used && ty-- >= 0) { ... }
63 iy = MIN(a->used-tx, ty+1);
65 /* now for squaring tx can never equal ty
69 iy = MIN(iy, (ty-tx+1)>>1);
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLBlock.cpp78 void RenderMathMLBlock::paint(PaintInfo& info, int tx, int ty) argument
80 RenderBlock::paint(info, tx, ty);
86 ty += y();
94 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx + offsetWidth(), ty));
95 info.context->drawLine(IntPoint(tx + offsetWidth(), ty), IntPoint(tx + offsetWidth(), ty + offsetHeight()));
96 info.context->drawLine(IntPoint(tx, ty + offsetHeight()), IntPoint(tx + offsetWidth(), ty + offsetHeight()));
97 info.context->drawLine(IntPoint(tx, ty), IntPoin
[all...]
/external/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp105 bool isImplicitStrong(QualType ty) { argument
106 if (isa<AttributedType>(ty.getTypePtr()))
108 return ty.getLocalQualifiers().getObjCLifetime() == Qualifiers::OCL_Strong;
/external/clang/test/PCH/
H A Dcxx-templates.cpp27 Dep<A>::Ty ty; local
/external/openssl/crypto/rc4/
H A Drc4_enc.c74 register RC4_INT x,y,tx,ty; local
117 ty=d[y], \
119 d[x]=ty, \
120 (RC4_CHUNK)d[(tx+ty)&0xff]\
269 d[x]=ty=d[y]; \
271 (out) = d[(tx+ty)&0xff]^ (in);
/external/skia/src/gpu/
H A DGrClip.cpp30 GrClip::GrClip(GrClipIterator* iter, GrScalar tx, GrScalar ty, argument
32 this->setFromIterator(iter, tx, ty, bounds);
86 void GrClip::setFromIterator(GrClipIterator* iter, GrScalar tx, GrScalar ty, argument
105 if (tx || ty) {
106 e.fRect.offset(tx, ty);
126 if (tx || ty) {
127 e.fPath.offset(tx, ty);
H A DFlingState.cpp80 float ty = fDirection.fY * dist; local
83 ty = sk_float_round2int(ty);
85 matrix->setTranslate(tx, ty);
86 // printf("---- evaluate (%g %g)\n", tx, ty);
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DTranslateTransformOperation.h35 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, OperationType type) argument
37 return adoptRef(new TranslateTransformOperation(tx, ty, Length(0, Fixed), type));
40 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, const Length& tz, OperationType type) argument
42 return adoptRef(new TranslateTransformOperation(tx, ty, tz, type));
75 TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType type) argument
77 , m_y(ty)
/external/webkit/Source/WebCore/svg/
H A DSVGTransform.cpp72 void SVGTransform::setTranslate(float tx, float ty) argument
78 m_matrix.translate(tx, ty);
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h41 explicit MachineConstantPoolValue(Type *ty) : Ty(ty) {} argument
/external/skia/src/utils/
H A DSkLayer.cpp145 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height()); local
146 matrix->preTranslate(tx, ty);
148 matrix->preTranslate(-tx, -ty);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayer.cpp130 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height()); local
131 matrix->preTranslate(tx, ty);
133 matrix->preTranslate(-tx, -ty);

Completed in 450 milliseconds

1234567