HomeSort by relevance Sort by last modified time
    Searched refs:tx (Results 26 - 50 of 270) sorted by null

12 3 4 5 6 7 8 91011

  /external/webkit/Source/WebCore/rendering/
RenderFieldset.cpp 131 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty)
140 return RenderBlock::paintBoxDecorations(paintInfo, tx, ty);
152 tx += xOff;
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);
173 graphicsContext->clipOut(IntRect(tx + legend->x(), clipTop, legend->width(), clipHeight));
175 int clipLeft = tx;
180 paintBorder(paintInfo.context, tx, ty, w, h, style(), true, true);
185 void RenderFieldset::paintMask(PaintInfo& paintInfo, int tx, int ty
    [all...]
RenderReplaced.h 54 virtual void paint(PaintInfo&, int tx, int ty);
55 bool shouldPaint(PaintInfo&, int& tx, int& ty);
68 virtual void paintReplaced(PaintInfo&, int /*tx*/, int /*ty*/) { }
RenderHTMLCanvas.h 46 virtual void paintReplaced(PaintInfo&, int tx, int ty);
RenderScrollbarPart.h 48 void paintIntoRect(GraphicsContext*, int tx, int ty, const IntRect&);
RenderTextControl.h 66 void hitInnerTextElement(HitTestResult&, int x, int y, int tx, int ty);
95 virtual void paintObject(PaintInfo&, int tx, int ty);
97 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
113 void paintPlaceholder(PaintInfo&, int tx, int ty);
RenderDataGrid.h 49 virtual void paintObject(PaintInfo&, int tx, int ty);
64 void paintColumnHeaders(PaintInfo&, int tx, int ty);
65 void paintColumnHeader(DataGridColumn*, PaintInfo&, int tx, int ty);
RenderImage.h 62 virtual void paint(PaintInfo&, int tx, int ty);
79 virtual void paintReplaced(PaintInfo&, int tx, int ty);
84 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderScrollbarPart.cpp 162 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, int tx, int ty, const IntRect& rect)
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);
RenderInline.h 51 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
78 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
79 void paintOutline(GraphicsContext*, int tx, int ty);
118 virtual void paint(PaintInfo&, int tx, int ty);
120 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
165 void paintOutlineForLine(GraphicsContext*, int tx, int ty, const IntRect& prevLine, const IntRect& thisLine, const IntRect& nextLine);
RenderDetailsMarker.h 41 virtual void paint(PaintInfo&, int tx, int ty);
RenderLineBoxList.cpp 149 bool RenderLineBoxList::rangeIntersectsRect(RenderBoxModelObject* renderer, int logicalTop, int logicalBottom, const IntRect& rect, int tx, int ty) const
166 physicalStart += tx;
174 bool RenderLineBoxList::anyLineIntersectsRect(RenderBoxModelObject* renderer, const IntRect& rect, int tx, int ty, bool usePrintRect, int outlineSize) const
191 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, rect, tx, ty);
194 bool RenderLineBoxList::lineIntersectsDirtyRect(RenderBoxModelObject* renderer, InlineFlowBox* box, const PaintInfo& paintInfo, int tx, int ty) const
200 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, tx, ty);
203 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, PaintInfo& paintInfo, int tx, int ty) const
222 if (!anyLineIntersectsRect(renderer, paintInfo.rect, tx, ty, usePrintRect, outlineSize))
260 if (lineIntersectsDirtyRect(renderer, curr, info, tx, ty)) {
262 curr->paint(info, tx, ty, root->lineTop(), root->lineBottom())
    [all...]
RenderTableSection.h 135 virtual void paint(PaintInfo&, int tx, int ty);
136 virtual void paintCell(RenderTableCell*, PaintInfo&, int tx, int ty);
137 virtual void paintObject(PaintInfo&, int tx, int ty);
141 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction);
RenderReplaced.cpp 97 void RenderReplaced::paint(PaintInfo& paintInfo, int tx, int ty)
99 if (!shouldPaint(paintInfo, tx, ty))
102 tx += x();
106 paintBoxDecorations(paintInfo, tx, ty);
109 paintMask(paintInfo, tx, ty);
114 paintOutline(paintInfo.context, tx, ty, width(), height());
131 IntRect borderRect = IntRect(tx, ty, width(), height());
143 paintReplaced(paintInfo, tx, ty);
153 selectionPaintingRect.move(tx, ty);
158 bool RenderReplaced::shouldPaint(PaintInfo& paintInfo, int& tx, int& ty
    [all...]
  /external/skia/src/core/
SkBitmapProcShader.h 26 SkBitmapProcShader(const SkBitmap& src, TileMode tx, TileMode ty);
38 static bool CanDo(const SkBitmap&, TileMode tx, TileMode ty);
  /external/skia/gpu/src/
FlingState.cpp 86 float tx = fDirection.fX * dist; local
89 tx = sk_float_round2int(tx);
92 matrix->setTranslate(tx, ty);
93 // printf("---- evaluate (%g %g)\n", tx, ty);
GrClip.cpp 41 GrClip::GrClip(GrClipIterator* iter, GrScalar tx, GrScalar ty,
44 this->setFromIterator(iter, tx, ty, bounds);
96 void GrClip::setFromIterator(GrClipIterator* iter, GrScalar tx, GrScalar ty,
115 if (tx || ty) {
116 e.fRect.offset(tx, ty);
136 if (tx || ty) {
137 e.fPath.offset(tx, ty);
  /external/webkit/LayoutTests/storage/
multiple-transactions-on-different-handles.js 32 db.transaction(function(tx) {
34 tx.executeSql("SELECT COUNT(*) FROM Test;", [],
36 function(tx, error) { statementErrorCallback(dbName, "read", error); });
39 tx.executeSql("INSERT INTO Test VALUES (?);", [val],
41 function(tx, error) { statementErrorCallback(dbName, "write", error); });
58 db.transaction(function(tx) {
60 tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo int);", [],
61 function(result) {}, function(tx, error) {});
multiple-transactions.js 13 db.transaction(function(tx) {
23 db.transaction(function(tx) {
open-database-while-transaction-in-progress.js 20 db1.transaction(function(tx) {
22 tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo BLOB);");
23 tx.executeSql("INSERT INTO Test VALUES (ZEROBLOB(2097152));", [],
28 function(tx, error) {
34 tx.executeSql("DELETE FROM Test;");
  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineFlowBox.h 44 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
SVGRootInlineBox.h 48 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLSquareRoot.cpp 69 void RenderMathMLSquareRoot::paint(PaintInfo& info, int tx, int ty)
71 RenderMathMLBlock::paint(info, tx, ty);
76 tx += x();
112 FloatPoint topStart(tx + frontWidth - topStartShift, ty);
113 FloatPoint bottomLeft(tx + frontWidth * gRadicalBottomPointXPos , ty + maxHeight + gRadicalBasePad);
114 FloatPoint topLeft(tx + frontWidth * gRadicalTopLeftPointXPos , ty + gRadicalTopLeftPointYPos * maxHeight);
115 FloatPoint leftEnd(tx , topLeft.y() + gRadicalLeftEndYShift * style()->fontSize());
  /system/core/libpixelflinger/
picker.cpp 135 const texture_t& tx = c->state.texture[i]; local
136 if (tx.enable) {
138 t |= GGL_BUILD_NEEDS(tx.surface.format, T_FORMAT);
139 t |= GGL_BUILD_NEEDS(ggl_env_to_needs(tx.env), T_ENV);
141 if (tx.s_coord==GGL_ONE_TO_ONE && tx.t_coord==GGL_ONE_TO_ONE) {
146 t |= GGL_BUILD_NEEDS(ggl_wrap_to_needs(tx.s_wrap), T_S_WRAP);
147 t |= GGL_BUILD_NEEDS(ggl_wrap_to_needs(tx.t_wrap), T_T_WRAP);
149 if (tx.mag_filter == GGL_LINEAR) {
152 if (tx.min_filter == GGL_LINEAR)
    [all...]
  /external/webkit/Tools/CSSTestSuiteHarness/harness/
harness.js     [all...]
  /external/openssl/crypto/rc4/
rc4_enc.c 74 register RC4_INT x,y,tx,ty; local
115 tx=d[x], \
116 y=(tx+y)&0xff, \
118 d[y]=tx, \
120 (RC4_CHUNK)d[(tx+ty)&0xff]\
267 tx=d[x]; \
268 y=(tx+y)&0xff; \
270 d[y]=tx; \
271 (out) = d[(tx+ty)&0xff]^ (in);

Completed in 1027 milliseconds

12 3 4 5 6 7 8 91011