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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/sqlite/src/test/
selectB.test 71 SELECT * FROM (SELECT a FROM t1 UNION ALL SELECT d FROM t2)
73 SELECT a FROM t1 UNION ALL SELECT d FROM t2
77 SELECT * FROM (SELECT a FROM t1 UNION ALL SELECT d FROM t2) ORDER BY 1
79 SELECT a FROM t1 UNION ALL SELECT d FROM t2 ORDER BY
    [all...]
tkt2339.test 37 SELECT * FROM (SELECT * FROM t1 ORDER BY num DESC LIMIT 2)
39 SELECT * FROM (SELECT * FROM t2 ORDER BY num DESC LIMIT 2)
44 SELECT * FROM (SELECT * FROM t1 ORDER BY num DESC LIMIT 2)
46 SELECT * FROM (SELECT * FROM t2 ORDER BY num DESC LIMIT 2)
51 SELECT * FROM (SELECT * FROM t1 ORDER BY num DESC
    [all...]
tkt1473.test 30 SELECT * FROM t1
36 SELECT 1 FROM t1 WHERE a=1 UNION ALL SELECT 2 FROM t1 WHERE b=0
41 SELECT 1 FROM t1 WHERE a=1 UNION SELECT 2 FROM t1 WHERE b=0
46 SELECT 1 FROM t1 WHERE a=1 UNION ALL SELECT 2 FROM t1 WHERE b=4
51 SELECT 1 FROM t1 WHERE a=1 UNION SELECT 2 FROM t1 WHERE b=4
56 SELECT 1 FROM t1 WHERE a=0 UNION ALL SELECT 2 FROM t1 WHERE b=
    [all...]
shared4.test 78 SELECT a FROM t1 UNION ALL
79 SELECT b FROM t2 UNION ALL
80 SELECT c FROM t3 UNION ALL
81 SELECT d FROM t4;
86 SELECT a FROM t1 UNION ALL
87 SELECT b FROM t2 UNION ALL
88 SELECT d FROM t4 UNION ALL
89 SELECT c FROM t3;
94 SELECT a FROM t1 UNION ALL
95 SELECT c FROM t3 UNION AL
    [all...]
subselect.test 12 # focus of this file is testing SELECT statements that are part of
35 execsql {SELECT * FROM t1 WHERE a = (SELECT count(*) FROM t1)}
38 # Try a select with more than one result column.
41 set v [catch {execsql {SELECT * FROM t1 WHERE a = (SELECT * FROM t1)}} msg]
43 } {1 {only a single result allowed for a SELECT that is part of an expression}}
48 execsql {SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=2)}
51 execsql {SELECT b from t1 where a = (SELECT a FROM t1 WHERE b=4)
    [all...]
delete3.test 27 INSERT INTO t1 SELECT x+2 FROM t1;
28 INSERT INTO t1 SELECT x+4 FROM t1;
29 INSERT INTO t1 SELECT x+8 FROM t1;
30 INSERT INTO t1 SELECT x+16 FROM t1;
31 INSERT INTO t1 SELECT x+32 FROM t1;
32 INSERT INTO t1 SELECT x+64 FROM t1;
33 INSERT INTO t1 SELECT x+128 FROM t1;
34 INSERT INTO t1 SELECT x+256 FROM t1;
35 INSERT INTO t1 SELECT x+512 FROM t1;
36 INSERT INTO t1 SELECT x+1024 FROM t1
    [all...]
select4.test 13 # in SELECT statements.
20 # Most tests in this file depend on compound-select. But there are a couple
40 execsql {SELECT DISTINCT log FROM t1 ORDER BY log}
46 lsort [execsql {SELECT DISTINCT log FROM t1}]
49 lsort [execsql {SELECT n FROM t1 WHERE log=3}]
53 SELECT DISTINCT log FROM t1
55 SELECT n FROM t1 WHERE log=3
62 SELECT DISTINCT log FROM t1
64 SELECT n FROM t1 WHERE log=3
66 SELECT * FROM t2
    [all...]
collateA.test 34 SELECT count(*) FROM t1;
38 execsql {SELECT a FROM t1 WHERE b='abcde '}
41 execsql {SELECT a FROM t1 WHERE c='abcde '}
44 execsql {SELECT a FROM t1 WHERE b='xyzzy'}
47 execsql {SELECT a FROM t1 WHERE c='xyzzy'}
50 execsql {SELECT a FROM t1 WHERE c='xyzzy '}
53 execsql {SELECT a FROM t1 WHERE c='xyzzy '}
56 execsql {SELECT a FROM t1 WHERE c='xyzzy '}
59 execsql {SELECT a FROM t1 WHERE c='xyzzy '}
62 execsql {SELECT a FROM t1 WHERE c='xyzzy '
    [all...]
where5.test 30 INSERT INTO t2 SELECT * FROM t1;
31 INSERT INTO t3 SELECT * FROM t2;
34 SELECT * FROM t1 WHERE x<0
39 SELECT * FROM t1 WHERE x<=0
44 SELECT * FROM t1 WHERE x=0
49 SELECT * FROM t1 WHERE x>=0
54 SELECT * FROM t1 WHERE x>0
59 SELECT * FROM t1 WHERE x<>0
64 SELECT * FROM t1 WHERE x<NULL
69 SELECT * FROM t1 WHERE x<=NUL
    [all...]
limit.test 13 # of SELECT statements.
35 execsql {SELECT count(*) FROM t1}
38 execsql {SELECT count(*) FROM t1 LIMIT 5}
41 execsql {SELECT x FROM t1 ORDER BY x LIMIT 5}
44 execsql {SELECT x FROM t1 ORDER BY x LIMIT 5 OFFSET 2}
47 execsql {SELECT x FROM t1 ORDER BY x+1 LIMIT 5 OFFSET -2}
50 execsql {SELECT x FROM t1 ORDER BY x+1 LIMIT 2, -5}
53 execsql {SELECT x FROM t1 ORDER BY x+1 LIMIT -2, 5}
56 execsql {SELECT x FROM t1 ORDER BY x+1 LIMIT -2, -5}
59 execsql {SELECT x FROM t1 ORDER BY x LIMIT 2, 5
    [all...]
func2.test 38 execsql {SELECT 'Supercalifragilisticexpialidocious'}
43 catchsql {SELECT SUBSTR()}
46 catchsql {SELECT SUBSTR('Supercalifragilisticexpialidocious')}
49 catchsql {SELECT SUBSTR('Supercalifragilisticexpialidocious', 1,1,1)}
54 execsql {SELECT SUBSTR('Supercalifragilisticexpialidocious', 0)}
57 execsql {SELECT SUBSTR('Supercalifragilisticexpialidocious', 1)}
60 execsql {SELECT SUBSTR('Supercalifragilisticexpialidocious', 2)}
63 execsql {SELECT SUBSTR('Supercalifragilisticexpialidocious', 30)}
66 execsql {SELECT SUBSTR('Supercalifragilisticexpialidocious', 34)}
69 execsql {SELECT SUBSTR('Supercalifragilisticexpialidocious', 35)
    [all...]
cast.test 29 execsql {SELECT x'616263'}
32 execsql {SELECT typeof(x'616263')}
35 execsql {SELECT CAST(x'616263' AS text)}
38 execsql {SELECT typeof(CAST(x'616263' AS text))}
41 execsql {SELECT CAST(x'616263' AS numeric)}
44 execsql {SELECT typeof(CAST(x'616263' AS numeric))}
47 execsql {SELECT CAST(x'616263' AS blob)}
50 execsql {SELECT typeof(CAST(x'616263' AS blob))}
53 execsql {SELECT CAST(x'616263' AS integer)}
56 execsql {SELECT typeof(CAST(x'616263' AS integer))
    [all...]
tkt-80e031a00f.test 37 do_execsql_test tkt-80e031a00f.1 {SELECT 1 IN ()} 0
38 do_execsql_test tkt-80e031a00f.1b {SELECT 1 IN (2)} 0
39 do_execsql_test tkt-80e031a00f.1c {SELECT 1 IN (2,3,4,5,6,7,8,9)} 0
40 do_execsql_test tkt-80e031a00f.2 {SELECT 1 NOT IN ()} 1
41 do_execsql_test tkt-80e031a00f.2b {SELECT 1 NOT IN (2)} 1
42 do_execsql_test tkt-80e031a00f.2c {SELECT 1 NOT IN (2,3,4,5,6,7,8,9)} 1
43 do_execsql_test tkt-80e031a00f.3 {SELECT null IN ()} 0
44 do_execsql_test tkt-80e031a00f.4 {SELECT null NOT IN ()} 1
47 SELECT 1 IN t1;
49 do_execsql_test tkt-80e031a00f.6 {SELECT 1 NOT IN t1}
    [all...]
  /external/chromium_org/content/test/data/accessibility/
select.html 6 <select id="A" name="Select A">
10 </select>
11 <select id="B" name="Select B">
15 </select>
16 <select id="B" name="Select C" requried>
20 </select>
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/popup/
select_event_remove_on_change.html 5 <select id="s" autofocus>
9 </select>
13 select = document.getElementById('s');
14 select.parentNode.removeChild(select);
select_event_remove_on_click.html 5 <select id="s" autofocus>
9 </select>
13 select = document.getElementById('s');
14 select.parentNode.removeChild(select);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_kqueue.py 7 import select namespace
12 if not hasattr(select, "kqueue"):
17 kq = select.kqueue()
26 ev = select.kevent(fd)
27 other = select.kevent(1000)
29 self.assertEqual(ev.filter, select.KQ_FILTER_READ)
30 self.assertEqual(ev.flags, select.KQ_EV_ADD)
43 ev = select.kevent(fd, select.KQ_FILTER_WRITE)
45 self.assertEqual(ev.filter, select.KQ_FILTER_WRITE
    [all...]
test_select.py 3 import select namespace
19 self.assertRaises(TypeError, select.select, 1, 2, 3)
20 self.assertRaises(TypeError, select.select, [self.Nope()], [], [])
21 self.assertRaises(TypeError, select.select, [self.Almost()], [], [])
22 self.assertRaises(TypeError, select.select, [], [], [], "not a number")
26 r, w, x = select.select([], [], [], 1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_kqueue.py 7 import select namespace
12 if not hasattr(select, "kqueue"):
17 kq = select.kqueue()
26 ev = select.kevent(fd)
27 other = select.kevent(1000)
29 self.assertEqual(ev.filter, select.KQ_FILTER_READ)
30 self.assertEqual(ev.flags, select.KQ_EV_ADD)
43 ev = select.kevent(fd, select.KQ_FILTER_WRITE)
45 self.assertEqual(ev.filter, select.KQ_FILTER_WRITE
    [all...]
test_select.py 3 import select namespace
19 self.assertRaises(TypeError, select.select, 1, 2, 3)
20 self.assertRaises(TypeError, select.select, [self.Nope()], [], [])
21 self.assertRaises(TypeError, select.select, [self.Almost()], [], [])
22 self.assertRaises(TypeError, select.select, [], [], [], "not a number")
26 r, w, x = select.select([], [], [], 1
    [all...]
  /external/llvm/unittests/IR/
PatternMatch.cpp 32 static void m_OrdFMin_expect_match_and_delete(Value *Cmp, Value *Select,
35 EXPECT_TRUE(m_OrdFMin(m_Value(MatchL), m_Value(MatchR)).match(Select));
38 delete Select;
42 static void m_OrdFMin_expect_nomatch_and_delete(Value *Cmp, Value *Select,
45 EXPECT_FALSE(m_OrdFMin(m_Value(MatchL), m_Value(MatchR)).match(Select));
46 delete Select;
50 static void m_OrdFMax_expect_match_and_delete(Value *Cmp, Value *Select,
53 EXPECT_TRUE(m_OrdFMax(m_Value(MatchL), m_Value(MatchR)).match(Select));
56 delete Select;
60 static void m_OrdFMax_expect_nomatch_and_delete(Value *Cmp, Value *Select,
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/contentSettings/
popup.html 11 <dd><select id="cookies">
15 </select></dd>
17 <dd><select id="images">
20 </select>
22 <dd><select id="javascript">
25 </select></dd>
27 <dd><select id="plugins">
30 </select></dd>
32 <dd><select id="popups">
35 </select></dd
    [all...]
  /external/llvm/test/Analysis/CostModel/ARM/
select.ll 8 ; CHECK: cost of 1 {{.*}} select
9 %v1 = select i1 undef, i8 undef, i8 undef
10 ; CHECK: cost of 1 {{.*}} select
11 %v2 = select i1 undef, i16 undef, i16 undef
12 ; CHECK: cost of 1 {{.*}} select
13 %v3 = select i1 undef, i32 undef, i32 undef
14 ; CHECK: cost of 2 {{.*}} select
15 %v4 = select i1 undef, i64 undef, i64 undef
16 ; CHECK: cost of 1 {{.*}} select
17 %v5 = select i1 undef, float undef, float unde
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
find.html 6 <select>
8 </select>
  /bionic/libc/arch-mips/syscalls/
select.S 4 .globl select
6 .ent select
8 select: label
22 .end select

Completed in 2137 milliseconds

1 2 3 4 5 6 7 8 91011>>