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

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/svg/
SVGTransform.idl 39 [StrictTypeChecking, RequiresAllArguments=Raise] void setTranslate(in float tx, in float ty);
  /frameworks/compile/libbcc/lib/AndroidBitcode/X86/
X86ABCExpandVAArg.cpp 43 llvm::Type *ty = pty->getContainedType(0); local
57 uint64_t offset = llvm::RoundUpToAlignment(dl->getTypeSizeInBits(ty)/8, 4);
  /external/openssl/crypto/rc4/
rc4_enc.c 74 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/gm/
shadertext.cpp 39 static SkShader* MakeBitmapShader(SkShader::TileMode tx, SkShader::TileMode ty,
45 return SkShader::CreateBitmapShader(bmp, tx, ty);
160 for (size_t ty = 0; ty < SK_ARRAY_COUNT(tileModes); ++ty) {
162 tileModes[ty],
  /external/webkit/Source/WebCore/rendering/
RenderDataGrid.cpp 138 void RenderDataGrid::paintObject(PaintInfo& paintInfo, int tx, int ty)
144 RenderBlock::paintObject(paintInfo, tx, ty);
150 paintColumnHeaders(paintInfo, tx, ty);
153 void RenderDataGrid::paintColumnHeaders(PaintInfo& paintInfo, int tx, int ty)
167 columnRect.move(tx, ty);
169 paintColumnHeader(column, paintInfo, tx, ty);
RenderTable.h 222 virtual void paint(PaintInfo&, int tx, int ty);
223 virtual void paintObject(PaintInfo&, int tx, int ty);
224 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
225 virtual void paintMask(PaintInfo&, int tx, int ty);
228 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int xPos, int yPos, int tx, int ty, HitTestAction);
239 virtual IntRect overflowClipRect(int tx, int ty, OverlayScrollbarSizeRelevancy relevancy = IgnoreOverlayScrollbarSize);
RenderBox.h 125 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
226 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
235 virtual void paint(PaintInfo&, int tx, int ty);
236 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
339 virtual IntRect overflowClipRect(int tx, int ty, OverlayScrollbarSizeRelevancy relevancy = IgnoreOverlayScrollbarSize);
340 IntRect clipRect(int tx, int ty);
342 virtual IntRect controlClipRect(int /*tx*/, int /*ty*/) const { return IntRect(); }
343 bool pushContentsClip(PaintInfo&, int tx, int ty);
344 void popContentsClip(PaintInfo&, PaintPhase originalPhase, int tx, int ty);
346 virtual void paintObject(PaintInfo&, int /*tx*/, int /*ty*/) { ASSERT_NOT_REACHED();
    [all...]
InlineFlowBox.h 103 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
104 virtual void paintMask(PaintInfo&, int tx, int ty);
105 void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int w, int h, CompositeOperator = CompositeSourceOver);
106 void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int w, int h, CompositeOperator = CompositeSourceOver);
107 void paintBoxShadow(GraphicsContext*, RenderStyle*, ShadowStyle, int tx, int ty, int w, int h);
108 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
109 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, int lineTop, int lineBottom);
RenderTableCell.cpp     [all...]
RenderBoxModelObject.h 119 void paintBorder(GraphicsContext*, int tx, int ty, int w, int h, const RenderStyle*, bool includeLogicalLeftEdge = true, bool includeLogicalRightEdge = true);
120 bool paintNinePieceImage(GraphicsContext*, int tx, int ty, int w, int h, const RenderStyle*, const NinePieceImage&, CompositeOperator = CompositeSourceOver);
121 void paintBoxShadow(GraphicsContext*, int tx, int ty, int w, int h, const RenderStyle*, ShadowStyle, bool includeLogicalLeftEdge = true, bool includeLogicalRightEdge = true);
122 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, int height, InlineFlowBox* = 0, int inlineBoxWidth = 0, int inlineBoxHeight = 0, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
135 void calculateBackgroundImageGeometry(const FillLayer*, int tx, int ty, int w, int h, IntRect& destRect, IntPoint& phase, IntSize& tileSize);
RenderTableRow.cpp 190 bool RenderTableRow::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction action)
200 IntPoint cellPoint = flipForWritingMode(toRenderTableCell(child), IntPoint(tx, ty), ParentToChildFlippingAdjustment);
211 void RenderTableRow::paint(PaintInfo& paintInfo, int tx, int ty)
221 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, this);
224 child->paint(paintInfo, tx, ty);
RenderTable.cpp 514 void RenderTable::paint(PaintInfo& paintInfo, int tx, int ty)
517 ty += y();
525 overflowBox.move(tx, ty);
530 bool pushedClip = pushContentsClip(paintInfo, tx, ty);
531 paintObject(paintInfo, tx, ty);
533 popContentsClip(paintInfo, paintPhase, tx, ty);
536 void RenderTable::paintObject(PaintInfo& paintInfo, int tx, int ty)
540 paintBoxDecorations(paintInfo, tx, ty);
543 paintMask(paintInfo, tx, ty);
561 IntPoint childPoint = flipForWritingMode(toRenderBox(child), IntPoint(tx, ty), ParentToChildFlippingAdjustment)
    [all...]
