/external/chromium_org/third_party/sqlite/src/test/ |
mallocK.test | 24 CREATE TABLE t1(a,b); 25 CREATE TABLE t2(x,y); 33 CREATE TABLE t1(a,b); 41 CREATE TABLE t1(a,b); 53 CREATE TABLE t1(a,b); 64 CREATE TABLE t1(a,b); 65 CREATE VIRTUAL TABLE t2 USING echo(t1);
|
vacuum.test | 37 CREATE TABLE t1(a INTEGER PRIMARY KEY, b, c); 47 CREATE INDEX i1 ON t1(b,c); 48 CREATE UNIQUE INDEX i2 ON t1(c,a); 49 CREATE TABLE t2 AS SELECT * FROM t1; 58 # Create bogus application-defined functions for functions used 84 CREATE TABLE t2 AS SELECT * FROM t1; 85 CREATE TABLE t3 AS SELECT * FROM t1; 86 CREATE VIEW v1 AS SELECT b, c FROM t3; 87 CREATE TRIGGER r1 AFTER DELETE ON t2 BEGIN SELECT 1; END; 92 # create view in the script $sql_script before executing it. Similarly [all...] |
vtab_alter.test | 34 # sqlite> CREATE TABLE t1_base(a, b, c); 35 # sqlite> CREATE VIRTUAL TABLE t1 USING(t1_base); 47 execsql { CREATE TABLE t1(a, b VARCHAR, c INTEGER) } 50 execsql { CREATE VIRTUAL TABLE t1echo USING echo(t1) } 72 CREATE TABLE t1_base(a, b, c); 73 CREATE VIRTUAL TABLE t1 USING echo('*_base'); 96 execsql { CREATE TABLE y_base(a, b, c) }
|
mallocC.test | 13 # CREATE TABLE statements in auto_vacuum mode. 87 CREATE TABLE t0(a, b, c); 110 CREATE TABLE t1(a UNIQUE, b UNIQUE, c UNIQUE); 111 CREATE TABLE t2(a UNIQUE, b UNIQUE, c UNIQUE); 112 CREATE TABLE t3(a UNIQUE, b UNIQUE, c UNIQUE); 113 CREATE TABLE t4(a UNIQUE, b UNIQUE, c UNIQUE); 114 CREATE TABLE t5(a UNIQUE, b UNIQUE, c UNIQUE); 115 CREATE TABLE t6(a UNIQUE, b UNIQUE, c UNIQUE); 116 CREATE TABLE t7(a UNIQUE, b UNIQUE, c UNIQUE); 117 CREATE TABLE t8(a UNIQUE, b UNIQUE, c UNIQUE) [all...] |
fkey3.test | 24 # Create a table and some data to work with. 29 CREATE TABLE t1(x INTEGER PRIMARY KEY); 32 CREATE TABLE t2(y INTEGER REFERENCES t1 (x)); 67 CREATE TABLE t1(x INTEGER PRIMARY KEY); 70 CREATE TABLE t2(y INTEGER PRIMARY KEY REFERENCES t1 (x) ON UPDATE SET NULL);
|
index2.test | 12 # focus of this file is testing the CREATE INDEX statement. 19 # Create a table with a large number of columns 22 set sql {CREATE TABLE t1(} 57 # Create indices with many columns 60 set sql "CREATE INDEX t1i1 ON t1("
|
keyword1.test | 21 CREATE TABLE t1(a, b); 94 db eval "CREATE TABLE \"$kw\"($kw $kw)" 96 db eval "CREATE TABLE ${kw}($kw $kw)" 109 db eval "CREATE INDEX \"$kw\" ON t1(a)" 112 db eval "CREATE INDEX $kw ON t1(a)"
|
mallocJ.test | 25 CREATE TABLE t1(x int, y int); 43 CREATE TABLE t1(a,b); 60 CREATE TABLE t1(a,b,c); 61 CREATE TABLE t2(x,y,z); 68 CREATE TABLE t1(["a"]);
|
tkt-78e04e52ea.test | 13 # Verify that we can create zero-length tables. 21 CREATE TABLE ""("" UNIQUE); 22 CREATE TABLE t2(x); 40 CREATE INDEX i1 ON ""("" COLLATE nocase); 57 CREATE INDEX "" ON t2(x);
|
tkt3080.test | 15 # invoke SQL statements that create and drop virtual tables. 26 SELECT execsql('CREATE TABLE t1(x)'); 32 INSERT INTO t1 VALUES('CREATE TABLE t2(y);'); 41 INSERT INTO t1 VALUES('CREATE TABLE t3(z); DROP TABLE t3;'); 57 CREATE VIRTUAL TABLE t4 USING echo(t2);
|
tkt3992.test | 19 CREATE TABLE parameters1( 25 CREATE TABLE parameters2( 50 CREATE TABLE t1(a, b); 68 CREATE TABLE t2(a REAL, b REAL, c REAL); 70 CREATE TRIGGER tr2 BEFORE UPDATE ON t2 BEGIN
|
index.test | 12 # focus of this file is testing the CREATE INDEX statement. 19 # Create a basic index and verify it is added to sqlite_master 22 execsql {CREATE TABLE test1(f1 int, f2 int, f3 int)} 23 execsql {CREATE INDEX index1 ON test1(f1)} 29 } {index1 {CREATE INDEX index1 ON test1(f1)} test1 index} 35 } {index1 {CREATE INDEX index1 ON test1(f1)} test1 index} 52 set v [catch {execsql {CREATE INDEX index1 ON test1(f1)}} msg] 60 execsql {CREATE TABLE test1(f1 int, f2 int, f3 int)} 61 set v [catch {execsql {CREATE INDEX index1 ON test1(f4)}} msg] 68 set v [catch {execsql {CREATE INDEX index1 ON test1(f1, f2, f4, f3)}} msg [all...] |
/external/llvm/examples/ParallelJIT/ |
ParallelJIT.cpp | 34 // Create the add1 function entry and insert this entry into module M. The 45 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", Add1F); 55 // Create the add instruction, inserting it into the end of BB. 58 // Create the return instruction and add it to the basic block 59 ReturnInst::Create(M->getContext(), Add, BB); 66 // Create the fib function and insert it into module M. This function is said 75 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", FibF); 85 // Create the true_block. 86 BasicBlock *RetBB = BasicBlock::Create(M->getContext(), "return", FibF); 87 // Create an exit block [all...] |
/hardware/qcom/media/mm-core/src/8960/ |
qc_registry_table_android.c | 45 NULL, // Create instance function 61 NULL, // Create instance function 77 NULL, // Create instance function 93 NULL, // Create instance function 109 NULL, // Create instance function 125 NULL, // Create instance function 141 NULL, // Create instance function 157 NULL, // Create instance function 173 NULL, // Create instance function 189 NULL, // Create instance functio [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/ |
FilterStackDBHelper.java | 27 private static final String SQL_CREATE_TABLE = "CREATE TABLE "; 70 StringBuilder create = new StringBuilder(SQL_CREATE_TABLE); local 71 create.append(table).append('('); 75 create.append(','); 79 create.append(val).append(' '); 82 create.append(')'); 85 db.execSQL(create.toString());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
NodeFactory.java | 31 * An object that can create {@link INode} proxies. 48 public NodeProxy create(CanvasViewInfo canvasViewInfo) { method in class:NodeFactory 49 return create(canvasViewInfo.getUiViewNode(), canvasViewInfo.getAbsRect()); 57 public NodeProxy create(UiViewElementNode uiNode) { method in class:NodeFactory 58 return create(uiNode, null /*bounds*/); 71 private NodeProxy create(UiViewElementNode uiNode, Rectangle bounds) { method in class:NodeFactory 75 // Create a new proxy if the key doesn't exist
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
ZoomControlsRuleTest.java | 29 IDragElement[] elements = TestDragElement.create(TestDragElement.create( 32 INode layout = TestNode.create("android.widget.ZoomControls").id("@+id/ZoomControls01") 34 TestNode.create("android.widget.Button").id("@+id/Button01").bounds( 36 TestNode.create("android.widget.Button").id("@+id/Button02").bounds( 38 TestNode.create("android.widget.Button").id("@+id/Button03").bounds( 40 TestNode.create("android.widget.Button").id("@+id/Button04").bounds(
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ControlPointTest.java | 25 ControlPoint point = ControlPoint.create(mCanvas, mouseEvent); 31 ControlPoint point = ControlPoint.create(mCanvas, 10, 20); 37 ControlPoint point = ControlPoint.create(new TestLayoutCanvas(), 10, 20); 56 ControlPoint point1 = ControlPoint.create(mCanvas, 1, 1); 57 ControlPoint point2 = ControlPoint.create(mCanvas, 1, 2); 58 ControlPoint point3 = ControlPoint.create(mCanvas, 2, 1); 59 ControlPoint point2b = ControlPoint.create(mCanvas, 1, 2);
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
proxies.js | 34 test(Proxy.create, x, y, z) 48 function TestGetOwnProperty2(create, handler) { 49 var p = create(handler) 80 TestGetOwnProperty(Proxy.create({ 91 function TestGetOwnPropertyThrow2(create, handler) { 92 var p = create(handler) 114 TestGetOwnPropertyThrow(Proxy.create({ 130 function TestGet2(create, handler) { 131 var p = create(handler) 143 var o = Object.create(p, {x: {value: 88}} [all...] |
/external/v8/test/mjsunit/harmony/ |
proxies.js | 34 test(Proxy.create, x, y, z) 48 function TestGetOwnProperty2(create, handler) { 49 var p = create(handler) 80 TestGetOwnProperty(Proxy.create({ 91 function TestGetOwnPropertyThrow2(create, handler) { 92 var p = create(handler) 114 TestGetOwnPropertyThrow(Proxy.create({ 130 function TestGet2(create, handler) { 131 var p = create(handler) 143 var o = Object.create(p, {x: {value: 88}} [all...] |
/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
RSColorMatrixTest.java | 40 RenderScript mRS = RenderScript.create(getContext()); 60 Allocation rsInput = Allocation.createTyped(mRS, build.create()); 61 Allocation rsOutput = Allocation.createTyped(mRS, build.create()); 64 ScriptIntrinsicColorMatrix cm = ScriptIntrinsicColorMatrix.create(mRS, Element.RGBA_8888(mRS)); 82 RenderScript mRS = RenderScript.create(getContext()); 93 Allocation rsInput = Allocation.createTyped(mRS, build.create()); 94 Allocation rsOutput = Allocation.createTyped(mRS, build.create()); 97 ScriptIntrinsicColorMatrix cm = ScriptIntrinsicColorMatrix.create(mRS, Element.RGBA_8888(mRS)); 114 RenderScript mRS = RenderScript.create(getContext()); 128 Allocation rsInput = Allocation.createTyped(mRS, build.create()); [all...] |
/external/chromium_org/net/quic/ |
quic_bandwidth.h | 23 // Create a new QuicBandwidth holding the bits per second. 26 // Create a new QuicBandwidth holding the kilo bits per second. 29 // Create a new QuicBandwidth holding the bytes per second. 32 // Create a new QuicBandwidth holding the kilo bytes per second. 35 // Create a new QuicBandwidth based on the bytes per the elapsed delta.
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
proto-chain-load.js | 32 var obj4 = Object.create(null, { f4: {value: 4} }); 33 var obj3 = Object.create(obj4, { f3: {value: 3} }); 34 var obj2 = Object.create(obj3, { f2: {value: 2} }); 35 var obj1 = Object.create(obj2, { f1: {value: 1} }); 36 var obj0 = Object.create(obj1, { f0: {value: 0} });
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-omit-checks.js | 33 function create() { function 36 var b1 = create(); 37 var b2 = create(); 38 var b3 = create(); 39 var b4 = create();
|
/packages/apps/Nfc/nci/jni/ |
IntervalTimer.cpp | 39 if (!create(cb)) 45 if (!create(cb)) 81 bool IntervalTimer::create(TIMER_FUNC cb) function in class:IntervalTimer 97 ALOGE("IntervalTimer::create: fail create timer");
|