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

1 2 3 4 5 6 7 8 91011

  /external/webkit/LayoutTests/storage/
test-authorizer.js 15 db.transaction(function(tx) {
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)
36 tx.executeSql(statement, [],
38 function(tx, error) { return statementErrorCallback(operation, error); });
41 function createTableCallback(tx)
43 executeStatement(tx, "CREATE TABLE Test (Foo int);", "SQLITE_CREATE_TABLE")
    [all...]
sql-error-codes.js 37 testTransaction(db, function(tx) { throw "Exception thrown in transaction callback."; }, "UNKNOWN_ERR");
43 function(tx) {
44 tx.executeSql("BAD STATEMENT", [], null, function(tx, error) { return true; });
50 testTransaction(db, function(tx) { tx.executeSql("BAD STATEMENT"); }, "SYNTAX_ERR");
56 function(tx) {
57 tx.executeSql("CREATE TABLE IF NOT EXISTS BadBindNumberTest (Foo INT, Bar INT)");
58 tx.executeSql("INSERT INTO BadBindNumberTest VALUES (?, ?)", [1]);
67 testTransaction(db, function(tx) {
    [all...]
change-version-handle-reuse.js 15 db.changeVersion(version, newVersion, function(tx) {
33 db.transaction(function(tx) {
34 tx.executeSql("SELECT * from FooBar", [], function(tx) {
37 }, function(tx, error) {
sql-data-types.js 33 function testDBValues(tx, result) {
42 tx.executeSql("DROP TABLE DataTypeTestTable", [],
43 function(tx, result) {
46 function(tx, result) {
51 function fetchDBValuesStmt(tx, result) {
52 tx.executeSql("SELECT * FROM DataTypeTestTable", [],
54 function(tx,error) {
59 function insertTestValuesStmt(tx, result) {
60 tx.executeSql("INSERT INTO DataTypeTestTable (id, real, timestamp, text, blob) VALUES (?,?,?,?,?)",
63 function(tx, error)
    [all...]
multiple-databases-garbage-collection.js 30 persistentDB.transaction(function(tx) {
31 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTest (randomData)", [], function(tx, result) {
33 tx.executeSql("INSERT INTO DataTest (randomData) VALUES (1)", []);
43 forgottenDB.transaction(function(tx) {
44 tx.executeSql("CREATE TABLE IF NOT EXISTS EmptyTable (unimportantData)", []);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLBlock.cpp 78 void RenderMathMLBlock::paint(PaintInfo& info, int tx, int ty)
80 RenderBlock::paint(info, tx, ty);
85 tx += x();
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), IntPoint(tx, ty + offsetHeight()))
    [all...]
RenderMathMLRoot.h 39 virtual void paint(PaintInfo&, int tx, int ty);
RenderMathMLSquareRoot.h 38 virtual void paint(PaintInfo&, int tx, int ty);
RenderMathMLFraction.h 42 virtual void paint(PaintInfo&, int tx, int ty);
  /external/webkit/Source/WebCore/rendering/
RenderLineBoxList.h 67 bool hitTest(RenderBoxModelObject*, const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, HitTestAction) const;
70 bool anyLineIntersectsRect(RenderBoxModelObject*, const IntRect&, int tx, int ty, bool usePrintRect = false, int outlineSize = 0) const;
71 bool lineIntersectsDirtyRect(RenderBoxModelObject*, InlineFlowBox*, const PaintInfo&, int tx, int ty) const;
72 bool rangeIntersectsRect(RenderBoxModelObject*, int logicalTop, int logicalBottom, const IntRect&, int tx, int ty) const;
RenderReplica.h 48 virtual void paint(PaintInfo&, int tx, int ty);
RenderFieldset.h 47 virtual void paintBoxDecorations(PaintInfo&, int tx, int ty);
48 virtual void paintMask(PaintInfo&, int tx, int ty);
RenderListBox.h 49 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, HitTestAction);
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);
RenderReplica.cpp 63 void RenderReplica::paint(PaintInfo& paintInfo, int tx, int ty)
68 tx += x();
79 paintMask(paintInfo, tx, ty);
EllipsisBox.h 42 virtual void paint(PaintInfo&, int tx, int ty, int lineTop, int lineBottom);
43 virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, int x, int y, int tx, int ty, int lineTop, int lineBottom);
45 IntRect selectionRect(int tx, int ty);
50 void paintSelection(GraphicsContext*, int tx, int ty, RenderStyle*, const Font&);
EllipsisBox.cpp 32 void EllipsisBox::paint(PaintInfo& paintInfo, int tx, int ty, int lineTop, int lineBottom)
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()));
67 tx += m_x + m_logicalWidth - m_markupBox->x();
69 m_markupBox->paint(paintInfo, tx, ty, lineTop, lineBottom);
73 IntRect EllipsisBox::selectionRect(int tx, int ty)
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)
96 context->clip(IntRect(m_x + tx, y + ty, m_logicalWidth, h));
98 IntPoint(m_x + tx, m_y + ty + y), h, c, style->colorSpace())
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atm_eni.h 14 int tx,rx; /* values are in percent and must be > 100 */ member in struct:eni_multipliers
  /system/netd/
ThrottleController.h 24 static int getInterfaceTxThrottle(const char *iface, int *tx);
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TranslateTransformOperation.h 35 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, OperationType type)
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)
42 return adoptRef(new TranslateTransformOperation(tx, ty, tz, type));
75 TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType type)
76 : m_x(tx)
  /development/samples/ApiDemos/src/com/example/android/apis/media/
MediaPlayerDemo_Audio.java 40 private TextView tx; field in class:MediaPlayerDemo_Audio
45 tx = new TextView(this);
46 setContentView(tx);
84 tx.setText("Playing audio...");
  /external/dropbear/libtommath/
bn_fast_s_mp_mul_digs.c 53 int tx, ty; local
59 tx = ix - ty;
62 tmpx = a->dp + tx;
66 while (tx++ < a->used && ty-- >= 0) { ... }
68 iy = MIN(a->used-tx, ty+1);
bn_fast_s_mp_mul_high_digs.c 45 int tx, ty, iy; local
50 tx = ix - ty;
53 tmpx = a->dp + tx;
57 while (tx++ < a->used && ty-- >= 0) { ... }
59 iy = MIN(a->used-tx, ty+1);
bn_fast_s_mp_sqr.c 22 * (ty-tx) so that it never happens. You double all those
45 int tx, ty, iy; local
54 tx = ix - ty;
57 tmpx = a->dp + tx;
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/svg/
RenderSVGBlock.h 39 virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
  /external/openssl/crypto/rc4/asm/
rc4-586.pl 39 $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 her
    [all...]

Completed in 418 milliseconds

1 2 3 4 5 6 7 8 91011