Home
last modified time | relevance | path

Searched refs:execute (Results 1 - 25 of 348) sorted by relevance

12345678910>>...14

/third_party/python/Lib/test/test_sqlite3/
H A Dtest_types.py39 self.cur.execute("create table test(i integer, s varchar, f number, b blob)")
46 self.cur.execute("insert into test(s) values (?)", ("Österreich",))
47 self.cur.execute("select s from test")
52 self.cur.execute("insert into test(s) values (?)", ("a\0b",))
53 self.cur.execute("select s from test")
58 self.cur.execute("insert into test(i) values (?)", (42,))
59 self.cur.execute("select i from test")
65 self.cur.execute("insert into test(i) values (?)", (num,))
66 self.cur.execute("select i from test")
72 self.cur.execute("inser
[all...]
H A Dtest_transactions.py55 self.cur1.execute("create table test(i)")
56 self.cur1.execute("insert into test(i) values (5)")
57 self.cur1.execute("create table test2(j)")
58 self.cur2.execute("select i from test")
63 self.cur1.execute("create table test(i)")
64 self.cur1.execute("insert into test(i) values (5)")
65 self.cur2.execute("select i from test")
70 self.cur1.execute("create table test(i)")
71 self.cur1.execute("insert into test(i) values (5)")
73 self.cur1.execute("updat
[all...]
H A Dtest_regression.py44 cur.execute("pragma user_version")
51 cur.execute("pragma schema_version")
62 cursors[0].execute("create table test(x)")
67 cursors[i].execute(" " * i + "select x from test")
73 cur.execute('select 1 as "foo bar [datetime]"')
76 cur.execute('select 1 as "foo baz"')
90 cur.execute("select 1 x union select " + str(i))
95 con.execute("create table foo(x, unique(x) on conflict rollback)")
96 con.execute("insert into foo(x) values (1)")
98 con.execute("inser
[all...]
H A Dtest_dbapi.py327 con.execute("create table t(t integer check(t > 0))")
330 con.execute("insert into t values(-1)")
360 cu.execute("create table test(id integer primary key, name text)")
361 cu.execute("insert into test(name) values (?)", ("foo",))
400 res = cu.execute(sql)
403 self.assertRaises(sqlite.ProgrammingError, cu.execute, sql)
406 self.assertRaises(sqlite.ProgrammingError, self.cx.execute, sql)
435 cu.execute("create table transactiontest(id integer primary key, name text)")
437 cu.execute("insert into transactiontest(name) values (?)", ("foo",))
439 cu.execute("selec
[all...]
H A Dtest_userfunctions.py208 self.con.execute("create table test(t text)")
221 self.con.execute("select abs(-1)");
223 self.con.execute("select max(1, 2)");
235 cur.execute("select reftest()")
239 cur.execute("select returntext()")
246 res = cur.execute("select returntextwithnull()").fetchone()[0]
252 cur.execute("select returnunicode()")
259 cur.execute("select returnint()")
266 cur.execute("select returnfloat()")
274 cur.execute("selec
[all...]
H A Dtest_hooks.py56 result = con.execute("""
82 result = con.execute(sql).fetchall()
88 result = con.execute(sql).fetchall()
106 result = con.execute(sql).fetchall()
118 result = con.execute("""
133 con.execute("select 'a' as x union select 'b' as x order by x collate mycoll")
147 con.execute("""
163 curs.execute("""
169 curs.execute("""
186 curs.execute,
[all...]
H A Dtest_factory.py103 cur.execute("select 4+5 as foo")
117 row = self.con.execute("select 1, 2").fetchone()
122 row = self.con.execute("select 1 as a_1, 2 as b").fetchone()
153 row = self.con.execute("select 1 as \xff").fetchone()
163 row = self.con.execute("select 1, 2, 3, 4").fetchone()
181 row = self.con.execute("select 1 as a, 2 as b").fetchone()
194 row = self.con.execute("select 1 as a, 2 as b").fetchone()
201 row = self.con.execute("select 1 as a, 2 as b").fetchone()
209 row_1 = self.con.execute("select 1 as a, 2 as b").fetchone()
210 row_2 = self.con.execute("selec
[all...]
H A Dtest_dump.py46 [self.cu.execute(s) for s in expected_sqls]
75 self.cu.execute("BEGIN TRANSACTION")
76 self.cu.execute("CREATE TABLE t1 (id integer primary key autoincrement)")
77 self.cu.execute("CREATE TABLE t2 (id integer primary key autoincrement)")
93 res = cu2.execute("""
115 self.cu.execute(CREATE_BETA)
116 self.cu.execute(CREATE_ALPHA)
H A Dtest_backup.py8 cx.execute('CREATE TABLE foo (key INTEGER)')
16 result = bckcx.execute("SELECT key FROM foo ORDER BY key").fetchall()
49 bck.execute('CREATE TABLE bar (key INTEGER)')
117 self.cx.execute('INSERT INTO foo (key) VALUES (?)', (remaining+1000,))
125 result = bck.execute("SELECT key FROM foo"
154 self.cx.execute("ATTACH DATABASE ':memory:' AS attached_db")
155 self.cx.execute('CREATE TABLE attached_db.foo (key INTEGER)')
/third_party/node/test/parallel/
H A Dtest-http-client-headers-array.js8 function execute(options) { function
43 execute({ headers: { 'x-foo': 'boom', 'cookie': 'a=1; b=2; c=3' } });
44 execute({ headers: { 'x-foo': 'boom', 'cookie': [ 'a=1', 'b=2', 'c=3' ] } });
45 execute({ headers: [[ 'x-foo', 'boom' ], [ 'cookie', 'a=1; b=2; c=3' ]] });
46 execute({ headers: [
49 execute({ headers: [
55 execute({ auth: 'foo:bar', headers:
57 execute({ auth: 'foo:bar', headers: [
H A Dtest-http-parser.js88 parser.execute(request, 0, request.length);
92 // thrown from parser.execute()
102 () => { parser.execute(request, 0, request.length); },
137 parser.execute(request, 0, request.length);
160 parser.execute(request, 0, request.length);
207 parser.execute(request, 0, request.length);
235 parser.execute(request, 0, request.length);
270 parser.execute(request, 0, request.length);
302 parser.execute(request, 0, request.length);
343 parser.execute(reques
[all...]
/third_party/skia/tools/debugger/
H A DDrawCommand.h87 virtual void execute(SkCanvas*) const = 0;
127 void execute(SkCanvas* canvas) const override;
136 void execute(SkCanvas* canvas) const override;
148 void execute(SkCanvas* canvas) const override;
163 void execute(SkCanvas* canvas) const override;
176 void execute(SkCanvas* canvas) const override;
190 void execute(SkCanvas* canvas) const override;
205 void execute(SkCanvas* canvas) const override;
219 void execute(SkCanvas* canvas) const override;
228 void execute(SkCanva
[all...]
/third_party/python/Lib/test/test_importlib/resources/
H A Dutil.py76 def execute(self, package, path): member in CommonTests
84 self.execute(data01.__name__, 'utf-8.file')
88 self.execute(data01, 'utf-8.file')
93 self.execute(data01, path)
98 self.execute(data01, path)
103 self.execute(data01.__name__, 'utf-8.file')
108 self.execute(__name__, 'utf-8.file')
114 self.execute(module, 'utf-8.file')
122 self.execute(package, 'utf-8.file')
133 self.execute(packag
[all...]
/third_party/lz4/tests/
H A Dtest-lz4-speed.py48 def execute(command, print_command=True, print_output=False, print_error=True, param_shell=True): function
51 popen = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=param_shell, cwd=execute.cwd)
65 execute.cwd = None
70 execute(command, verbose, False, False)
82 execute('mutt -s "' + topic + '" ' + emails + ' < ' + logFileName, verbose)
84 execute('mail -s "' + topic + '" ' + emails + ' < ' + logFileName, verbose)
98 execute('mutt -s "' + email_topic + '" ' + args.emails + ' -a ' + results_files
101 execute('mail -s "' + email_topic + '" ' + args.emails + ' < ' + logFileName)
107 execute('git fetch -p', verbose)
108 branches = execute('gi
[all...]
/third_party/skia/experimental/sorttoy/
H A DCmds.h32 virtual void execute(FakeCanvas*) const = 0;
36 virtual void execute(SkCanvas*) const = 0;
54 void execute(FakeCanvas*) const override;
55 void execute(SkCanvas*) const override;
77 void execute(FakeCanvas*) const override;
78 void execute(SkCanvas*) const override;
105 void execute(FakeCanvas*) const override;
106 void execute(SkCanvas*) const override;
143 void execute(FakeCanvas*) const override;
144 void execute(SkCanva
[all...]
/third_party/python/Lib/sqlite3/
H A Ddump.py30 schema_res = cu.execute(q)
34 rows = cu.execute('SELECT * FROM "sqlite_sequence";').fetchall()
57 res = cu.execute('PRAGMA table_info("{0}")'.format(table_name_ident))
62 query_res = cu.execute(q)
73 schema_res = cu.execute(q)
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/
H A DOpCode.java65 State execute(DataView data, DigitSequence ignored) {
86 State execute(DataView data, DigitSequence in) {
107 State execute(DataView data, DigitSequence in) {
137 State execute(DataView data, DigitSequence in) {
167 State execute(DataView data, DigitSequence in) {
176 State execute(DataView data, DigitSequence in) {
261 abstract State execute(DataView data, DigitSequence in); in execute() method in OpCode
/third_party/node/deps/v8/tools/
H A Dgdb-v8-support.py162 gdb.execute('call __gdb_print_v8_object(%d)' % v)
178 result = gdb.execute("find 0x%s, 0x%s, %s" % (startAddr, endAddr, value),
186 for l in gdb.execute("maint info sections", to_string=True).split('\n'):
191 for l in gdb.execute("info proc mappings", to_string=True).split('\n'):
216 old_stdout = gdb.execute("p (int)dup(1)",
224 gdb.execute('p (int)dup2((int)open("%s", 1), 1)' % file,
227 result = gdb.execute(subcommand, from_tty=False, to_string=True)
240 gdb.execute("p (int)dup2(%s, 1)" % old_stdout, to_string=True)
245 gdb.execute("p (int)close(%s)" % old_stdout, to_string=True)
/third_party/python/Doc/includes/
H A Ddbpickle.py39 cursor.execute("SELECT * FROM memos WHERE key=?", (str(key_id),))
56 cursor.execute("CREATE TABLE memos(key INTEGER PRIMARY KEY, task TEXT)")
63 cursor.execute("INSERT INTO memos VALUES(NULL, ?)", (task,))
66 cursor.execute("SELECT * FROM memos")
76 cursor.execute("UPDATE memos SET task='learn italian' WHERE key=1")
/third_party/vk-gl-cts/scripts/
H A Drun_internal_tests.py36 def execute (args, workDir = None): function
43 raise Exception("Failed to execute %s, got %d" % (str(args), retcode))
62 execute(["cmake", os.path.realpath(config.srcPath)] + config.genParams, workDir = config.buildPath)
68 execute(["cmake", "."], workDir = config.buildPath)
77 execute(["cmake", "--build", "."] + config.buildParams, workDir = config.buildPath)
95 execute([config.testBinaryName, "--deqp-runmode=xml-caselist"], workDir = testWorkDir)
110 execute(args)
113 execute([junitToolPath, batchResultFile, junitFile])
/third_party/python/Doc/includes/sqlite3/
H A Dpysqlite_datetime.py6 cur.execute("create table test(d date, ts timestamp)")
11 cur.execute("insert into test(d, ts) values (?, ?)", (today, now))
12 cur.execute("select d, ts from test")
17 cur.execute('select current_date as "d [date]", current_timestamp as "ts [timestamp]"')
/third_party/vk-gl-cts/framework/randomshaders/
H A DrsgStatement.hpp45 virtual void execute (ExecutionContext& execCtx) const = DE_NULL;
63 void execute (ExecutionContext& execCtx) const;
79 void execute (ExecutionContext& execCtx) const;
99 void execute (ExecutionContext& execCtx) const;
120 void execute (ExecutionContext& execCtx) const;
146 void execute (ExecutionContext& execCtx) const;
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cSparseBufferTests.hpp142 virtual bool execute(glw::GLuint sparse_bo_storage_flags) = 0;
185 bool execute(glw::GLuint sparse_bo_storage_flags);
244 bool execute(glw::GLuint sparse_bo_storage_flags);
294 bool execute(glw::GLuint sparse_bo_storage_flags);
353 bool execute(glw::GLuint sparse_bo_storage_flags);
432 bool execute(glw::GLuint sparse_bo_storage_flags);
475 bool execute(glw::GLuint sparse_bo_storage_flags);
520 bool execute(glw::GLuint sparse_bo_storage_flags);
575 bool execute(glw::GLuint sparse_bo_storage_flags);
651 * - De-commit color data, after it has been uploaded. Try to execute th
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkCommandBuffer.cpp62 void execute(vk::CommandBuffer::ExecutionState &executionState) override
86 void execute(vk::CommandBuffer::ExecutionState &executionState) override
107 void execute(vk::CommandBuffer::ExecutionState &executionState) override
131 void execute(vk::CommandBuffer::ExecutionState &executionState) override
151 void execute(vk::CommandBuffer::ExecutionState &executionState) override
176 void execute(vk::CommandBuffer::ExecutionState &executionState) override
209 void execute(vk::CommandBuffer::ExecutionState &executionState) override
240 void execute(vk::CommandBuffer::ExecutionState &executionState) override
263 void execute(vk::CommandBuffer::ExecutionState &executionState) override
286 void execute(v
[all...]
/third_party/typescript/tests/baselines/reference/
H A DsystemModule11.js63 execute: function () {// set of tests cases that checks generation of local storage for exported names
89 execute: function () {
122 execute: function () {
144 execute: function () {
166 execute: function () {

Completed in 38 milliseconds

12345678910>>...14