Home
last modified time | relevance | path

Searched refs:tx (Results 1 – 25 of 184) sorted by relevance

12345678

/external/webkit/LayoutTests/storage/
Dsql-data-types.js33 function testDBValues(tx, result) { argument
42 tx.executeSql("DROP TABLE DataTypeTestTable", [],
43 function(tx, result) { argument
46 function(tx, result) { argument
51 function fetchDBValuesStmt(tx, result) { argument
52 tx.executeSql("SELECT * FROM DataTypeTestTable", [],
54 function(tx,error) { argument
59 function insertTestValuesStmt(tx, result) { argument
60tx.executeSql("INSERT INTO DataTypeTestTable (id, real, timestamp, text, blob) VALUES (?,?,?,?,?)",
63 function(tx, error) { argument
[all …]
/external/webkit/WebCore/mathml/
DRenderMathMLBlock.cpp78 void RenderMathMLBlock::paint(PaintInfo& info, int tx, int ty) in paint() argument
80 RenderBlock::paint(info, tx, ty); in paint()
85 tx += x(); in paint()
94 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx + offsetWidth(), ty)); in paint()
95 …info.context->drawLine(IntPoint(tx + offsetWidth(), ty), IntPoint(tx + offsetWidth(), ty + offsetH… in paint()
96 …info.context->drawLine(IntPoint(tx, ty + offsetHeight()), IntPoint(tx + offsetWidth(), ty + offset… in paint()
97 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx, ty + offsetHeight())); in paint()
103 … info.context->drawLine(IntPoint(tx, ty + baseline), IntPoint(tx + offsetWidth(), ty + baseline)); in paint()
/external/webkit/WebCore/rendering/
DEllipsisBox.cpp30 void EllipsisBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty) in paint() argument
45 paintSelection(context, tx, ty, style, style->font()); in paint()
54 …tr.length(), false, 0, 0, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->f… in paint()
65 tx += m_x + m_width - m_markupBox->x(); in paint()
67 m_markupBox->paint(paintInfo, tx, ty); in paint()
71 IntRect EllipsisBox::selectionRect(int tx, int ty) in selectionRect() argument
76 IntPoint(m_x + tx, m_y + ty + root()->selectionTop()), root()->selectionHeight())); in selectionRect()
79 void EllipsisBox::paintSelection(GraphicsContext* context, int tx, int ty, RenderStyle* style, cons… in paintSelection() argument
94 context->clip(IntRect(m_x + tx, y + ty, m_width, h)); in paintSelection()
96 IntPoint(m_x + tx, m_y + ty + y), h, c, style->colorSpace()); in paintSelection()
[all …]
DRenderFieldset.cpp120 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty) in paintBoxDecorations() argument
129 return RenderBlock::paintBoxDecorations(paintInfo, tx, ty); in paintBoxDecorations()
136 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Normal); in paintBoxDecorations()
138 … paintFillLayers(paintInfo, style()->backgroundColor(), style()->backgroundLayers(), tx, ty, w, h); in paintBoxDecorations()
139 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Inset); in paintBoxDecorations()
146 …return paintBorderMinusLegend(paintInfo.context, tx, ty, w, h, style(), legend->x(), legend->width… in paintBoxDecorations()
156 graphicsContext->clipOut(IntRect(tx + legend->x(), clipTop, in paintBoxDecorations()
158 paintBorder(paintInfo.context, tx, ty, w, h, style(), true, true); in paintBoxDecorations()
163 void RenderFieldset::paintMask(PaintInfo& paintInfo, int tx, int ty) in paintMask() argument
172 return RenderBlock::paintMask(paintInfo, tx, ty); in paintMask()
[all …]
DInlineTextBox.cpp106 IntRect InlineTextBox::selectionRect(int tx, int ty, int startPos, int endPos) in selectionRect() argument
120 … IntPoint(tx + m_x, ty + selTop), selHeight, sPos, ePos)); in selectionRect()
121 if (r.x() > tx + m_x + m_width) in selectionRect()
123 else if (r.right() - 1 > tx + m_x + m_width) in selectionRect()
124 r.setWidth(tx + m_x + m_width - r.x()); in selectionRect()
263 bool InlineTextBox::nodeAtPoint(const HitTestRequest&, HitTestResult& result, int x, int y, int tx,… in nodeAtPoint() argument
268 IntRect rect(tx + m_x, ty + m_y, m_width, height()); in nodeAtPoint()
270 renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty)); in nodeAtPoint()
327 void InlineTextBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty) in paint() argument
339 int xPos = tx + m_x - leftOverflow; in paint()
[all …]
DInlineTextBox.h77 virtual void paint(RenderObject::PaintInfo&, int tx, int ty);
78 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty);
126 …void paintCompositionBackground(GraphicsContext*, int tx, int ty, RenderStyle*, const Font&, int s…
127 …void paintDocumentMarkers(GraphicsContext*, int tx, int ty, RenderStyle*, const Font&, bool backgr…
128 void paintCompositionUnderline(GraphicsContext*, int tx, int ty, const CompositionUnderline&);
130 void paintCustomHighlight(int tx, int ty, const AtomicString& type);
134 void paintDecoration(GraphicsContext*, int tx, int ty, int decoration, ShadowData*);
135 void paintSelection(GraphicsContext*, int tx, int ty, RenderStyle*, const Font&);
136 …void paintSpellingOrGrammarMarker(GraphicsContext*, int tx, int ty, const DocumentMarker&, RenderS…
137 …void paintTextMatchMarker(GraphicsContext*, int tx, int ty, const DocumentMarker&, RenderStyle*, c…
[all …]
DRenderBlock.h117 int blockX, int blockY, int tx, int ty, const PaintInfo*);
119 int blockX, int blockY, int tx, int ty, const PaintInfo*);
171 virtual void paint(PaintInfo&, int tx, int ty);
172 virtual void paintObject(PaintInfo&, int tx, int ty);
177 …virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitT…
277 void paintFloats(PaintInfo&, int tx, int ty, bool preservePhase = false);
278 void paintContents(PaintInfo&, int tx, int ty);
279 void paintColumnContents(PaintInfo&, int tx, int ty, bool paintFloats = false);
280 void paintColumnRules(PaintInfo&, int tx, int ty);
281 void paintChildren(PaintInfo&, int tx, int ty);
[all …]
DInlineFlowBox.cpp599 …ox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty) in nodeAtPoint() argument
602 overflowRect.move(tx, ty); in nodeAtPoint()
608 …r->boxModelObject()->hasSelfPaintingLayer()) && curr->nodeAtPoint(request, result, x, y, tx, ty)) { in nodeAtPoint()
609 renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty)); in nodeAtPoint()
615 IntRect rect(tx + m_x, ty + m_y, m_width, height()); in nodeAtPoint()
617 …renderer()->updateHitTestResult(result, IntPoint(x - tx, y - ty)); // Don't add in m_x or m_y here… in nodeAtPoint()
624 void InlineFlowBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty) in paint() argument
628 overflowRect.move(tx, ty); in paint()
661 paintMask(paintInfo, tx, ty); in paint()
665 paintBoxDecorations(paintInfo, tx, ty); in paint()
[all …]
DRenderListBox.h49 IntRect itemBoundingBoxRect(int tx, int ty, int index);
66 virtual void paintObject(PaintInfo&, int tx, int ty);
67 virtual IntRect controlClipRect(int tx, int ty) const;
69 virtual bool isPointInOverflowControl(HitTestResult&, int x, int y, int tx, int ty);
94 …virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitT…
118 void paintScrollbar(PaintInfo&, int tx, int ty);
119 void paintItemForeground(PaintInfo&, int tx, int ty, int listIndex);
120 void paintItemBackground(PaintInfo&, int tx, int ty, int listIndex);
DRootInlineBox.cpp118 void RootInlineBox::paintEllipsisBox(RenderObject::PaintInfo& paintInfo, int tx, int ty) const in paintEllipsisBox() argument
122 ellipsisBox()->paint(paintInfo, tx, ty); in paintEllipsisBox()
143 void RootInlineBox::paintCustomHighlight(RenderObject::PaintInfo& paintInfo, int tx, int ty, const … in paintCustomHighlight() argument
156 FloatRect rootRect(tx + x(), ty + selectionTop(), width(), selectionHeight()); in paintCustomHighlight()
164 void RootInlineBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty) in paint() argument
166 InlineFlowBox::paint(paintInfo, tx, ty); in paint()
167 paintEllipsisBox(paintInfo, tx, ty); in paint()
171 paintCustomHighlight(paintInfo, tx, ty, styleToUse->highlight()); in paint()
175 …ox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty) in nodeAtPoint() argument
178 if (ellipsisBox()->nodeAtPoint(request, result, x, y, tx, ty)) { in nodeAtPoint()
[all …]
DRenderListBox.cpp246 IntRect RenderListBox::itemBoundingBoxRect(int tx, int ty, int index) in itemBoundingBoxRect() argument
248 return IntRect(tx + borderLeft() + paddingLeft(), in itemBoundingBoxRect()
253 void RenderListBox::paintObject(PaintInfo& paintInfo, int tx, int ty) in paintObject() argument
263 paintItemForeground(paintInfo, tx, ty, index); in paintObject()
269 RenderBlock::paintObject(paintInfo, tx, ty); in paintObject()
272 paintScrollbar(paintInfo, tx, ty); in paintObject()
276 paintItemBackground(paintInfo, tx, ty, index); in paintObject()
282 void RenderListBox::paintScrollbar(PaintInfo& paintInfo, int tx, int ty) in paintScrollbar() argument
285 IntRect scrollRect(tx + width() - borderRight() - m_vBar->width(), in paintScrollbar()
294 void RenderListBox::paintItemForeground(PaintInfo& paintInfo, int tx, int ty, int listIndex) in paintItemForeground() argument
[all …]
DRenderBox.h77 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
154 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
163 virtual void paint(PaintInfo&, int tx, int ty);
164 …virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitT…
262 virtual IntRect overflowClipRect(int tx, int ty);
263 IntRect clipRect(int tx, int ty);
266 bool pushContentsClip(PaintInfo&, int tx, int ty);
267 void popContentsClip(PaintInfo&, PaintPhase originalPhase, int tx, int ty);
270 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
271 virtual void paintMask(PaintInfo&, int tx, int ty);
[all …]
DRenderReplaced.cpp95 void RenderReplaced::paint(PaintInfo& paintInfo, int tx, int ty) in paint() argument
97 if (!shouldPaint(paintInfo, tx, ty)) in paint()
100 tx += x(); in paint()
104 paintBoxDecorations(paintInfo, tx, ty); in paint()
107 paintMask(paintInfo, tx, ty); in paint()
112 paintOutline(paintInfo.context, tx, ty, width(), height(), style()); in paint()
129 IntRect borderRect = IntRect(tx, ty, width(), height()); in paint()
145 paintReplaced(paintInfo, tx, ty); in paint()
155 selectionPaintingRect.move(tx, ty); in paint()
160 bool RenderReplaced::shouldPaint(PaintInfo& paintInfo, int& tx, int& ty) in shouldPaint() argument
[all …]
DRenderBoxModelObject.cpp443 …(const PaintInfo& paintInfo, const Color& c, const FillLayer* bgLayer, int tx, int ty, int w, int … in paintFillLayerExtended() argument
458 IntRect borderRect(tx, ty, w, h); in paintFillLayerExtended()
479 context->clip(toRenderBox(this)->overflowClipRect(tx, ty)); in paintFillLayerExtended()
482 layer()->subtractScrolledContentOffset(tx, ty); in paintFillLayerExtended()
490 int x = tx + bLeft + (includePadding ? pLeft : 0); in paintFillLayerExtended()
500 IntRect maskRect(tx, ty, w, h); in paintFillLayerExtended()
515 box->paint(info, tx - box->x(), ty - box->y()); in paintFillLayerExtended()
519 paint(info, tx - x, ty - y); in paintFillLayerExtended()
575 IntRect rect(tx, ty, w, h); in paintFillLayerExtended()
599 calculateBackgroundImageGeometry(bgLayer, tx, ty, w, h, destRect, phase, tileSize); in paintFillLayerExtended()
[all …]
DRenderTableCell.cpp643 void RenderTableCell::paint(PaintInfo& paintInfo, int tx, int ty) in paint() argument
649 tx += x(); in paint()
654 paintCollapsedBorder(paintInfo.context, tx, ty, width(), height()); in paint()
658 RenderBlock::paint(paintInfo, tx, ty); in paint()
771 void RenderTableCell::paintCollapsedBorder(GraphicsContext* graphicsContext, int tx, int ty, int w,… in paintCollapsedBorder() argument
788 tx -= leftWidth / 2; in paintCollapsedBorder()
806 borders.addBorder(topVal, BSTop, renderTop, tx, ty, tx + w, ty + topWidth, topStyle); in paintCollapsedBorder()
807 …borders.addBorder(bottomVal, BSBottom, renderBottom, tx, ty + h - bottomWidth, tx + w, ty + h, bot… in paintCollapsedBorder()
808 borders.addBorder(leftVal, BSLeft, renderLeft, tx, ty, tx + leftWidth, ty + h, leftStyle); in paintCollapsedBorder()
809 …borders.addBorder(rightVal, BSRight, renderRight, tx + w - rightWidth, ty, tx + w, ty + h, rightSt… in paintCollapsedBorder()
[all …]
DRenderTable.cpp484 void RenderTable::paint(PaintInfo& paintInfo, int tx, int ty) in paint() argument
486 tx += x(); in paint()
494 …if (tx + leftVisibleOverflow() >= paintInfo.rect.right() + os || tx + rightVisibleOverflow() <= pa… in paint()
497 bool pushedClip = pushContentsClip(paintInfo, tx, ty); in paint()
498 paintObject(paintInfo, tx, ty); in paint()
500 popContentsClip(paintInfo, paintPhase, tx, ty); in paint()
503 void RenderTable::paintObject(PaintInfo& paintInfo, int tx, int ty) in paintObject() argument
507 paintBoxDecorations(paintInfo, tx, ty); in paintObject()
510 paintMask(paintInfo, tx, ty); in paintObject()
528 child->paint(info, tx, ty); in paintObject()
[all …]
DRenderScrollbarPart.cpp156 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, int tx, int ty, const Int… in paintIntoRect() argument
159 setLocation(rect.x() - tx, rect.y() - ty); in paintIntoRect()
168 paint(paintInfo, tx, ty); in paintIntoRect()
170 paint(paintInfo, tx, ty); in paintIntoRect()
172 paint(paintInfo, tx, ty); in paintIntoRect()
174 paint(paintInfo, tx, ty); in paintIntoRect()
176 paint(paintInfo, tx, ty); in paintIntoRect()
DRenderWidget.cpp219 void RenderWidget::paint(PaintInfo& paintInfo, int tx, int ty) in paint() argument
221 if (!shouldPaint(paintInfo, tx, ty)) in paint()
224 tx += x(); in paint()
228 paintBoxDecorations(paintInfo, tx, ty); in paint()
231 paintMask(paintInfo, tx, ty); in paint()
240 paintCustomHighlight(tx - x(), ty - y(), style()->highlight(), true); in paint()
244 IntRect borderRect = IntRect(tx, ty, width(), height()); in paint()
265 … IntPoint paintLocation(tx + borderLeft() + paddingLeft(), ty + borderTop() + paddingTop()); in paint()
353 …nt(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestActi… in nodeAtPoint() argument
356 bool inside = RenderReplaced::nodeAtPoint(request, result, x, y, tx, ty, action); in nodeAtPoint()
DRenderInline.cpp406 void RenderInline::paint(PaintInfo& paintInfo, int tx, int ty) in paint() argument
408 m_lineBoxes.paint(this, paintInfo, tx, ty); in paint()
411 void RenderInline::absoluteRects(Vector<IntRect>& rects, int tx, int ty) in absoluteRects() argument
415 rects.append(IntRect(tx + curr->x(), ty + curr->y(), curr->width(), curr->height())); in absoluteRects()
417 rects.append(IntRect(tx, ty, 0, 0)); in absoluteRects()
423 tx - containingBlock()->x() + box->x(), in absoluteRects()
426 … continuation()->absoluteRects(rects, tx - containingBlock()->x(), ty - containingBlock()->y()); in absoluteRects()
496 int x, int y, int tx, int ty, HitTestAction hitTestAction) in nodeAtPoint() argument
498 return m_lineBoxes.hitTest(this, request, result, x, y, tx, ty, hitTestAction); in nodeAtPoint()
935 void RenderInline::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty) in addFocusRingRects() argument
[all …]
DInlineBox.cpp162 void InlineBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty) in paint() argument
173 renderer()->paint(info, tx, ty); in paint()
176 renderer()->paint(info, tx, ty); in paint()
178 renderer()->paint(info, tx, ty); in paint()
180 renderer()->paint(info, tx, ty); in paint()
182 renderer()->paint(info, tx, ty); in paint()
186 …ox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty) in nodeAtPoint() argument
191 return renderer()->hitTest(request, result, IntPoint(x, y), tx, ty); in nodeAtPoint()
/external/openssl/crypto/rc4/asm/
Drc4-586.pl39 $tx="ecx";
49 &add (&LB($yy),&LB($tx));
51 &mov (&DWP(0,$dat,$yy,4),$tx);
53 &add ($ty,$tx);
58 &mov ($tx,&DWP(0,$dat,$xx,4));
60 &mov ($tx,&wparam(3)); # reload [re-biased] out
82 &lea ($tx,&DWP(0,$inp,$ty));
84 &mov (&wparam(1),$tx); # save input+len
92 &mov ($tx,&DWP(0,$dat,$xx,4));
106 &mov (&DWP(0,$tx,$inp),$out);# $tx holds re-biased out here
[all …]
/external/openssl/crypto/rc4/
Drc4_enc.c74 register RC4_INT x,y,tx,ty; in RC4() local
115 tx=d[x], \ in RC4()
116 y=(tx+y)&0xff, \ in RC4()
118 d[y]=tx, \ in RC4()
120 (RC4_CHUNK)d[(tx+ty)&0xff]\ in RC4()
267 tx=d[x]; \ in RC4()
268 y=(tx+y)&0xff; \ in RC4()
270 d[y]=tx; \ in RC4()
271 (out) = d[(tx+ty)&0xff]^ (in); in RC4()
/external/webkit/WebCore/platform/graphics/transforms/
DTranslateTransformOperation.h35 …static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, Operatio… in create() argument
37 return adoptRef(new TranslateTransformOperation(tx, ty, Length(0, Fixed), type)); in create()
40 …static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, const Le… in create() argument
42 return adoptRef(new TranslateTransformOperation(tx, ty, tz, type)); in create()
71 …TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType ty… in TranslateTransformOperation() argument
72 : m_x(tx) in TranslateTransformOperation()
/external/dropbear/libtommath/
Dbn_fast_s_mp_sqr.c45 int tx, ty, iy; in fast_s_mp_sqr() local
54 tx = ix - ty; in fast_s_mp_sqr()
57 tmpx = a->dp + tx; in fast_s_mp_sqr()
63 iy = MIN(a->used-tx, ty+1); in fast_s_mp_sqr()
69 iy = MIN(iy, (ty-tx+1)>>1); in fast_s_mp_sqr()
/external/fdlibm/
De_rem_pio2.c91 double tx[3]; local
166 tx[i] = (double)((int)(z));
167 z = (z-tx[i])*two24;
169 tx[2] = z;
171 while(tx[nx-1]==zero) nx--; /* skip zero term */
172 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);

12345678