HomeSort by relevance Sort by last modified time
    Searched full:from (Results 301 - 325 of 117569) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_email.py 5 from email.test.test_email import suite
6 from email.test.test_email_renamed import suite as suite2
7 from test import test_support
test_email_codecs.py 5 from email.test import test_email_codecs
6 from email.test import test_email_codecs_renamed
7 from test import test_support
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationUtilities.h 35 inline int blend(int from, int to, double progress)
37 return lround(from + (to - from) * progress);
40 inline unsigned blend(unsigned from, unsigned to, double progress)
42 return lround(to > from ? from + (to - from) * progress : from - (from - to) * progress);
45 inline double blend(double from, double to, double progress
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
tkt3334.test 31 SELECT * FROM t1 ORDER BY b;
37 SELECT a FROM (SELECT a FROM t1 ORDER BY b LIMIT 2) WHERE a=1;
42 SELECT count(*) FROM (SELECT a FROM t1 ORDER BY b LIMIT 2) WHERE a=1;
47 SELECT a FROM (SELECT a FROM t1 ORDER BY b LIMIT 3) WHERE a=1;
52 SELECT count(*) FROM (SELECT a FROM t1 ORDER BY b LIMIT 3) WHERE a=1;
57 SELECT a FROM (SELECT a FROM t1 ORDER BY b LIMIT 99) WHERE a=1
    [all...]
selectA.test 38 SELECT * FROM t1;
49 SELECT * FROM t2;
55 INSERT INTO t3 SELECT * FROM t1;
56 INSERT INTO t3 SELECT * FROM t2;
57 INSERT INTO t3 SELECT * FROM t1;
58 INSERT INTO t3 SELECT * FROM t2;
59 INSERT INTO t3 SELECT * FROM t1;
60 INSERT INTO t3 SELECT * FROM t2;
61 SELECT count(*) FROM t3;
67 SELECT a,b,c FROM t1 UNION ALL SELECT x,y,z FROM t
    [all...]
minmax2.test 49 SELECT DISTINCT y FROM t1 ORDER BY y;
55 execsql {SELECT min(x) FROM t1}
62 execsql {SELECT max(x) FROM t1}
70 execsql {SELECT min(x) FROM t1}
77 execsql {SELECT max(x) FROM t1}
84 execsql {SELECT max(y) FROM t1}
93 INSERT INTO t2 SELECT * FROM t1;
96 execsql {SELECT min(a) FROM t2}
103 execsql {SELECT max(a) FROM t2}
111 execsql {INSERT INTO t2 VALUES((SELECT max(a) FROM t2)+1,999)
    [all...]
minmax.test 46 SELECT DISTINCT y FROM t1 ORDER BY y;
52 execsql {SELECT min(x) FROM t1}
59 execsql {SELECT max(x) FROM t1}
67 execsql {SELECT min(x) FROM t1}
74 execsql {SELECT max(x) FROM t1}
81 execsql {SELECT max(y) FROM t1}
88 execsql {SELECT min(x) FROM t1 WHERE x=5}
91 execsql {SELECT min(x) FROM t1 WHERE x>=5}
94 execsql {SELECT min(x) FROM t1 WHERE x>=4.5}
97 execsql {SELECT min(x) FROM t1 WHERE x<4.5
    [all...]
insert2.test 13 # result from a SELECT.
28 execsql {SELECT * FROM d1 ORDER BY n}
31 # Insert into a new table from the old one.
40 EXPLAIN INSERT INTO t1 SELECT log, count(*) FROM d1 GROUP BY log;
44 INSERT INTO t1 SELECT log, count(*) FROM d1 GROUP BY log;
51 execsql {SELECT * FROM t1 ORDER BY log}
60 SELECT log, count(*) FROM d1 GROUP BY log
61 EXCEPT SELECT n-1,log FROM d1;
66 SELECT * FROM t1 ORDER BY log;
75 SELECT log, count(*) FROM d1 GROUP BY lo
    [all...]
tkt3346.test 26 SELECT *, ( SELECT y FROM (SELECT x.b='alice' AS y) )
27 FROM ( SELECT * FROM t1 ) AS x;
32 SELECT b FROM (SELECT * FROM t1) AS x
33 WHERE (SELECT y FROM (SELECT x.b='alice' AS y))=0
38 SELECT b FROM (SELECT * FROM t1 ORDER BY a) AS x
39 WHERE (SELECT y FROM (SELECT a||b y FROM t1 WHERE t1.b=x.b))=(x.a||x.b
    [all...]
select4.test 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;
73 SELECT DISTINCT log FROM t1
75 SELECT n FROM t1 WHERE log=
    [all...]
insert5.test 41 CREATE VIEW v1 AS SELECT * FROM B;
42 CREATE VIEW v2 AS SELECT * FROM MAIN;
54 SELECT * FROM B UNION ALL
55 SELECT * FROM MAIN WHERE exists (select * FROM B WHERE B.Id = MAIN.Id);
56 SELECT * FROM B;
62 INSERT INTO B SELECT * FROM B;
64 SELECT * FROM MAIN WHERE exists (select * FROM B WHERE B.Id = MAIN.Id);
65 SELECT * FROM B
    [all...]
view.test 30 SELECT * FROM t1;
37 CREATE VIEW IF NOT EXISTS v1 AS SELECT a,b FROM t1;
38 SELECT * FROM v1 ORDER BY a;
44 SELECT * FROM v1 ORDER BY a;
49 CREATE VIEW v1 AS SELECT a,b FROM t1;
50 SELECT * FROM v1 ORDER BY a;
57 SELECT * FROM v1 ORDER BY a;
63 SELECT * FROM v1 ORDER BY a;
68 CREATE VIEW v1 AS SELECT a,b FROM t1;
69 SELECT * FROM v1 ORDER BY a
    [all...]
vtab4.test 60 } [list xBestIndex {SELECT rowid, * FROM 'treal'} \
62 xFilter {SELECT rowid, * FROM 'treal'} \
69 DELETE FROM techo;
72 } [list xBestIndex {SELECT rowid, * FROM 'treal'} \
74 xFilter {SELECT rowid, * FROM 'treal'} \
103 INSERT INTO secho SELECT * FROM techo;
104 DELETE FROM techo;
108 } [list xBestIndex {SELECT rowid, * FROM 'treal'} \
110 xFilter {SELECT rowid, * FROM 'treal'} \
111 xBestIndex {SELECT rowid, * FROM 'treal'}
    [all...]
count.test 34 SELECT count(*) FROM sqlite_master;
51 execsql { SELECT count(*) FROM t1 }
58 SELECT count(*) FROM t1;
64 INSERT INTO t1 SELECT * FROM t1; -- 4
65 INSERT INTO t1 SELECT * FROM t1; -- 8
66 INSERT INTO t1 SELECT * FROM t1; -- 16
67 INSERT INTO t1 SELECT * FROM t1; -- 32
68 INSERT INTO t1 SELECT * FROM t1; -- 64
69 INSERT INTO t1 SELECT * FROM t1; -- 128
70 INSERT INTO t1 SELECT * FROM t1; -- 25
    [all...]
autoinc.test 34 SELECT name FROM sqlite_master WHERE type='table';
44 SELECT name FROM sqlite_master WHERE type='table';
52 SELECT * FROM sqlite_sequence;
67 SELECT * FROM sqlite_sequence;
77 execsql {SELECT name FROM sqlite_master WHERE type='table'}
85 SELECT * FROM sqlite_sequence
91 SELECT * FROM sqlite_sequence;
97 SELECT * FROM sqlite_sequence;
103 SELECT * FROM sqlite_sequence;
109 SELECT * FROM sqlite_sequence
    [all...]
tkt2927.test 35 SELECT * FROM t1;
42 SELECT a, b FROM t1
44 SELECT a, b FROM t1
50 SELECT a, b FROM t1
52 SELECT a, abs(b) FROM t1
57 SELECT a, b FROM t1
59 SELECT abs(a), b FROM t1
64 SELECT a, b FROM t1
66 SELECT abs(a), abs(b) FROM t1
71 SELECT a, abs(b) FROM t
    [all...]
select6.test 13 # subqueries in their FROM clause.
51 SELECT DISTINCT y FROM t1 ORDER BY y;
56 execsql2 {SELECT * FROM (SELECT x, y FROM t1 WHERE x<2)}
59 execsql {SELECT count(*) FROM (SELECT y FROM t1)}
62 execsql {SELECT count(*) FROM (SELECT DISTINCT y FROM t1)}
65 execsql {SELECT count(*) FROM (SELECT DISTINCT * FROM (SELECT y FROM t1))
    [all...]
randexpr1.test 15 # correct value of the expression. So, from one point of view, this
31 SELECT * FROM t1
36 db eval {SELECT coalesce((select 11 from t1 where 19 in (t1.b,+11,coalesce((select max((abs(17)/abs(t1.f))) from t1 where ((abs(t1.f)/abs(t1.b)) in (select case (min(t1.a | d*d)+(abs(count(*)-count(*)+ -count(*)*max( -t1.c))-max(f))) when -count(distinct 19) then ((count(*))) else max(13) end from t1 union select count(distinct b) from t1)) or 19 in (t1.a,t1.c,17)),17) | 17)),13) FROM t1 WHERE not not c=a-+(select case ~case -~+count(distinct (select count(distinct t1.a)*max(13) from t1))+max( -19*f)*max(f)*max(f)* -count(distinct d)-(count(distinct 11)) | max(t1.f)*count(*) when count(distinct b) then count(distinct t1.b) else -min(t1.f) end*cast(avg(11) AS integer) when max(t1.f) then max(c) else count(*) end from t1)+d}
39 db eval {SELECT coalesce((select 11 from t1 where 19 in (t1.b,+11,coalesce((select max((abs(17)/abs(t1.f))) from t1 where ((abs(t1.f)/abs(t (…)
    [all...]
  /external/chromium_org/cc/animation/
transform_operation.cc 25 static bool ShareSameAxis(const TransformOperation* from,
31 if (IsOperationIdentity(from) && IsOperationIdentity(to))
34 if (IsOperationIdentity(from) && !IsOperationIdentity(to)) {
42 if (!IsOperationIdentity(from) && IsOperationIdentity(to)) {
43 *axis_x = from->rotate.axis.x;
44 *axis_y = from->rotate.axis.y;
45 *axis_z = from->rotate.axis.z;
46 *angle_from = from->rotate.angle;
50 double length_2 = from->rotate.axis.x * from->rotate.axis.x
    [all...]
  /frameworks/base/docs/html/
_redirects.yaml 3 # pages. Add "pattern: True" to use python regex in to or from.
5 # WATCH OUT -- FROM LINE HAS TO START WITH A HYPHEN
8 - from: ^/sdk/android-(.*$)
12 - from: /about/versions/index.html
15 - from: /about/versions/api-levels.html
18 - from: /sdk/adding-components.html
21 - from: /sdk/compatibility-library.html
24 - from: /training/basics/fragments/support-lib.html
27 - from: /sdk/eclipse-adt.html
30 - from: /sdk/installing.htm
    [all...]
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java 105 public IApiDelta compare(IApi from, IApi to) {
106 assert from.getVisibility() == to.getVisibility();
108 Set<IPackage> fromPackages = from.getPackages();
113 public IPackageDelta createChangedDelta(IPackage from,
115 return comparePackage(from, to);
118 public IPackageDelta createAddRemoveDelta(IPackage from,
120 return new SigPackageDelta(from, to);
123 public boolean considerEqualElement(IPackage from,
125 return from.getName().equals(to.getName());
131 delta = new SigApiDelta(from, to)
    [all...]
  /external/clang/test/Sema/
vector-assign.c 15 v1 = v2; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v2u'}}
16 v1 = v3; // expected-error {{assigning to 'v2s' from incompatible type 'v1s'}}
17 v1 = v4; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v2f'}}
18 v1 = v5; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v4ss'}}
20 v2 = v1; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v2s'}}
21 v2 = v3; // expected-error {{assigning to 'v2u' from incompatible type 'v1s'}}
22 v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v2f'}}
23 v2 = v5; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v4ss'}}
25 v3 = v1; // expected-error {{assigning to 'v1s' from incompatible type 'v2s'}}
26 v3 = v2; // expected-error {{assigning to 'v1s' from incompatible type 'v2u'}
    [all...]
  /external/smack/src/org/jivesoftware/smack/filter/
FromContainsFilter.java 26 * Filters for packets where the "from" field contains a specified value.
32 private String from; field in class:FromContainsFilter
35 * Creates a "from" contains filter using the "from" field part.
37 * @param from the from field value the packet must contain.
39 public FromContainsFilter(String from) {
40 if (from == null) {
43 this.from = from.toLowerCase()
    [all...]
  /external/chromium_org/content/shell/common/
webkit_test_helpers.cc 18 const WebTestRunner::WebPreferences& from,
21 from.allowUniversalAccessFromFileURLs;
22 to->dom_paste_enabled = from.DOMPasteAllowed;
23 to->javascript_can_access_clipboard = from.javaScriptCanAccessClipboard;
24 to->xss_auditor_enabled = from.XSSAuditorEnabled;
26 from.editingBehavior);
27 to->default_font_size = from.defaultFontSize;
28 to->minimum_font_size = from.minimumFontSize;
29 to->default_encoding = from.defaultTextEncodingName.utf8().data();
30 to->javascript_enabled = from.javaScriptEnabled
    [all...]
  /external/libgsm/src/
debug.c 21 void gsm_debug_words P4( (name, from, to, ptr),
23 int from,
29 fprintf( stderr, "%s [%d .. %d]: ", name, from, to );
30 while (from <= to) {
31 fprintf(stderr, "%d ", ptr[ from ] );
32 from++;
35 if (from < to) putc('\n', stderr);
41 void gsm_debug_longwords P4( (name, from, to, ptr),
43 int from,
49 fprintf( stderr, "%s [%d .. %d]: ", name, from, to )
    [all...]

Completed in 2558 milliseconds

<<11121314151617181920>>