Home
last modified time | relevance | path

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

12345678910

/external/webkit/LayoutTests/storage/
Dtest-authorizer.js15 db.transaction(function(tx) { argument
16 tx.executeSql("DROP TABLE IF EXISTS Test;");
17 tx.executeSql("DROP INDEX IF EXISTS TestIndex;");
18 tx.executeSql("DROP VIEW IF EXISTS TestView;");
19 tx.executeSql("DROP TRIGGER IF EXISTS TestTrigger;");
34 function executeStatement(tx, statement, operation) argument
36 tx.executeSql(statement, [],
38 function(tx, error) { return statementErrorCallback(operation, error); }); argument
41 function createTableCallback(tx) argument
43 executeStatement(tx, "CREATE TABLE Test (Foo int);", "SQLITE_CREATE_TABLE");
[all …]
Dsql-error-codes.js37 …testTransaction(db, function(tx) { throw "Exception thrown in transaction callback."; }, "UNKNOWN_… argument
43 function(tx) { argument
44tx.executeSql("BAD STATEMENT", [], null, function(tx, error) { return true; }); argument
50 testTransaction(db, function(tx) { tx.executeSql("BAD STATEMENT"); }, "SYNTAX_ERR"); argument
56 function(tx) { argument
57tx.executeSql("CREATE TABLE IF NOT EXISTS BadBindNumberTest (Foo INT, Bar INT)");
58 tx.executeSql("INSERT INTO BadBindNumberTest VALUES (?, ?)", [1]);
67 testTransaction(db, function(tx) { argument
68 tx.executeSql("CREATE TABLE IF NOT EXISTS BadBindTypeTest (Foo TEXT)");
69 tx.executeSql("INSERT INTO BadBindTypeTest VALUES (?)", [badString]);
[all …]
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 …]
Dmultiple-transactions-on-different-handles.js32 db.transaction(function(tx) { argument
34 tx.executeSql("SELECT COUNT(*) FROM Test;", [],
36 function(tx, error) { statementErrorCallback(dbName, "read", error); }); argument
39 tx.executeSql("INSERT INTO Test VALUES (?);", [val],
41 function(tx, error) { statementErrorCallback(dbName, "write", error); }); argument
58 db.transaction(function(tx) { argument
60 tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo int);", [],
61 function(result) {}, function(tx, error) {}); argument
Dmultiple-databases-garbage-collection.js30 persistentDB.transaction(function(tx) { argument
31tx.executeSql("CREATE TABLE IF NOT EXISTS DataTest (randomData)", [], function(tx, result) { argument
33 tx.executeSql("INSERT INTO DataTest (randomData) VALUES (1)", []);
43 forgottenDB.transaction(function(tx) { argument
44 tx.executeSql("CREATE TABLE IF NOT EXISTS EmptyTable (unimportantData)", []);
Dopen-database-while-transaction-in-progress.js20 db1.transaction(function(tx) { argument
22 tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo BLOB);");
23 tx.executeSql("INSERT INTO Test VALUES (ZEROBLOB(2097152));", [],
28 function(tx, error) { argument
34 tx.executeSql("DELETE FROM Test;");
Dchange-version-handle-reuse.js15 db.changeVersion(version, newVersion, function(tx) { argument
33 db.transaction(function(tx) { argument
34 tx.executeSql("SELECT * from FooBar", [], function(tx) { argument
37 }, function(tx, error) { argument
/external/webkit/Source/WebCore/rendering/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 + topStart), IntPoint(tx + offsetWidth(), ty + topStart)); in paint()
109 … info.context->drawLine(IntPoint(tx, ty + baseline), IntPoint(tx + offsetWidth(), ty + baseline)); in paint()
DRenderMathMLSquareRoot.cpp69 void RenderMathMLSquareRoot::paint(PaintInfo& info, int tx, int ty) in paint() argument
71 RenderMathMLBlock::paint(info, tx, ty); in paint()
76 tx += x(); in paint()
112 FloatPoint topStart(tx + frontWidth - topStartShift, ty); in paint()
113 …FloatPoint bottomLeft(tx + frontWidth * gRadicalBottomPointXPos , ty + maxHeight + gRadicalBasePad… in paint()
114 …FloatPoint topLeft(tx + frontWidth * gRadicalTopLeftPointXPos , ty + gRadicalTopLeftPointYPos * ma… in paint()
115 FloatPoint leftEnd(tx , topLeft.y() + gRadicalLeftEndYShift * style()->fontSize()); in paint()
/external/strace/
Dtime.c582 } tx; in tprint_timex32() local
584 if (umove(tcp, addr, &tx) < 0) in tprint_timex32()
588 printflags(adjtimex_modes, tx.modes, "ADJ_???"); in tprint_timex32()
590 tx.offset, tx.freq, tx.maxerror); in tprint_timex32()
591 tprintf("esterror=%u, status=", tx.esterror); in tprint_timex32()
592 printflags(adjtimex_status, tx.status, "STA_???"); in tprint_timex32()
594 tx.constant, tx.precision); in tprint_timex32()
595 tprintf("tolerance=%d, time=", tx.tolerance); in tprint_timex32()
596 tprint_timeval32(tcp, &tx.time); in tprint_timex32()
598 tx.tick, tx.ppsfreq, tx.jitter); in tprint_timex32()
[all …]
/external/openssl/crypto/rc4/asm/
Drc4-586.pl67 $tx="ecx";
77 &add (&LB($yy),&LB($tx));
79 &mov (&DWP(0,$dat,$yy,4),$tx);
81 &add ($ty,$tx);
86 &mov ($tx,&DWP(0,$dat,$xx,4));
88 &mov ($tx,&wparam(3)); # reload [re-biased] out
105 &add (&LB($yy),&LB($tx));
112 &mov (&DWP(0,$dat,$yy,4),$tx);
115 &add (&LB($ty),&LB($tx));
117 &mov ($tx,&DWP(0,$dat,@XX[1],4));
[all …]
/external/webkit/Source/WebCore/rendering/
DEllipsisBox.cpp32 void EllipsisBox::paint(PaintInfo& paintInfo, int tx, int ty, int lineTop, int lineBottom) in paint() argument
47 paintSelection(context, tx, ty, style, style->font()); in paint()
56 …::AllowTrailingExpansion, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->f… in paint()
67 tx += m_x + m_logicalWidth - m_markupBox->x(); in paint()
69 m_markupBox->paint(paintInfo, tx, ty, lineTop, lineBottom); in paint()
73 IntRect EllipsisBox::selectionRect(int tx, int ty) in selectionRect() argument
78 IntPoint(m_x + tx, m_y + ty + root()->selectionTop()), root()->selectionHeight())); in selectionRect()
81 void EllipsisBox::paintSelection(GraphicsContext* context, int tx, int ty, RenderStyle* style, cons… in paintSelection() argument
96 context->clip(IntRect(m_x + tx, y + ty, m_logicalWidth, h)); in paintSelection()
98 IntPoint(m_x + tx, m_y + ty + y), h, c, style->colorSpace()); in paintSelection()
[all …]
DRenderFieldset.cpp131 void RenderFieldset::paintBoxDecorations(PaintInfo& paintInfo, int tx, int ty) in paintBoxDecorations() argument
140 return RenderBlock::paintBoxDecorations(paintInfo, tx, ty); in paintBoxDecorations()
152 tx += xOff; in paintBoxDecorations()
155 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Normal); in paintBoxDecorations()
157 …e()->visitedDependentColor(CSSPropertyBackgroundColor), style()->backgroundLayers(), tx, ty, w, h); in paintBoxDecorations()
158 paintBoxShadow(paintInfo.context, tx, ty, w, h, style(), Inset); in paintBoxDecorations()
173 graphicsContext->clipOut(IntRect(tx + legend->x(), clipTop, legend->width(), clipHeight)); in paintBoxDecorations()
175 int clipLeft = tx; in paintBoxDecorations()
180 paintBorder(paintInfo.context, tx, ty, w, h, style(), true, true); in paintBoxDecorations()
185 void RenderFieldset::paintMask(PaintInfo& paintInfo, int tx, int ty) in paintMask() argument
[all …]
DRenderListBox.h49 IntRect itemBoundingBoxRect(int tx, int ty, int index);
68 virtual void paintObject(PaintInfo&, int tx, int ty);
69 virtual IntRect controlClipRect(int tx, int ty) const;
71 virtual bool isPointInOverflowControl(HitTestResult&, int x, int y, int tx, int ty);
82 virtual void addFocusRingRects(Vector<IntRect>&, int tx, int ty);
99 …virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitT…
135 void paintScrollbar(PaintInfo&, int tx, int ty);
136 void paintItemForeground(PaintInfo&, int tx, int ty, int listIndex);
137 void paintItemBackground(PaintInfo&, int tx, int ty, int listIndex);
DRenderLineBoxList.cpp149 …odelObject* renderer, int logicalTop, int logicalBottom, const IntRect& rect, int tx, int ty) const in rangeIntersectsRect() argument
166 physicalStart += tx; in rangeIntersectsRect()
174 …ineIntersectsRect(RenderBoxModelObject* renderer, const IntRect& rect, int tx, int ty, bool usePri… in anyLineIntersectsRect() argument
191 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, rect, tx, ty); in anyLineIntersectsRect()
194 …nderBoxModelObject* renderer, InlineFlowBox* box, const PaintInfo& paintInfo, int tx, int ty) const in lineIntersectsDirtyRect() argument
200 return rangeIntersectsRect(renderer, logicalTop, logicalBottom, paintInfo.rect, tx, ty); in lineIntersectsDirtyRect()
203 void RenderLineBoxList::paint(RenderBoxModelObject* renderer, PaintInfo& paintInfo, int tx, int ty)… in paint() argument
222 if (!anyLineIntersectsRect(renderer, paintInfo.rect, tx, ty, usePrintRect, outlineSize)) in paint()
260 if (lineIntersectsDirtyRect(renderer, curr, info, tx, ty)) { in paint()
262 curr->paint(info, tx, ty, root->lineTop(), root->lineBottom()); in paint()
[all …]
DRenderListBox.cpp251 IntRect RenderListBox::itemBoundingBoxRect(int tx, int ty, int index) in itemBoundingBoxRect() argument
253 return IntRect(tx + borderLeft() + paddingLeft(), in itemBoundingBoxRect()
258 void RenderListBox::paintObject(PaintInfo& paintInfo, int tx, int ty) in paintObject() argument
268 paintItemForeground(paintInfo, tx, ty, index); in paintObject()
274 RenderBlock::paintObject(paintInfo, tx, ty); in paintObject()
281 paintScrollbar(paintInfo, tx, ty); in paintObject()
285 paintScrollbar(paintInfo, tx, ty); in paintObject()
291 paintItemBackground(paintInfo, tx, ty, index); in paintObject()
301 void RenderListBox::addFocusRingRects(Vector<IntRect>& rects, int tx, int ty) in addFocusRingRects() argument
304 return RenderBlock::addFocusRingRects(rects, tx, ty); in addFocusRingRects()
[all …]
DRenderScrollbarPart.cpp162 void RenderScrollbarPart::paintIntoRect(GraphicsContext* graphicsContext, int tx, int ty, const Int… in paintIntoRect() argument
165 setLocation(rect.x() - tx, rect.y() - ty); in paintIntoRect()
174 paint(paintInfo, tx, ty); in paintIntoRect()
176 paint(paintInfo, tx, ty); in paintIntoRect()
178 paint(paintInfo, tx, ty); in paintIntoRect()
180 paint(paintInfo, tx, ty); in paintIntoRect()
182 paint(paintInfo, tx, ty); in paintIntoRect()
DRenderLineBoxList.h67 …bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, int x, int y, int tx, i…
70 …bool anyLineIntersectsRect(RenderBoxModelObject*, const IntRect&, int tx, int ty, bool usePrintRec…
71 …bool lineIntersectsDirtyRect(RenderBoxModelObject*, InlineFlowBox*, const PaintInfo&, int tx, int …
72 …ct(RenderBoxModelObject*, int logicalTop, int logicalBottom, const IntRect&, int tx, int ty) const;
DRenderWidget.cpp253 void RenderWidget::paint(PaintInfo& paintInfo, int tx, int ty) in paint() argument
255 if (!shouldPaint(paintInfo, tx, ty)) in paint()
258 tx += x(); in paint()
262 paintBoxDecorations(paintInfo, tx, ty); in paint()
265 paintMask(paintInfo, tx, ty); in paint()
274 paintCustomHighlight(tx - x(), ty - y(), style()->highlight(), true); in paint()
278 IntRect borderRect = IntRect(tx, ty, width(), height()); in paint()
295 … IntPoint paintLocation(tx + borderLeft() + paddingLeft(), ty + borderTop() + paddingTop()); in paint()
397 …nt(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestActi… in nodeAtPoint() argument
400 bool inside = RenderReplaced::nodeAtPoint(request, result, x, y, tx, ty, action); in nodeAtPoint()
/external/webkit/Tools/CSSTestSuiteHarness/harness/
Dharness.js1487 function creation(tx) { argument
1488 _self.databaseCreated(tx);
1491 function migration1_0To1_1(tx) { argument
1494 tx.executeSql('ALTER TABLE tests ADD COLUMN seen BOOLEAN DEFAULT \"FALSE\"', null, function() {
1520 TestSuite.prototype.databaseCreated = function(tx) argument
1528tx.executeSql('CREATE TABLE tests (test PRIMARY KEY UNIQUE, ref, title, flags, links, assertion, h…
1529 function(tx, results) { argument
1545 this.db.transaction(function (tx) { argument
1547tx.executeSql('UPDATE tests SET hstatus=?, hcomment=? WHERE test=?\n', [result, comment, test], nu…
1549tx.executeSql('UPDATE tests SET xstatus=?, xcomment=? WHERE test=?\n', [result, comment, test], nu…
[all …]
/external/skia/src/gpu/
DGrClip.cpp30 GrClip::GrClip(GrClipIterator* iter, GrScalar tx, GrScalar ty, in GrClip() argument
32 this->setFromIterator(iter, tx, ty, bounds); in GrClip()
86 void GrClip::setFromIterator(GrClipIterator* iter, GrScalar tx, GrScalar ty, in setFromIterator() argument
105 if (tx || ty) { in setFromIterator()
106 e.fRect.offset(tx, ty); in setFromIterator()
126 if (tx || ty) { in setFromIterator()
127 e.fPath.offset(tx, ty); in setFromIterator()
/external/webkit/Source/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()
75 …TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType ty… in TranslateTransformOperation() argument
76 : m_x(tx) in TranslateTransformOperation()
/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/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);

12345678910