RenderBlock.h 274 virtual void paint(PaintInfo&, int tx, int ty);
275 virtual void paintObject(PaintInfo&, int tx, int ty);
283 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
315 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
522 void paintFloats(PaintInfo&, int tx, int ty, bool preservePhase = false);
523 void paintContents(PaintInfo&, int tx, int ty);
524 void paintColumnContents(PaintInfo&, int tx, int ty, bool paintFloats = false);
525 void paintColumnRules(PaintInfo&, int tx, int ty);
526 void paintChildren(PaintInfo&, int tx, int ty);
527 void paintEllipsisBoxes(PaintInfo&, int tx, int ty);
    [all...]
InlineTextBox.h 105 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
106 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, int lineTop, int lineBottom);
164 void paintCustomHighlight(int tx, int ty, const AtomicString& type);
RenderBoxModelObject.cpp 574 void RenderBoxModelObject::paintFillLayerExtended(const PaintInfo& paintInfo, const Color& color, const FillLayer* bgLayer, int tx, int ty, int w, int h,
615 IntRect borderRect(tx, ty, w, h);
630 IntRect borderRect(tx, ty, w, h);
650 context->clip(toRenderBox(this)->overflowClipRect(tx, ty));
652 // Now adjust our tx, ty, w, h to reflect a scrolled content box with borders at the ends.
655 ty -= offset.height();
664 int y = ty + borderTop() + (includePadding ? paddingTop() : 0);
673 IntRect maskRect(tx, ty, w, h);
689 box->paint(info, tx - box->x(), ty - box->y(), root->lineTop(), root->lineBottom());
693 paint(info, tx - x, ty - y)
    [all...]
RenderDetailsMarker.cpp 121 void RenderDetailsMarker::paint(PaintInfo& paintInfo, int tx, int ty)
124 RenderBlock::paint(paintInfo, tx, ty);
128 IntPoint boxOrigin(tx + x(), ty + y());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
ConstraintPainter.java 582 int ty = targetBounds.y; local
585 graphics.drawArrow(tx, ty + 2 * ARROW_SIZE, tx, ty, ARROW_SIZE);
587 graphics.drawArrow(tx, ty, tx, ty - margin, ARROW_SIZE);
590 int ty = targetBounds.y2(); local
593 graphics.drawArrow(tx, ty - 2 * ARROW_SIZE, tx, ty, ARROW_SIZE);
595 graphics.drawArrow(tx, ty, tx, ty + margin, ARROW_SIZE)
599 int ty = targetSegmentTypeY.getY(targetNode, targetBounds); local
733 int ty = targetBounds.centerY(); local
    [all...]
  /external/skia/src/gpu/
GrTextContext.cpp 238 GrFixed ty = SkIntToFixed(glyph->fAtlasLocation.fY); local
249 texture->normalizeFixedY(ty),
251 texture->normalizeFixedY(ty + height),
257 texture->normalizeFixedY(ty),
259 texture->normalizeFixedY(ty + height),
  /external/valgrind/main/VEX/priv/
guest_x86_toIR.c 322 static IRTemp newTemp ( IRType ty )
324 vassert(isPlausibleIRType(ty));
325 return newIRTemp( irsb->tyenv, ty );
553 IRType ty = typeOfIRExpr(irsb->tyenv, e); local
555 case 1: vassert(ty == Ity_I8); break;
556 case 2: vassert(ty == Ity_I16); break;
557 case 4: vassert(ty == Ity_I32); break;
688 static IRExpr* mkU ( IRType ty, UInt i )
690 if (ty == Ity_I8) return mkU8(i);
691 if (ty == Ity_I16) return mkU16(i)
1127 IRType ty = szToITy(sz); local
1181 IRType ty = szToITy(sz); local
1832 IRType ty = szToITy(size); local
1945 IRType ty = szToITy(size); local
2146 IRType ty = szToITy(size); local
2286 IRType ty = szToITy(sz); local
2396 IRType ty = szToITy(sz); local
2630 IRType ty = szToITy(sz); local
2740 IRType ty = szToITy(sz); local
2803 IRType ty = szToITy(sz); local
2961 IRType ty = Ity_I8; local
3039 IRType ty = szToITy(sz); local
3193 IRType ty = szToITy(sz); local
3209 IRType ty = szToITy(sz); local
3222 IRType ty = szToITy(sz); local
3237 IRType ty = szToITy(sz); local
3258 IRType ty = szToITy(sz); local
3323 IRType ty = szToITy(size); local
3365 IRType ty = szToITy(size); local
6086 IRType ty = szToITy(sz); local
6359 IRType ty = szToITy(sz); local
6462 IRType ty = szToITy(sz); local
6538 IRType ty = szToITy(size); local
6644 IRType ty = szToITy(sz); local
6695 IRType ty = szToITy(sz); local
7933 IRType ty; local
    [all...]
ir_match.c 83 if (p->Iex.Load.ty != e->Iex.Load.ty) return False;
  /external/valgrind/main/coregrind/m_debuginfo/
tytypes.c 103 VG_(printf)("Te_Field(ty=0x%05lx,pos.offset=%ld,\"%s\")",
107 VG_(printf)("Te_Field(ty=0x%05lx,nLoc=%lu,pos.loc=%p,\"%s\")",
752 TyEnt* ty; local
758 ty = ML_(TyEnts__index_by_cuOff)(tyents, NULL, ty_cuOff);
761 vg_assert(ty);
762 vg_assert(ML_(TyEnt__is_type)(ty));
764 switch (ty->tag) {
786 if (!ty->Te.TyStOrUn.isStruct) goto done;
787 fieldRs = ty->Te.TyStOrUn.fieldRs;
843 ty = ML_(TyEnts__index_by_cuOff)(tyents, NULL
    [all...]
  /external/valgrind/main/memcheck/tests/
sh-mem-random.c 128 U4 ty, src, dst; local
129 ty = (randomU4() >> 13) % 5;
133 switch (ty) {
  /external/libppp/src/
fsm.h 175 #define INC_FSM_OPT(ty, length, o) \
177 (o)->hdr.id = (ty); \
  /external/skia/legacy/src/utils/
SkNinePatch.cpp 75 const SkScalar vy, const SkScalar ty,
80 texs->set(0, ty); texs++;
90 texs->set(tx, ty); texs++;
93 texs->set(SkIntToScalar(width), ty); texs++; local
217 const SkScalar ty = SkIntToScalar(yDivs[y]); local
222 vy += ty;
228 vy += SkScalarMul(ty, -stretchY);
231 fillRow(verts, texs, vy, ty, bounds, xDivs, numXDivs,
  /external/skia/src/utils/
SkNinePatch.cpp 75 const SkScalar vy, const SkScalar ty,
80 texs->set(0, ty); texs++;
90 texs->set(tx, ty); texs++;
93 texs->set(SkIntToScalar(width), ty); texs++; local
217 const SkScalar ty = SkIntToScalar(yDivs[y]); local
222 vy += ty;
228 vy += SkScalarMul(ty, -stretchY);
231 fillRow(verts, texs, vy, ty, bounds, xDivs, numXDivs,

Completed in 539 milliseconds

1 2 34 5 6 7 8 91011>>