HomeSort by relevance Sort by last modified time
    Searched full:select (Results 626 - 650 of 8132) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/sqlite/src/test/
pager1.test 64 db eval "SELECT rowid, * FROM $table WHERE rowid = ($id-1)" {
91 do_test pager1-$tn.2 { sql2 { SELECT * FROM t1 } } {1 one 2 two}
92 do_test pager1-$tn.3 { sql3 { SELECT * FROM t1 } } {1 one 2 two}
105 do_test pager1-$tn.5 { sql2 { SELECT * FROM t1 } } {1 one 2 two}
106 do_test pager1-$tn.7 { sql1 { SELECT * FROM t1 } } {1 one 2 two 3 three}
130 do_test pager1-$tn.11 { sql1 { SELECT * FROM t1 } } {1 one 2 two 3 three}
131 do_test pager1-$tn.12 { sql2 { SELECT * FROM t1 } } {1 one 2 two 3 three}
132 do_test pager1-$tn.13 { sql3 { SELECT * FROM t1 } } {1 one 2 two 3 three}
148 sql2 { BEGIN; SELECT * FROM t1; }
153 do_test pager1-$tn.17 { sql3 { SELECT * FROM t1 } } {1 one 2 two 3 three
    [all...]
crash3.test 68 {INSERT INTO abc SELECT * FROM abc} {1 2 3 1 2 3} \
91 set rand "SELECT randstr($tn,$tn);"
99 execsql { SELECT * FROM abc }
119 SELECT randstr(10,1000),randstr(10,1000),randstr(10,1000) FROM abc;
121 SELECT randstr(10,1000),randstr(10,1000),randstr(10,1000) FROM abc;
123 SELECT randstr(10,1000),randstr(10,1000),randstr(10,1000) FROM abc;
125 SELECT randstr(10,1000),randstr(10,1000),randstr(10,1000) FROM abc;
127 SELECT randstr(10,1000),randstr(10,1000),randstr(10,1000) FROM abc;
129 SELECT randstr(10,1000),randstr(10,1000),randstr(10,1000) FROM abc;
147 SELECT randstr($ii,$ii+10)
    [all...]
e_delete.test 65 1 "DELETE FROM t1 ; SELECT * FROM t1" {}
66 2 "DELETE FROM main.t2 ; SELECT * FROM t2" {}
74 1 "DELETE FROM t3 WHERE 1 ; SELECT x FROM t3" {}
75 2 "DELETE FROM main.t4 WHERE 0 ; SELECT x FROM t4" {1 2 3 4 5}
76 3 "DELETE FROM t4 WHERE 0.0 ; SELECT x FROM t4" {1 2 3 4 5}
77 4 "DELETE FROM t4 WHERE NULL ; SELECT x FROM t4" {1 2 3 4 5}
78 5 "DELETE FROM t4 WHERE y!='two'; SELECT x FROM t4" {2}
79 6 "DELETE FROM t4 WHERE y='two' ; SELECT x FROM t4" {}
80 7 "DELETE FROM t5 WHERE x=(SELECT max(x) FROM t5);SELECT x FROM t5" {1 2 3 4
    [all...]
exec.test 24 SELECT * FROM t1;
28 sqlite3_exec db {/* comment */;;; SELECT * FROM t1; /* comment */}
34 sqlite3_exec db {SELECT * FROM t1}
fts1n.test 31 SELECT a, b, c FROM t1 WHERE c MATCH 'two';
39 SELECT a, b, c FROM t1 WHERE c MATCH 'two';
41 SELECT a, b, c FROM t1 WHERE c MATCH 'two';
fts3fault.test 73 execsql { SELECT * FROM t3 WHERE t3 MATCH 'x' }
75 execsql { SELECT count(rowid) FROM t3 WHERE t3 MATCH 'aa*' }
91 execsql { SELECT content FROM t4 }
93 execsql { SELECT optimize(t4) FROM t4 LIMIT 1 }
115 execsql { SELECT rowid FROM t5 WHERE t5 MATCH 'british' }
127 execsql { SELECT rowid FROM t6 }
185 execsql { SELECT mit(matchinfo(t8, 'x')) FROM t8 WHERE t8 MATCH 'a b c' }
193 execsql { SELECT mit(matchinfo(t8, 's')) FROM t8 WHERE t8 MATCH 'a b c' }
201 execsql { SELECT mit(matchinfo(t8, 'a')) FROM t8 WHERE t8 MATCH 'a b c' }
209 execsql { SELECT mit(matchinfo(t8, 'l')) FROM t8 WHERE t8 MATCH 'a b c'
    [all...]
fuzz3.test 57 set cksum [execsql { SELECT md5sum(a, b, c) FROM t1 }]
58 append cksum [execsql { SELECT md5sum(d, e, f) FROM t2 }]
136 {SELECT * FROM t2 ORDER BY d}
137 {SELECT * FROM t1}
138 {SELECT * FROM t2}
139 {SELECT * FROM t1 ORDER BY a}
140 {SELECT * FROM t1 WHERE a = (SELECT a FROM t1 WHERE rowid=25)}
141 {SELECT * FROM t2 WHERE d = (SELECT d FROM t2 WHERE rowid=1)}
    [all...]
schema4.test 34 CREATE VIEW v1 AS SELECT * FROM tbl;
55 SELECT x, a, b FROM log;
69 SELECT x, a, b FROM log;
80 SELECT x, a, b FROM log;
85 CREATE VIEW v1 AS SELECT * FROM tbl;
101 SELECT x, a, b FROM log;
129 SELECT * FROM log;
139 SELECT * FROM log;
152 select sql from sqlite_temp_master WHERE type='table';
158 select sql from sqlite_temp_master WHERE type='table'
    [all...]
tkt2391.test 28 SELECT count(*) FROM folders WHERE foldername < 'FolderC';
34 SELECT count(*) FROM folders WHERE foldername < 'FolderC' COLLATE nocase;
45 SELECT count(*) FROM folders WHERE foldername < 'FolderC' COLLATE nocase;
tkt3581.test 27 INSERT INTO t2 SELECT * FROM t1;
34 SELECT a FROM t1
45 SELECT a FROM t2
tkt3731.test 39 SELECT * FROM t1;
49 INSERT INTO t1 SELECT * FROM t2;
50 SELECT * FROM t1;
tkt3773.test 29 SELECT a FROM (
30 SELECT a, b FROM t1
32 SELECT x, y FROM t2
tkt3832.test 35 INSERT INTO t1 SELECT b, a FROM t1 ORDER BY b;
36 SELECT rowid, * FROM t1;
37 SELECT rowid, * FROM log;
walshared.test 40 INSERT INTO t1 SELECT randomblob(100), randomblob(200) FROM t1;
41 INSERT INTO t1 SELECT randomblob(100), randomblob(200) FROM t1;
42 INSERT INTO t1 SELECT randomblob(100), randomblob(200) FROM t1;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
Intents.java 39 startActivity(Intent.createChooser(intent, "Select music"));
45 startActivity(Intent.createChooser(intent, "Select image"));
51 startActivity(Intent.createChooser(intent, "Select stream"));
  /external/bzip2/
bz-common.xsl 6 <xsl:param name="section.autolabel" select="'1'"/>
7 <xsl:param name="section.label.includes.component.label" select="'1'"/>
10 <xsl:param name="local.l10n.xml" select="document('')"/>
  /external/chromium/chrome/browser/resources/options/
content_settings.css 19 select.exception-setting {
23 /* Hacks to make the <select> align better with the <input>. */
24 html[toolkit=gtk] select.exception-setting {
  /external/chromium_org/third_party/WebKit/PerformanceTests/ShadowDOM/
ChangingSelect.html 22 shadowRoot.innerHTML = '<h2>Selected</h2><div id="selected"><content select=".selected"></content></div><h2>NonSelected</h2><div id="nonselected"><content></content></div>';
44 contentSelected.select = '.' + typeNames[j];
61 description: "Measure distribution and layout performance when select attribute is changed",
  /external/clang/test/CodeGen/
conditional.c 51 // CHECK: select i1 {{.*}}, i32 4, i32 5
59 // CHECK: select i1 {{.*}}, i32 4, i32 5
65 // CHECK: select i1 {{.*}}, double 4.0{{.*}}, double 2.0
  /external/clang/tools/clang-format/
clang-format-bbedit.applescript 3 -- select the script from the Script menu and clang-format will format the
24 select characters 1 thru currentLength of text document 1
26 select characters selectionOffset thru (selectionOffset + selectionLength - 1) of text document 1
  /external/kernel-headers/original/linux/
tiocl.h 5 #define TIOCL_SELCHAR 0 /* select characters */
6 #define TIOCL_SELWORD 1 /* select whole words */
7 #define TIOCL_SELLINE 2 /* select whole lines */
  /external/llvm/test/CodeGen/AArch64/
regress-f128csel-flags.ll 4 ; when lowering a 128-bit "select" to branches. This meant a subsequent use
13 %val = select i1 %tst, fp128 %a, fp128 %b
18 %retval = select i1 %tst, double 4.0, double 5.0
  /external/llvm/test/CodeGen/PowerPC/
2011-12-06-SpillAndRestoreCR.ll 57 %yindex.3 = select i1 %cmp10, i32 %2, i32 %yindex.233
59 %xindex.3 = select i1 %cmp10, i32 %3, i32 %xindex.234
60 %max.3 = select i1 %cmp10, float %1, float %max.235
66 %yindex.3.1 = select i1 %cmp10.1, i32 %5, i32 %yindex.3
67 %xindex.3.1 = select i1 %cmp10.1, i32 %3, i32 %xindex.3
68 %max.3.1 = select i1 %cmp10.1, float %4, float %max.3
74 %yindex.3.2 = select i1 %cmp10.2, i32 %7, i32 %yindex.3.1
75 %xindex.3.2 = select i1 %cmp10.2, i32 %3, i32 %xindex.3.1
76 %max.3.2 = select i1 %cmp10.2, float %6, float %max.3.1
82 %yindex.3.3 = select i1 %cmp10.3, i32 %9, i32 %yindex.3.
    [all...]
  /external/llvm/test/CodeGen/Thumb2/
thumb2-select_xform.ll 11 %tmp2 = select i1 %tmp1, i32 0, i32 2147483647
24 %tmp2 = select i1 %tmp1, i32 0, i32 2147483648
36 %tmp2 = select i1 %tmp1, i32 0, i32 10
  /external/llvm/test/CodeGen/X86/
2011-01-07-LegalizeTypesCrash.ll 9 %_comp = select i1 %cond, i8 0, i8 undef
12 %_comp4 = select i1 %cond3, i8 0, i8 undef
15 %_comp9 = select i1 %cond8, i8 0, i8 undef

Completed in 632 milliseconds

<<21222324252627282930>>