Home
last modified time | relevance | path

Searched refs:execute (Results 1 – 25 of 1271) sorted by relevance

12345678910>>...51

/third_party/mesa3d/src/gallium/drivers/llvmpipe/ci/
Dllvmpipe-cl.txt17 program/execute/amdgcn-callee-saved-registers: skip
18 program/execute/amdgcn-f16-inline-immediates: fail
19 program/execute/amdgcn-f32-inline-immediates: fail
20 program/execute/amdgcn-i16-inline-immediates: fail
21 program/execute/atomic_int64_add-global: skip
22 program/execute/atomic_int64_add-global-return: skip
23 program/execute/atomic_int64_add-local: skip
24 program/execute/atomic_int64_and-global: skip
25 program/execute/atomic_int64_and-global-return: skip
26 program/execute/atomic_int64_and-local: skip
[all …]
/third_party/python/Lib/sqlite3/test/
Dtransactions.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("update test set i=6")
[all …]
Dtypes.py36 self.cur.execute("create table test(i integer, s varchar, f number, b blob)")
43 self.cur.execute("insert into test(s) values (?)", ("Österreich",))
44 self.cur.execute("select s from test")
49 self.cur.execute("insert into test(i) values (?)", (42,))
50 self.cur.execute("select i from test")
56 self.cur.execute("insert into test(i) values (?)", (num,))
57 self.cur.execute("select i from test")
63 self.cur.execute("insert into test(f) values (?)", (val,))
64 self.cur.execute("select f from test")
71 self.cur.execute("insert into test(b) values (?)", (val,))
[all …]
Dregression.py40 cur.execute("pragma user_version")
47 cur.execute("pragma schema_version")
58 cursors[0].execute("create table test(x)")
63 cursors[i].execute(" " * i + "select x from test")
69 cur.execute('select 1 as "foo bar [datetime]"')
72 cur.execute('select 1 as "foo baz"')
86 cur.execute("select 1 x union select " + str(i))
91 con.execute("create table foo(x, unique(x) on conflict rollback)")
92 con.execute("insert into foo(x) values (1)")
94 con.execute("insert into foo(x) values (1)")
[all …]
Ddbapi.py107 cu.execute("create table test(id integer primary key, name text)")
108 cu.execute("insert into test(name) values (?)", ("foo",))
162 cu.execute("create table transactiontest(id integer primary key, name text)")
164 cu.execute("insert into transactiontest(name) values (?)", ("foo",))
166 cu.execute("select name from transactiontest where name=?", ["foo"])
171 cu.execute("select name from transactiontest where name=?", ["foo"])
188 cx.execute('create table test(id integer)')
193 cx.execute('create table test(id integer)')
195 cx.execute('insert into test(id) values(0)')
198 cx.execute('insert into test(id) values(1)')
[all …]
Duserfunctions.py173 self.con.execute("create table test(t text)")
192 cur.execute("select reftest()")
196 cur.execute("select returntext()")
203 res = cur.execute("select returntextwithnull()").fetchone()[0]
209 cur.execute("select returnunicode()")
216 cur.execute("select returnint()")
223 cur.execute("select returnfloat()")
231 cur.execute("select returnnull()")
238 cur.execute("select returnblob()")
245 cur.execute("select returnlonglong()")
[all …]
Dhooks.py53 result = con.execute("""
79 result = con.execute(sql).fetchall()
85 result = con.execute(sql).fetchall()
103 result = con.execute(sql).fetchall()
115 result = con.execute("""
130 con.execute("select 'a' as x union select 'b' as x order by x collate mycoll")
144 con.execute("""
161 curs.execute("""
167 curs.execute("""
184 curs.execute,
[all …]
Dfactory.py81 cur.execute("select 4+5 as foo")
95 row = self.con.execute("select 1, 2").fetchone()
100 row = self.con.execute("select 1 as a_1, 2 as b").fetchone()
129 row = self.con.execute("select 1 as \xff").fetchone()
139 row = self.con.execute("select 1, 2, 3, 4").fetchone()
157 row = self.con.execute("select 1 as a, 2 as b").fetchone()
164 row = self.con.execute("select 1 as a, 2 as b").fetchone()
171 row = self.con.execute("select 1 as a, 2 as b").fetchone()
179 row_1 = self.con.execute("select 1 as a, 2 as b").fetchone()
180 row_2 = self.con.execute("select 1 as a, 2 as b").fetchone()
[all …]
/third_party/flutter/skia/tools/debugger/
DDrawCommand.h83 virtual void execute(SkCanvas*) const = 0;
121 void execute(SkCanvas* canvas) const override;
130 void execute(SkCanvas* canvas) const override;
142 void execute(SkCanvas* canvas) const override;
157 void execute(SkCanvas* canvas) const override;
170 void execute(SkCanvas* canvas) const override;
184 void execute(SkCanvas* canvas) const override;
199 void execute(SkCanvas* canvas) const override;
211 void execute(SkCanvas* canvas) const override;
225 void execute(SkCanvas* canvas) const override;
[all …]
/third_party/skia/tools/debugger/
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(SkCanvas* canvas) const override;
[all …]
/third_party/node/test/parallel/
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: [
Dtest-http-parser.js88 parser.execute(request, 0, request.length);
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(request, 0, request.length);
382 parser.execute(request, 0, request.length);
[all …]
/third_party/skia/experimental/sorttoy/
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(SkCanvas*) const override;
/third_party/ejdb/src/bindings/ejdb2_flutter/ios/Classes/
DSwiftEjdb2FlutterPlugin.swift125 func execute(_ mc: DbMethodCall, _ block: @escaping (_: DbMethodCall) throws -> Void) {
153 execute(mc, get) in handle()
156 execute(mc, put) in handle()
159 execute(mc, patch) in handle()
162 execute(mc, del) in handle()
165 execute(mc, info) in handle()
168 execute(mc, executeList) in handle()
171 execute(mc, executeFirst) in handle()
174 execute(mc, executeScalarInt) in handle()
177 execute(mc, executeQuery) in handle()
[all …]
/third_party/lz4/tests/
Dtest-lz4-speed.py48 def execute(command, print_command=True, print_output=False, print_error=True, param_shell=True): function
51 ….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('git branch -rl', verbose)
[all …]
/third_party/libxml2/doc/
Dqueries.py30 ret = c.execute("""select sum(Count) from %s""" % (base))
33 ret = c.execute("""select count(*) from %s""" % (base))
36 ret = c.execute(
63 ret = c.execute("""select ID,Count from AllQueries where Value='%s'""" %
68 ret = c.execute("""UPDATE AllQueries SET Count = %d where ID = %d""" %
71 ret = c.execute(
93 ret = c.execute("""select Value,Count from %s""" % (frmtable))
111 c.execute("""DELETE from %s""" % (frmtable))
/third_party/python/Doc/includes/sqlite3/
Dconverter_point.py29 cur.execute("create table test(p point)")
31 cur.execute("insert into test(p) values (?)", (p,))
32 cur.execute("select p from test")
41 cur.execute("create table test(p)")
43 cur.execute("insert into test(p) values (?)", (p,))
44 cur.execute('select p as "p [point]" from test')
Dmysumaggr.py16 cur.execute("create table test(i)")
17 cur.execute("insert into test(i) values (1)")
18 cur.execute("insert into test(i) values (2)")
19 cur.execute("select mysum(i) from test")
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/typescript/tests/baselines/reference/
DsystemModuleAmbientDeclarations.js37 execute: function () {
52 execute: function () {
62 execute: function () {
72 execute: function () {
82 execute: function () {
92 execute: function () {
/third_party/ejdb/src/bindings/ejdb2_dart/test/
Dejdb2_dart_test.dart27 final list = await db.createQuery('@mycoll/*').execute(limit: 1).toList();
47 await for (final doc in q.execute()) {
54 await for (final doc in db.createQuery('@mycoll/[foo=zaz]').execute()) {
60 await for (final doc in db.createQuery('/[foo=bar]', 'mycoll').execute()) {
67 await db.createQuery('@mycoll/[').execute();
113 JBDOC? doc = await db.createQuery('@mycoll/[foo=:?]').setString(0, 'baz').execute().first;
117 await db.createQuery('@mycoll/[foo=:?]').setString(0, 'baz').execute(explainCallback: (log) {
126 .execute()
134 .execute()
137 doc = await db.createQuery('@mycoll/[foo re :?]').setRegExp(0, RegExp('.*')).execute().first;
[all …]
/third_party/vk-gl-cts/framework/randomshaders/
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/skia/third_party/externals/swiftshader/src/Vulkan/
DVkCommandBuffer.cpp62 void execute(vk::CommandBuffer::ExecutionState &executionState) override in execute() function in __anon8976beec0111::CmdBeginRenderPass
86 void execute(vk::CommandBuffer::ExecutionState &executionState) override in execute() function in __anon8976beec0111::CmdNextSubpass
107 void execute(vk::CommandBuffer::ExecutionState &executionState) override in execute() function in __anon8976beec0111::CmdEndRenderPass
131 void execute(vk::CommandBuffer::ExecutionState &executionState) override in execute() function in __anon8976beec0111::CmdExecuteCommands
151 void execute(vk::CommandBuffer::ExecutionState &executionState) override in execute() function in __anon8976beec0111::CmdPipelineBind
176 void execute(vk::CommandBuffer::ExecutionState &executionState) override in execute() function in __anon8976beec0111::CmdDispatch
209 void execute(vk::CommandBuffer::ExecutionState &executionState) override in execute() function in __anon8976beec0111::CmdDispatchIndirect
240 void execute(vk::CommandBuffer::ExecutionState &executionState) override in execute() function in __anon8976beec0111::CmdVertexBufferBind
263 void execute(vk::CommandBuffer::ExecutionState &executionState) override in execute() function in __anon8976beec0111::CmdIndexBufferBind
286 void execute(vk::CommandBuffer::ExecutionState &executionState) override in execute() function in __anon8976beec0111::CmdSetViewport
[all …]
/third_party/python/Doc/includes/
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/typescript/tests/baselines/reference/tscWatch/emit/emit-for-configured-projects/
Dshould-always-return-the-file-itself-if-'--out'-or-'--outFile'-is-specified.js90 execute: function () { method
101 execute: function () { method
112 execute: function () { method
123 execute: function () { method
194 execute: function () { method
205 execute: function () { method
216 execute: function () { method
227 execute: function () { method

12345678910>>...51