/external/chromium/chrome/browser/sync/util/ |
user_settings_unittest.cc | 60 // Create settings table. 62 "CREATE TABLE settings (email, key, value, PRIMARY KEY(email, key)" 67 "CREATE TABLE signin_types (signin, signin_type)")); 69 // Create and populate version table. 70 ASSERT_TRUE(db.Execute("CREATE TABLE db_version (version)")); 82 // Create shares table. 84 "CREATE TABLE shares (email, share_name, file_name," 114 // Create settings table. 116 "CREATE TABLE settings (email, key, value, PRIMARY KEY(email, key)" 119 // Create and populate version table [all...] |
/external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/ |
webrequest_condition_attribute.h | 51 static scoped_refptr<const WebRequestConditionAttribute> Create( 91 // Factory method, see WebRequestConditionAttribute::Create. 92 static scoped_refptr<const WebRequestConditionAttribute> Create( 121 // Factory method, see WebRequestConditionAttribute::Create. 122 static scoped_refptr<const WebRequestConditionAttribute> Create( 156 // Factory method, see WebRequestConditionAttribute::Create. 157 static scoped_refptr<const WebRequestConditionAttribute> Create( 190 // Factory method, see WebRequestConditionAttribute::Create. 191 static scoped_refptr<const WebRequestConditionAttribute> Create( 220 // Factory method, see WebRequestConditionAttribute::Create [all...] |
/external/chromium_org/chrome/common/extensions/docs/templates/articles/ |
app_codelab2_basic.html | 1 <h1 id="lab_2_work_with_code">Create Basic App</h1> 20 you can create these three files with a click (Chrome -> New App -> Hello World). 23 <h2 id="manifest">Create manifest</h2> 26 create the manifest file: <a href="https://github.com/GoogleChrome/chrome-app-codelab/blob/master/lab2_basic/manifest.json">manifest.json</a> 42 <h2 id="background">Create background script</h2> 45 create the background script: <a href="https://github.com/GoogleChrome/chrome-app-codelab/blob/master/lab2_basic/main.js">main.js</a> 49 chrome.app.window.create('index.html', { 58 <h2 id="view">Create view</h2> 60 <p>Create the user interface: <a href="https://github.com/GoogleChrome/chrome-app-codelab/blob/master/lab2_basic/index.html">index.html</a> 99 <a href="https://github.com/GoogleChrome/chrome-app-codelab/blob/master/lab2_basic/main.js">main.js</a> background script to create two windows instead of one [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
DateTimeFieldElements.h | 39 static PassRefPtr<DateTimeAMPMFieldElement> create(Document&, FieldOwner&, const Vector<String>&); 54 static PassRefPtr<DateTimeDayFieldElement> create(Document&, FieldOwner&, const String& placeholder, const Range&); 82 static PassRefPtr<DateTimeHour11FieldElement> create(Document&, FieldOwner&, const Range&, const Step&); 96 static PassRefPtr<DateTimeHour12FieldElement> create(Document&, FieldOwner&, const Range&, const Step&); 110 static PassRefPtr<DateTimeHour23FieldElement> create(Document&, FieldOwner&, const Range&, const Step&); 124 static PassRefPtr<DateTimeHour24FieldElement> create(Document&, FieldOwner&, const Range&, const Step&); 138 static PassRefPtr<DateTimeMillisecondFieldElement> create(Document&, FieldOwner&, const Range&, const Step&); 153 static PassRefPtr<DateTimeMinuteFieldElement> create(Document&, FieldOwner&, const Range&, const Step&); 168 static PassRefPtr<DateTimeMonthFieldElement> create(Document&, FieldOwner&, const String& placeholder, const Range&); 183 static PassRefPtr<DateTimeSecondFieldElement> create(Document&, FieldOwner&, const Range&, const Step&) [all...] |
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabasePerformanceTests.java | 215 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 248 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 249 mDatabase.execSQL("CREATE INDEX i1c ON t1(c)"); 276 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 316 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 354 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 355 mDatabase.execSQL("CREATE INDEX i1b ON t1(b)"); 393 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 395 .execSQL("CREATE TABLE t2(a INTEGER, b INTEGER, c VARCHAR(100))"); 431 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))") [all...] |
NewDatabasePerformanceTests.java | 124 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 156 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 157 mDatabase.execSQL("CREATE INDEX i1c ON t1(c)"); 183 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 222 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 259 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 260 mDatabase.execSQL("CREATE INDEX i1b ON t1(b)"); 297 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))"); 299 .execSQL("CREATE TABLE t2(a INTEGER, b INTEGER, c VARCHAR(100))"); 334 .execSQL("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100))") [all...] |
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
SSLSessionContextTest.java | 60 TestSSLContext c = TestSSLContext.create(); 64 TestSSLSocketPair s = TestSSLSocketPair.create(); 81 TestSSLContext c = TestSSLContext.create(); 98 TestSSLSocketPair s = TestSSLSocketPair.create(); 115 TestSSLContext c = TestSSLContext.create(); 122 TestSSLSocketPair s = TestSSLSocketPair.create(); 131 TestSSLContext c = TestSSLContext.create(); 154 TestSSLSocketPair s = TestSSLSocketPair.create(); 166 TestSSLContext c = TestSSLContext.create(); 247 TestSSLContext c = TestSSLContext.create(); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
transactions.py | 57 self.cur1.execute("create table test(i)") 59 self.cur1.execute("create table test2(j)") 65 self.cur1.execute("create table test(i)") 72 self.cur1.execute("create table test(i)") 81 self.cur1.execute("create table test(i)") 90 self.cur1.execute("create table test(i)") 100 self.cur1.execute("create table test(i)") 120 self.cur1.execute("create table test(i)") 139 self.cur1.execute("create table test(i)") 158 cur.execute("create table test(x)" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
transactions.py | 57 self.cur1.execute("create table test(i)") 59 self.cur1.execute("create table test2(j)") 65 self.cur1.execute("create table test(i)") 72 self.cur1.execute("create table test(i)") 81 self.cur1.execute("create table test(i)") 90 self.cur1.execute("create table test(i)") 100 self.cur1.execute("create table test(i)") 120 self.cur1.execute("create table test(i)") 139 self.cur1.execute("create table test(i)") 158 cur.execute("create table test(x)" [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
vtab6.test | 30 CREATE TABLE real_t1(a,b,c); 31 CREATE TABLE real_t2(b,c,d); 32 CREATE TABLE real_t3(c,d,e); 33 CREATE TABLE real_t4(d,e,f); 34 CREATE TABLE real_t5(a INTEGER PRIMARY KEY); 35 CREATE TABLE real_t6(a INTEGER); 36 CREATE TABLE real_t7 (x, y); 37 CREATE TABLE real_t8 (a integer primary key, b); 38 CREATE TABLE real_t9(a INTEGER PRIMARY KEY, b); 39 CREATE TABLE real_t10(x INTEGER PRIMARY KEY, y) [all...] |
insert4.test | 34 # Create tables used for testing. 38 CREATE TABLE t1(a int, b int, check(b>a)); 39 CREATE TABLE t2(x int, y int); 40 CREATE VIEW v2 AS SELECT y, x FROM t2; 41 CREATE TABLE t3(a int, b int); 139 execsql "CREATE TABLE dest($destschema)" 140 execsql "CREATE TABLE src($srcschema)" 239 execsql {CREATE TABLE t4(a, b, UNIQUE(a,b))} 261 CREATE TABLE t5(a, b, c); 269 CREATE INDEX t2_i2 ON t2(x, y COLLATE nocase); [all...] |
laststmtchanges.test | 34 create table t0 (x); 106 create table t1 (k integer primary key); 107 create table t2 (k integer primary key, v1, v2); 108 create trigger r1 after insert on t1 for each row begin 151 create trigger r1 after update on t1 for each row begin 183 create trigger r1 before delete on t1 for each row begin 216 create temp table t0(x); 217 create temp table t1 (k integer primary key); 218 create temp table t2 (k integer primary key); 219 create temp view v1 as select * from t1 [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorDatabaseAgent.cpp | 65 RefPtr<TypeBuilder::Database::Error> errorObject = TypeBuilder::Database::Error::create() 73 static PassOwnPtr<StatementCallback> create(PassRefPtr<ExecuteSQLCallback> requestCallback) function in class:WebCore::__anon10685::StatementCallback 84 RefPtr<TypeBuilder::Array<String> > columnNames = TypeBuilder::Array<String>::create(); 89 RefPtr<TypeBuilder::Array<JSONValue> > values = TypeBuilder::Array<JSONValue>::create(); 94 case SQLValue::StringValue: values->addItem(JSONString::create(value.string())); break; 95 case SQLValue::NumberValue: values->addItem(JSONBasicValue::create(value.number())); break; 111 static PassOwnPtr<StatementErrorCallback> create(PassRefPtr<ExecuteSQLCallback> requestCallback) function in class:WebCore::__anon10685::StatementErrorCallback 132 static PassOwnPtr<TransactionCallback> create(const String& sqlStatement, PassRefPtr<ExecuteSQLCallback> requestCallback) function in class:WebCore::__anon10685::TransactionCallback 145 OwnPtr<SQLStatementCallback> callback(StatementCallback::create(m_requestCallback.get())); 146 OwnPtr<SQLStatementErrorCallback> errorCallback(StatementErrorCallback::create(m_requestCallback.get())) 160 static PassOwnPtr<TransactionErrorCallback> create(PassRefPtr<ExecuteSQLCallback> requestCallback) function in class:WebCore::__anon10685::TransactionErrorCallback 180 static PassOwnPtr<TransactionSuccessCallback> create() function in class:WebCore::__anon10685::TransactionSuccessCallback [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
DOMFileSystemBase.cpp | 190 OwnPtr<AsyncFileSystemCallbacks> callbacks(MetadataCallbacks::create(successCallback, errorCallback, this)); 228 reportError(errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); 232 OwnPtr<AsyncFileSystemCallbacks> callbacks(EntryCallbacks::create(successCallback, errorCallback, parent->filesystem(), destinationPath, source->isDirectory())); 242 reportError(errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); 246 OwnPtr<AsyncFileSystemCallbacks> callbacks(EntryCallbacks::create(successCallback, errorCallback, parent->filesystem(), destinationPath, source->isDirectory())); 257 reportError(errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); 261 OwnPtr<AsyncFileSystemCallbacks> callbacks(VoidCallbacks::create(successCallback, errorCallback, this)); 272 reportError(errorCallback, FileError::create(FileError::INVALID_MODIFICATION_ERR)); 276 OwnPtr<AsyncFileSystemCallbacks> callbacks(VoidCallbacks::create(successCallback, errorCallback, this)); 286 fileSystem()->directoryExists(createFileSystemURL(path), EntryCallbacks::create(successCallback, errorCallback, this, path, true)) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
TreeMultisetTest.java | 44 @Override protected <E> Multiset<E> create() { method in class:TreeMultisetTest 45 return (Multiset) TreeMultiset.create(); 49 TreeMultiset<String> multiset = TreeMultiset.create(); 59 Multiset<String> multiset = TreeMultiset.create(Collections.reverseOrder()); 69 = TreeMultiset.create(Arrays.asList("foo", "bar", "foo")); 113 Multiset<String> multiset = create(); 132 TreeMultiset<String> ms = TreeMultiset.create(); 148 TreeMultiset<String> ms = TreeMultiset.create(); 173 TreeMultiset<String> ms = TreeMultiset.create(); 193 TreeMultiset<String> ms = TreeMultiset.create(); [all...] |
MinMaxPriorityQueueTest.java | 53 .create(); 62 .create(); 71 .create(); 81 .create(); 90 .create(); 100 .create(); 110 .create(); 121 .create(NUMBERS); 131 .create(NUMBERS); 141 .create(NUMBERS) 793 tester.testAllPublicInstanceMethods(MinMaxPriorityQueue.<String>create()); method [all...] |
/cts/suite/audio_quality/executable/src/ |
main.cpp | 40 // create zip file after log and report files are closed. 48 fprintf(stderr, "cannot create zip file with command %s\n", command.string()); 95 fprintf(stderr, "caanot create Settings"); 103 fprintf(stderr, "cannot create Log"); 110 LOGE("cannot create log"); 117 fprintf(stderr, "cannot create ClientInterface");
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
CommonTreeAdaptor.cs | 46 * create(Token), errorNode(), and to be safe, YourTreeClass.dupNode(). 52 public override object Create( IToken payload ) 58 * Tell me how to create a token for use with imaginary token nodes. 60 * token DECL, but you need to create it as a payload or whatever for 75 * Tell me how to create a token for use with imaginary token nodes. 77 * token DECL, but you need to create it as a payload or whatever for
|
/external/chromium/app/sql/ |
connection_unittest.cc | 34 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)")); 38 ASSERT_FALSE(db().Execute("CREATE TAB foo (a, b")); 45 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)")); 48 // Create a new cached statement. 77 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)")); 92 ASSERT_TRUE(db().Execute("CREATE TABLE foo (id INTEGER PRIMARY KEY, value)"));
|
/external/chromium/chrome/common/ |
chrome_paths_linux.cc | 29 scoped_ptr<base::Environment> env(base::Environment::Create()); 53 scoped_ptr<base::Environment> env(base::Environment::Create()); 69 scoped_ptr<base::Environment> env(base::Environment::Create()); 82 scoped_ptr<base::Environment> env(base::Environment::Create()); 90 scoped_ptr<base::Environment> env(base::Environment::Create()); 110 scoped_ptr<base::Environment> env(base::Environment::Create());
|
/external/chromium_org/cc/animation/ |
scroll_offset_animation_curve_unittest.cc | 17 ScrollOffsetAnimationCurve::Create( 19 EaseInOutTimingFunction::Create().Pass())); 61 ScrollOffsetAnimationCurve::Create( 63 EaseInOutTimingFunction::Create().Pass())); 90 ScrollOffsetAnimationCurve::Create( 92 EaseInOutTimingFunction::Create().Pass()));
|
/external/chromium_org/chrome/browser/webdata/ |
web_intents_table.cc | 48 if (!db_->Execute("CREATE TABLE web_intents (" 58 if (!db_->Execute("CREATE INDEX IF NOT EXISTS web_intents_index" 61 if (!db_->Execute("CREATE INDEX IF NOT EXISTS web_intents_index" 67 if (!db_->Execute("CREATE TABLE web_intents_defaults (" 78 if (!db_->Execute("CREATE INDEX IF NOT EXISTS web_intents_default_index" 82 if (!db_->Execute("CREATE INDEX IF NOT EXISTS web_intents_default_index"
|
/external/chromium_org/chrome/renderer/safe_browsing/ |
scorer_unittest.cc | 65 scorer.reset(Scorer::Create(model_.SerializeAsString())); 69 scorer.reset(Scorer::Create("bogus string")); 74 scorer.reset(Scorer::Create(model_.SerializePartialAsString())); 79 scoped_ptr<Scorer> scorer(Scorer::Create(model_.SerializeAsString())); 89 scoped_ptr<Scorer> scorer(Scorer::Create(model_.SerializeAsString())); 102 scoped_ptr<Scorer> scorer(Scorer::Create(model_.SerializeAsString()));
|
/external/chromium_org/content/browser/renderer_host/media/ |
media_stream_ui_controller_unittest.cc | 115 // Create the first audio request. 119 // Create the second video request. 123 // Create the third audio and video request. 143 // Create the first audio request. 147 // Create the second video request. 151 // Create the third audio and video request.
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimatableImage.cpp | 52 fromValue = CSSImageValue::create(resource->url(), m_image.get()); 63 toValue = CSSImageValue::create(resource->url(), image->m_image.get()); 65 RefPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue, toValue); 66 crossfadeValue->setPercentage(CSSPrimitiveValue::create(fraction, CSSPrimitiveValue::CSS_NUMBER)); 67 return create(StyleGeneratedImage::create(crossfadeValue.get()).get());
|