/external/chromium_org/third_party/sqlite/src/test/ |
tkt3419.test | 29 insert into a values (1); 30 insert into a values (2); 32 insert into b values (3, 1); 33 insert into b values (4, 1); 34 insert into b values (5, 1); 35 insert into b values (6, 1); 36 insert into b values (9, 2); 38 insert into c values (4, 3); 39 insert into c values (5, 5); 40 insert into c values (6, 4) [all...] |
fts3defer2.test | 35 do_execsql_test 1.1.2 "INSERT INTO t1 VALUES('[string repeat {a } 20000]')" 36 do_execsql_test 1.1.3 "INSERT INTO t1 VALUES('[string repeat {z } 20000]')" 38 INSERT INTO t1 VALUES('a b c d e f a x y'); 39 INSERT INTO t1 VALUES(''); 40 INSERT INTO t1 VALUES(''); 41 INSERT INTO t1 VALUES(''); 42 INSERT INTO t1 VALUES(''); 43 INSERT INTO t1 VALUES(''); 44 INSERT INTO t1(t1) VALUES('optimize'); 79 do_execsql_test 2.1.2 "INSERT INTO t2 VALUES('[string repeat {a } 10000]') [all...] |
analyze4.test | 28 INSERT INTO t1 VALUES(1,NULL); 29 INSERT INTO t1 SELECT a+1, b FROM t1; 30 INSERT INTO t1 SELECT a+2, b FROM t1; 31 INSERT INTO t1 SELECT a+4, b FROM t1; 32 INSERT INTO t1 SELECT a+8, b FROM t1; 33 INSERT INTO t1 SELECT a+16, b FROM t1; 34 INSERT INTO t1 SELECT a+32, b FROM t1; 35 INSERT INTO t1 SELECT a+64, b FROM t1; 82 # Verify that collating sequences are taken into account when computing 98 INSERT INTO t2 VALUES(1, 'abc', 'abc', 'abc') [all...] |
fkey_malloc.test | 28 INSERT INTO t1 VALUES('aaa', 1); 29 INSERT INTO t2 VALUES('aaa'); 42 INSERT INTO t2 VALUES('a', 'b'); 43 INSERT INTO t1 VALUES('a', 'b'); 46 INSERT INTO t2 VALUES('d', 'b'); 56 INSERT INTO t1 VALUES(13); 57 INSERT INTO t2 VALUES(13); 58 INSERT INTO t3 VALUES(13); 87 INSERT INTO t1 VALUES(1, 2); 89 catch_fk_error {INSERT INTO t2 VALUES(1, 3) [all...] |
insert5.test | 13 # when required by an "INSERT INTO ... SELECT ..." statement. 26 # includes the opcode OpenEphemeral. An "INSERT INTO ... SELECT" 43 INSERT INTO MAIN(Id,Id1) VALUES(2,3); 44 INSERT INTO B(Id,Id1) VALUES(2,3); 53 INSERT INTO B 62 INSERT INTO B SELECT * FROM B; 63 INSERT INTO B 70 uses_temp_table { INSERT INTO b SELECT * FROM main } 73 uses_temp_table { INSERT INTO b SELECT * FROM b } 76 uses_temp_table { INSERT INTO b SELECT (SELECT id FROM b), id1 FROM main [all...] |
notnull.test | 40 INSERT INTO t1(a,b,c,d,e) VALUES(1,2,3,4,5); 47 INSERT INTO t1(b,c,d,e) VALUES(2,3,4,5); 54 INSERT OR IGNORE INTO t1(b,c,d,e) VALUES(2,3,4,5); 61 INSERT OR REPLACE INTO t1(b,c,d,e) VALUES(2,3,4,5); 68 INSERT OR ABORT INTO t1(b,c,d,e) VALUES(2,3,4,5); 75 INSERT INTO t1(a,c,d,e) VALUES(1,3,4,5); 82 INSERT OR IGNORE INTO t1(a,c,d,e) VALUES(1,3,4,5); 89 INSERT OR REPLACE INTO t1(a,c,d,e) VALUES(1,3,4,5); 96 INSERT OR ABORT INTO t1(a,c,d,e) VALUES(1,3,4,5); 103 INSERT INTO t1(a,b,c,d,e) VALUES(1,null,3,4,5) [all...] |
fts2a.test | 32 INSERT INTO t1(content) VALUES('one'); 33 INSERT INTO t1(content) VALUES('two'); 34 INSERT INTO t1(content) VALUES('one two'); 35 INSERT INTO t1(content) VALUES('three'); 36 INSERT INTO t1(content) VALUES('one three'); 37 INSERT INTO t1(content) VALUES('two three'); 38 INSERT INTO t1(content) VALUES('one two three'); 39 INSERT INTO t1(content) VALUES('four'); 40 INSERT INTO t1(content) VALUES('one four'); 41 INSERT INTO t1(content) VALUES('two four') [all...] |
fts4aa.test | 33 INSERT INTO t1(docid,words) VALUES(1001001,'In the beginning God created the heaven and the earth.'); 34 INSERT INTO t1(docid,words) VALUES(1001002,'And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters.'); 35 INSERT INTO t1(docid,words) VALUES(1001003,'And God said, Let there be light: and there was light.'); 36 INSERT INTO t1(docid,words) VALUES(1001004,'And God saw the light, that it was good: and God divided the light from the darkness.'); 37 INSERT INTO t1(docid,words) VALUES(1001005,'And God called the light Day, and the darkness he called Night. And the evening and the morning were the first day.'); 38 INSERT INTO t1(docid,words) VALUES(1001006,'And God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters.'); 39 INSERT INTO t1(docid,words) VALUES(1001007,'And God made the firmament, and divided the waters which were under the firmament from the waters which were above the firmament: and it was so.'); 40 INSERT INTO t1(docid,words) VALUES(1001008,'And God called the firmament Heaven. And the evening and the morning were the second day.'); 41 INSERT INTO t1(docid,words) VALUES(1001009,'And God said, Let the waters under the heaven be gathered together unto one place, and let the dry land appear: and it was so.'); 42 INSERT INTO t1(docid,words) VALUES(1001010,'And God called the dry land Earth; and the gathering together of t (…) [all...] |
insert3.test | 24 # into the table. 32 INSERT OR IGNORE INTO log VALUES(new.a, 1); 34 INSERT INTO t1 VALUES('hello','world'); 35 INSERT INTO t1 VALUES(5,10); 41 INSERT INTO t1 SELECT a, b+10 FROM t1; 50 INSERT OR IGNORE INTO log2 VALUES(new.b,1); 52 INSERT INTO t1 VALUES(453,'hi'); 64 INSERT INTO t1 SELECT * FROM t1; 77 INSERT INTO t1(a) VALUES('xyz'); 92 INSERT INTO t2dup(a,b,c) VALUES(new.a,new.b,new.c) [all...] |
savepoint4.test | 35 INSERT INTO t1 VALUES(randstr(10,400)); 36 INSERT INTO t1 VALUES(randstr(10,400)); 37 INSERT INTO t1 SELECT randstr(10,400) FROM t1; 38 INSERT INTO t1 SELECT randstr(10,400) FROM t1; 39 INSERT INTO t1 SELECT randstr(10,400) FROM t1; 40 INSERT INTO t1 SELECT randstr(10,400) FROM t1; 41 INSERT INTO t1 SELECT randstr(10,400) FROM t1; 42 INSERT INTO t1 SELECT randstr(10,400) FROM t1; 43 INSERT INTO t1 SELECT randstr(10,400) FROM t1; 44 INSERT INTO t1 SELECT randstr(10,400) FROM t1 [all...] |
tkt-02a8e81d44.test | 23 INSERT INTO t1 VALUES(1); 24 INSERT INTO t1 VALUES(2); 25 INSERT INTO t1 VALUES(4); 26 INSERT INTO t1 VALUES(5);
|
/external/clang/test/SemaCXX/ |
warn-implicit-conversion-floating-point-to-bool.cpp | 17 b = foof(c < 1); // expected-warning {{implicit conversion turns floating-point number into bool: 'float' to 'bool'}} 19 b = food(e < 2); // expected-warning {{implicit conversion turns floating-point number into bool: 'double' to 'bool'}} 21 foo(c, b); // expected-warning {{implicit conversion turns floating-point number into bool: 'float' to 'bool'}}
|
/external/guava/guava/src/com/google/common/hash/ |
Sink.java | 30 * Puts a byte into this sink. 38 * Puts an array of bytes into this sink. 46 * Puts a chunk of an array of bytes into this sink. {@code bytes[off]} is the first byte written, 59 * Puts a short into this sink. 64 * Puts an int into this sink. 69 * Puts a long into this sink. 74 * Puts a float into this sink. 79 * Puts a double into this sink. 84 * Puts a boolean into this sink. 89 * Puts a character into this sink [all...] |
/packages/providers/ContactsProvider/tests/assets/testSynced/ |
legacy_contacts.sql | 6 INSERT INTO _sync_state VALUES(1,'lemmytest@gmail.com',''); 8 INSERT INTO _sync_state_metadata VALUES(2); 10 INSERT INTO android_metadata VALUES('en_US'); 13 INSERT INTO contact_methods VALUES(1,3,1,'weyj@xtdt.com',NULL,1,NULL,1); 14 INSERT INTO contact_methods VALUES(2,4,1,'mail@dom.com',NULL,1,NULL,1); 15 INSERT INTO contact_methods VALUES(3,8,1,'doooooo@sgghhh.com',NULL,1,NULL,1); 16 INSERT INTO contact_methods VALUES(4,9,1,'ahhh@glkbgghh.com',NULL,1,NULL,1); 17 INSERT INTO contact_methods VALUES(5,12,1,'notsynced@gmail.com',NULL,1,NULL,1); 20 INSERT INTO fave_msg_status VALUES(100,16359444020020760201000000000000000000000000000000000000000000000000000000000000,1268764830477,2); 23 INSERT INTO faves VALUES(1,1,0,'','',000000000000,NULL,NULL,NULL) [all...] |
/art/test/076-boolean-put/ |
info.txt | 1 This checks a case where javac generates code that stores a byte into a
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
w_drem.c | 5 * Placed into the Public Domain, 1994.
|
/dalvik/tests/076-boolean-put/ |
info.txt | 1 This checks a case where javac generates code that stores a byte into a
|
/development/libraries/stereocamera/ |
README.txt | 4 To use the libraries, simply copy them as static libraries into your project.
|
/external/chromium/chrome/common/extensions/docs/examples/api/omnibox/simple-example/ |
manifest.json | 3 "description" : "To use, type 'omnix' plus a search term into the Omnibox.",
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/omnibox/simple-example/ |
manifest.json | 3 "description" : "To use, type 'omnix' plus a search term into the Omnibox.",
|
/external/chromium_org/components/test/data/web_database/ |
version_35.sql | 4 INSERT INTO "meta" VALUES('version','35'); 5 INSERT INTO "meta" VALUES('last_compatible_version','35'); 6 INSERT INTO "meta" VALUES('Default Search Provider ID','2'); 7 INSERT INTO "meta" VALUES('Builtin Keyword Version','33'); 9 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/favicon.ico','{google:baseURL}search?{google:RLZ}{google:acceptedSuggestion}{google:originalQueryForSuggestion}sourceid=chrome&ie={inputEncoding}&q={searchTerms}',1,1,'',0,0,'UTF-8','{google:baseSuggestURL}search?client=chrome&hl={language}&q={searchTerms}',1,1,6262,0,'{google:baseURL}webhp?{google:RLZ}sourceid=chrome-instant&ie={inputEncoding}&ion=1{searchTerms}&nord=1'); 10 INSERT INTO "keywords" VALUES(3,'Yahoo!','yahoo.com','http://search.yahoo.com/favicon.ico','http://search.yahoo.com/search?ei={inputEncoding}&fr=crmas&p={searchTerms}',1,1,'',0,0,'UTF-8','http://ff.search.yahoo.com/gossip?output=fxjson&command={searchTerms}',2,0,6279,0,''); 11 INSERT INTO "keywords" VALUES(4,'Bing','bing.com','http://www.bing.com/s/wlflag.ico','http://www.bing.com/search?setmkt=en-US&q={searchTerms}',1,1,'',0,0,'UTF-8','http://api.bing.com/osjson.aspx?query={searchTerms}&language={language}',3,0,6256,0,''); 23 INSERT INTO "autofill_profiles" VALUES('00000000-0000-0000-0000-000000000001','Acme Inc.','1 Main Street','Apt 2','San Francisco','CA','94102','United States','US',1300131704); 24 INSERT INTO "autofill_profile_names" VALUES('00000000-0000-0000-0000-000000000001','John','','Doe'); 25 INSERT INTO "autofill_profile_emails" VALUES('00000000-0000-0000-0000-000000000001','john@doe.com') [all...] |
/external/chromium_org/third_party/WebKit/ManualTests/inspector-wrappers/ |
inspector-evaluate.html | 9 <script>instructions({trigger: "Type something into the search box"});</script>
|
/external/chromium_org/third_party/widevine/cdm/ |
README.chromium | 7 This directory contains build files for integrating the Widevine CDM into
|
/external/clang/test/CodeGen/ |
2003-11-08-PointerSubNotGetelementptr.c | 5 return C-1; // Should turn into a GEP
|
/external/clang/test/Preprocessor/ |
include-macros.c | 3 // This should not be expanded into FOO because pr2086.h undefs 'test'.
|