/external/chromium_org/third_party/sqlite/src/test/ |
schema4.test | 30 CREATE TABLE log(x, a, b); 31 CREATE TABLE tbl(a, b); 33 CREATE TABLE t1(a, b); 34 CREATE VIEW v1 AS SELECT * FROM tbl; 35 CREATE INDEX i1 ON tbl(a); 39 CREATE TRIGGER t1 AFTER INSERT ON tbl BEGIN 42 CREATE TRIGGER v1 AFTER UPDATE ON tbl BEGIN 45 CREATE TRIGGER i1 AFTER DELETE ON tbl BEGIN 84 CREATE TABLE t1(a, b); 85 CREATE VIEW v1 AS SELECT * FROM tbl [all...] |
tkt-2d1a5c67d.test | 31 CREATE TABLE t1(a,b); 32 CREATE INDEX t1b ON t1(b); 33 CREATE TABLE t2(x,y UNIQUE); 51 CREATE TABLE t1(a,b); 52 CREATE INDEX t1b ON t1(b); 53 CREATE TABLE t2(x,y); 54 CREATE VIRTUAL TABLE nums USING wholenumber;
|
vtab9.test | 28 CREATE TABLE t0(a); 29 CREATE VIRTUAL TABLE t1 USING echo(t0); 37 CREATE TABLE t2(a,b,c); 38 CREATE VIRTUAL TABLE t3 USING echo(t2); 39 CREATE TABLE d1(a,b,c); 51 # CREATE TABLE t4(a); 52 # CREATE VIRTUAL TABLE t5 USING echo(t4);
|
pcache.test | 54 CREATE TABLE t1(a, b, c); 55 CREATE TABLE t2(a, b, c); 56 CREATE TABLE t3(a, b, c); 57 CREATE TABLE t4(a, b, c); 58 CREATE TABLE t5(a, b, c); 65 CREATE TABLE t6(a, b, c); 66 CREATE TABLE t7(a, b, c); 67 CREATE TABLE t8(a, b, c); 68 CREATE TABLE t9(a, b, c); 93 CREATE INDEX i1 ON t1(a, b) [all...] |
e_createtable.test | 28 # e_createtable-2.*: Test "CREATE TABLE AS" statements. 41 # CREATE TABLE t1(x); 42 # CREATE TEMP TABLE t2(x); 43 # CREATE TEMP TABLE t3(x); 66 1 "CREATE TABLE t1(c1 one)" {} 67 2 "CREATE TABLE t1(c1 one two)" {} 68 3 "CREATE TABLE t1(c1 one two three)" {} 69 4 "CREATE TABLE t1(c1 one two three four)" {} 70 5 "CREATE TABLE t1(c1 one two three four(14))" {} 71 6 "CREATE TABLE t1(c1 one two three four(14, 22))" { [all...] |
analyze4.test | 25 CREATE TABLE t1(a,b); 26 CREATE INDEX t1a ON t1(a); 27 CREATE INDEX t1b ON t1(b); 65 # Create a multi-column indices using t1.b and verify that ANALYZE 74 CREATE INDEX t1bcd ON t1(b,c,d); 75 CREATE INDEX t1cdb ON t1(c,d,b); 76 CREATE INDEX t1cbd ON t1(c,b,d); 87 CREATE TABLE t2( 93 CREATE INDEX t2a ON t2(a); 94 CREATE INDEX t2b ON t2(b) [all...] |
tkt-f777251dc7a.test | 22 CREATE TEMP TABLE t1(x UNIQUE); 24 CREATE TABLE t2(x, y); 26 CREATE TEMP TABLE t3(w, z); 51 CREATE TEMP TABLE t1(x UNIQUE); 53 CREATE TABLE t2(x, y); 60 CREATE TEMP TABLE t3(w, z); 76 CREATE TEMP TABLE t1(x); 77 CREATE TABLE t2(x); 78 CREATE TABLE t3(x);
|
tkt-9d68c883.test | 22 CREATE TABLE t3(x); 23 CREATE TABLE t4(x); 24 CREATE TABLE t5(x); 26 CREATE TABLE t7(x); 27 CREATE TABLE t8(x);
|
tkt2832.test | 24 CREATE TABLE t1(a PRIMARY KEY); 39 CREATE TABLE t2(a, b); 40 CREATE TRIGGER t2_t AFTER UPDATE ON t2 BEGIN 55 CREATE TABLE t3(a, b); 56 CREATE TRIGGER t3_t AFTER DELETE ON t3 BEGIN
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
TimingFunctionTestHelperTest.cpp | 95 RefPtr<TimingFunction> linearTiming = LinearTimingFunction::create(); 108 RefPtr<TimingFunction> cubicCustomTiming = CubicBezierTimingFunction::create(0.17, 0.67, 1, -1.73); 121 RefPtr<TimingFunction> stepTimingCustom = StepsTimingFunction::create(5, false); 129 RefPtr<TimingFunction> linearTiming = LinearTimingFunction::create(); 130 RefPtr<ChainedTimingFunction> chainedLinearSingle = ChainedTimingFunction::create(); 139 RefPtr<TimingFunction> cubicCustomTiming = CubicBezierTimingFunction::create(1.0, 0.0, 1, -1); 141 RefPtr<ChainedTimingFunction> chainedMixed = ChainedTimingFunction::create(); 157 RefPtr<TimingFunction> linearTiming = LinearTimingFunction::create(); 159 RefPtr<TimingFunction> cubicTiming2 = CubicBezierTimingFunction::create(0.17, 0.67, 1, -1.73); 161 RefPtr<TimingFunction> stepsTiming2 = StepsTimingFunction::create(5, true) [all...] |
/hardware/qcom/media/mm-core/src/8660/ |
qc_registry_table.c | 44 NULL, // Create instance function 60 NULL, // Create instance function 76 NULL, // Create instance function 92 NULL, // Create instance function 108 NULL, // Create instance function 124 NULL, // Create instance function 140 NULL, // Create instance function 156 NULL, // Create instance function 172 NULL, // Create instance function 188 NULL, // Create instance functio [all...] |
/external/chromium_org/components/test/data/web_database/ |
version_22.sql | 3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR); 8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL, keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0); 16 CREATE TABLE logins (origin_url VARCHAR NOT NULL, action_url VARCHAR, username_element VARCHAR, username_value VARCHAR, password_element VARCHAR, password_value BLOB, submit_element VARCHAR,signon_realm VARCHAR NOT NULL,ssl_valid INTEGER NOT NULL,preferred INTEGER NOT NULL,date_created INTEGER NOT NULL,blacklisted_by_user INTEGER NOT NULL,scheme INTEGER NOT NULL,UNIQUE (origin_url, username_element, username_value, password_element, submit_element, signon_realm)); 17 CREATE TABLE ie7_logins (url_hash VARCHAR NOT NULL, password_value BLOB, date_created INTEGER NOT NULL,UNIQUE (url_hash)); 18 CREATE TABLE web_app_icons (url LONGVARCHAR,width int,height int,image BLOB, UNIQUE (url, width, height)); 19 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL); 20 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1); 21 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0,date_created INTEGER DEFAULT 0); 22 CREATE INDEX logins_signon ON logins (signon_realm); 23 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash) [all...] |
version_52.sql | 3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR); 8 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR, title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, action, scheme, type)); 9 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LONGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, scheme VARCHAR, UNIQUE (action, scheme, type, url_pattern)); 10 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR,alternate_urls VARCHAR,search_terms_replacement_key VARCHAR,image_url VARCHAR,search_url_post_params VARCHAR,suggest_url_post_params VARCHAR,instant_url_post_params VARCHAR,image_url_post_params VARCHAR); 16 CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token BLOB); 17 CREATE TABLE web_app_icons (url LONGVARCHAR,width int,height int,image BLOB, UNIQUE (url, width, height)); 18 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL); 19 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1); 20 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expiration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_modified INTEGER NOT NULL DEFAULT 0, origin VARCHAR DEFAULT ''); 21 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0) [all...] |
version_34.sql | 3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY,value LONGVARCHAR); 8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keyword VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_default_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,suggest_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DEFAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_url VARCHAR); 13 CREATE TABLE logins (origin_url VARCHAR NOT NULL, action_url VARCHAR, username_element VARCHAR, username_value VARCHAR, password_element VARCHAR, password_value BLOB, submit_element VARCHAR, signon_realm VARCHAR NOT NULL,ssl_valid INTEGER NOT NULL,preferred INTEGER NOT NULL,date_created INTEGER NOT NULL,blacklisted_by_user INTEGER NOT NULL,scheme INTEGER NOT NULL,UNIQUE (origin_url, username_element, username_value, password_element, submit_element, signon_realm)); 14 CREATE TABLE ie7_logins (url_hash VARCHAR NOT NULL, password_value BLOB, date_created INTEGER NOT NULL,UNIQUE (url_hash)); 15 CREATE TABLE web_app_icons (url LONGVARCHAR,width int,height int,image BLOB, UNIQUE (url, width, height)); 16 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL); 17 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1); 27 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DEFAULT 0); 37 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0, country_code VARCHAR); 39 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VA (…) [all...] |
/external/llvm/lib/Target/X86/MCTargetDesc/ |
X86MachORelocationInfo.cpp | 42 Sym->setVariableValue(MCConstantExpr::Create(SymAddr, Ctx)); 47 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_TLVP, Ctx); 50 Expr = MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Sym, Ctx), 51 MCConstantExpr::Create(4, Ctx), 55 Expr = MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Sym, Ctx), 56 MCConstantExpr::Create(2, Ctx), 60 Expr = MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Sym, Ctx), 61 MCConstantExpr::Create(1, Ctx), 65 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOTPCREL, Ctx); 68 Expr = MCSymbolRefExpr::Create(Sym, isPCRel [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
KeyframeAnimationEffectTest.cpp | 45 return AnimatableUnknown::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::CSS_UNKNOWN).get()).leakRef(); 50 return AnimatableLength::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::CSS_PX).get()).leakRef(); 56 keyframes[0] = Keyframe::create(); 59 keyframes[1] = Keyframe::create(); 82 RefPtr<KeyframeAnimationEffect> effect = KeyframeAnimationEffect::create(keyframes); 94 RefPtr<KeyframeAnimationEffect> effect = KeyframeAnimationEffect::create(keyframes); 103 RefPtr<KeyframeAnimationEffect> effect = KeyframeAnimationEffect::create(keyframes); 112 RefPtr<KeyframeAnimationEffect> effect = KeyframeAnimationEffect::create(keyframes) [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
object_store_creator_test.py | 22 store = self._creator.Create(_FooClass) 29 store = self._creator.Create(_FooClass, category='hi') 36 store = self._creator.Create(_FooClass, app_version=None) 41 store = self._creator.Create(_FooClass, start_empty=True) 43 store = self._creator.Create(_FooClass, start_empty=False) 49 self._creator.Create, _FooClass, app_version='1&2') 51 self._creator.Create, _FooClass, category='a=&b')
|
/external/guava/guava-tests/test/com/google/common/collect/ |
MultisetsTest.java | 51 Multiset<String> multiset = HashMultiset.create(); 104 Multiset<String> multiset = HashMultiset.create(); 112 TreeMultiset<DerivedComparable> set = TreeMultiset.create(); 122 TreeMultiset<LegacyComparable> set = TreeMultiset.create(); 133 = TreeMultiset.create(Collections.reverseOrder()); 140 Multiset<String> multiset = HashMultiset.create(); 142 HashMultiset.create(Arrays.asList("a", "b", "a")); 148 Multiset<String> multiset = HashMultiset.create(); 150 HashMultiset.create(Arrays.asList("a", "b", "a")); 156 Multiset<String> ms1 = HashMultiset.create(); [all...] |
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/ |
ImageFormat.java | 36 public static MutableFrameFormat create(int width, method in class:ImageFormat 51 public static MutableFrameFormat create(int width, method in class:ImageFormat 55 return create(width, 62 public static MutableFrameFormat create(int colorspace, int target) { method in class:ImageFormat 63 return create(FrameFormat.SIZE_UNSPECIFIED, 70 public static MutableFrameFormat create(int colorspace) { method in class:ImageFormat 71 return create(FrameFormat.SIZE_UNSPECIFIED,
|
/external/chromium_org/cc/layers/ |
layer_unittest.cc | 108 parent_ = Layer::Create(); 109 child1_ = Layer::Create(); 110 child2_ = Layer::Create(); 111 child3_ = Layer::Create(); 112 grand_child1_ = Layer::Create(); 113 grand_child2_ = Layer::Create(); 114 grand_child3_ = Layer::Create(); 146 scoped_refptr<Layer> test_layer = Layer::Create(); 158 scoped_refptr<Layer> parent = Layer::Create(); 159 scoped_refptr<Layer> child = Layer::Create(); [all...] |
/external/llvm/examples/Fibonacci/ |
fibonacci.cpp | 13 // The goal of this snippet is to create in the memory the LLVM module 40 // Create the fib function and insert it into module M. This function is said 48 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", FibF); 58 // Create the true_block. 59 BasicBlock *RetBB = BasicBlock::Create(Context, "return", FibF); 60 // Create an exit block. 61 BasicBlock* RecurseBB = BasicBlock::Create(Context, "recurse", FibF); 63 // Create the "if (arg <= 2) goto exitbb" 65 BranchInst::Create(RetBB, RecurseBB, CondInst, BB); 67 // Create: ret int [all...] |
/frameworks/compile/mclinker/unittests/ |
SymbolCategoryTest.cpp | 23 // create testee. modify it if need 48 ResolveInfo* a = ResolveInfo::Create("a"); 49 ResolveInfo* b = ResolveInfo::Create("b"); 50 ResolveInfo* c = ResolveInfo::Create("c"); 51 ResolveInfo* d = ResolveInfo::Create("d"); 52 ResolveInfo* e = ResolveInfo::Create("e"); 60 LDSymbol* aa = LDSymbol::Create(*a); 61 LDSymbol* bb = LDSymbol::Create(*b); 62 LDSymbol* cc = LDSymbol::Create(*c); 63 LDSymbol* dd = LDSymbol::Create(*d) [all...] |
/external/chromium_org/v8/test/mjsunit/ |
object-create.js | 28 // Test ES5 sections 15.2.3.5 Object.create. 33 Object.create(null); 34 Object.create(null, undefined); 38 Object.create(4); 45 Object.create("foo"); 70 Object.create(protoFoo).foo(); 74 Object.create(Object.create(protoFoo)).foo(); 78 var v = Object.create(protoFoo, fooValue); 90 v = Object.create(null, { foo: {value: 103}}) [all...] |
/external/v8/test/mjsunit/ |
object-create.js | 28 // Test ES5 sections 15.2.3.5 Object.create. 33 Object.create(null); 34 Object.create(null, undefined); 38 Object.create(4); 45 Object.create("foo"); 70 Object.create(protoFoo).foo(); 74 Object.create(Object.create(protoFoo)).foo(); 78 var v = Object.create(protoFoo, fooValue); 90 v = Object.create(null, { foo: {value: 103}}) [all...] |
/external/chromium_org/cc/animation/ |
timing_function.h | 35 static scoped_ptr<CubicBezierTimingFunction> Create(double x1, double y1, 59 static scoped_ptr<TimingFunction> Create(); 67 static scoped_ptr<TimingFunction> Create(); 75 static scoped_ptr<TimingFunction> Create(); 83 static scoped_ptr<TimingFunction> Create();
|