Home
last modified time | relevance | path

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

12345678910>>...105

/external/mesa3d/.gitlab-ci/piglit/
Dcl.txt17 program/execute/amdgcn-callee-saved-registers: skip
18 program/execute/amdgcn-f16-inline-immediates: skip
19 program/execute/amdgcn-f32-inline-immediates/add integer 64: fail
20 program/execute/amdgcn-i16-inline-immediates: skip
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 …]
/external/python/cpython3/Lib/sqlite3/test/
Dtransactions.py56 self.cur1.execute("create table test(i)")
57 self.cur1.execute("insert into test(i) values (5)")
58 self.cur1.execute("create table test2(j)")
59 self.cur2.execute("select i from test")
64 self.cur1.execute("create table test(i)")
65 self.cur1.execute("insert into test(i) values (5)")
66 self.cur2.execute("select i from test")
71 self.cur1.execute("create table test(i)")
72 self.cur1.execute("insert into test(i) values (5)")
74 self.cur1.execute("update test set i=6")
[all …]
Dtypes.py37 self.cur.execute("create table test(i integer, s varchar, f number, b blob)")
44 self.cur.execute("insert into test(s) values (?)", ("�sterreich",))
45 self.cur.execute("select s from test")
50 self.cur.execute("insert into test(i) values (?)", (42,))
51 self.cur.execute("select i from test")
57 self.cur.execute("insert into test(i) values (?)", (num,))
58 self.cur.execute("select i from test")
64 self.cur.execute("insert into test(f) values (?)", (val,))
65 self.cur.execute("select f from test")
72 self.cur.execute("insert into test(b) values (?)", (val,))
[all …]
Dregression.py41 cur.execute("pragma user_version")
48 cur.execute("pragma schema_version")
59 cursors[0].execute("create table test(x)")
64 cursors[i].execute(" " * i + "select x from test")
70 cur.execute('select 1 as "foo bar [datetime]"')
73 cur.execute('select 1 as "foo baz"')
87 cur.execute("select 1 x union select " + str(i))
93 con.execute("create table foo(x, unique(x) on conflict rollback)")
94 con.execute("insert into foo(x) values (1)")
96 con.execute("insert into foo(x) values (1)")
[all …]
Ddbapi.py91 cu.execute("create table test(id integer primary key, name text)")
92 cu.execute("insert into test(name) values (?)", ("foo",))
146 cu.execute("create table transactiontest(id integer primary key, name text)")
148 cu.execute("insert into transactiontest(name) values (?)", ("foo",))
150 cu.execute("select name from transactiontest where name=?", ["foo"])
155 cu.execute("select name from transactiontest where name=?", ["foo"])
172 cx.execute('create table test(id integer)')
181 cx.execute('create table test(id integer)')
183 cx.execute('insert into test(id) values(0)')
186 cx.execute('insert into test(id) values(1)')
[all …]
Duserfunctions.py160 self.con.execute("create table test(t text)")
179 cur.execute("select reftest()")
183 cur.execute("select returntext()")
190 cur.execute("select returnunicode()")
197 cur.execute("select returnint()")
204 cur.execute("select returnfloat()")
212 cur.execute("select returnnull()")
219 cur.execute("select returnblob()")
226 cur.execute("select returnlonglong()")
233 cur.execute("select raiseexception()")
[all …]
/external/python/cpython2/Lib/sqlite3/test/
Dtransactions.py57 self.cur1.execute("create table test(i)")
58 self.cur1.execute("insert into test(i) values (5)")
59 self.cur1.execute("create table test2(j)")
60 self.cur2.execute("select i from test")
65 self.cur1.execute("create table test(i)")
66 self.cur1.execute("insert into test(i) values (5)")
67 self.cur2.execute("select i from test")
72 self.cur1.execute("create table test(i)")
73 self.cur1.execute("insert into test(i) values (5)")
75 self.cur1.execute("update test set i=6")
[all …]
Dtypes.py38 self.cur.execute("create table test(i integer, s varchar, f number, b blob)")
45 self.cur.execute("insert into test(s) values (?)", (u"�sterreich",))
46 self.cur.execute("select s from test")
51 self.cur.execute("insert into test(i) values (?)", (42,))
52 self.cur.execute("select i from test")
58 self.cur.execute("insert into test(i) values (?)", (num,))
59 self.cur.execute("select i from test")
65 self.cur.execute("insert into test(f) values (?)", (val,))
66 self.cur.execute("select f from test")
73 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))
93 con.execute("create table foo(x, unique(x) on conflict rollback)")
94 con.execute("insert into foo(x) values (1)")
96 con.execute("insert into foo(x) values (1)")
[all …]
Ddbapi.py92 cu.execute("create table test(id integer primary key, name text)")
93 cu.execute("insert into test(name) values (?)", ("foo",))
149 self.cu.execute("create table test(id integer primary key, name text, income number)")
150 self.cu.execute("insert into test(name) values (?)", ("foo",))
157 self.cu.execute("delete from test")
161 self.cu.execute("select asdf")
170 self.cu.execute("select 5+4; select 4+5")
178 self.cu.execute("select 5+4; -- foo bar")
181 self.cu.execute("""
191 self.cu.execute(42)
[all …]
Duserfunctions.py165 cur.execute("select reftest()")
169 cur.execute("select returntext()")
176 cur.execute("select returnunicode()")
183 cur.execute("select returnint()")
190 cur.execute("select returnfloat()")
198 cur.execute("select returnnull()")
205 cur.execute("select returnblob()")
213 cur.execute("select returnlonglong()")
220 cur.execute("select raiseexception()")
228 cur.execute("select isstring(?)", ("foo",))
[all …]
/external/autotest/frontend/migrations/
D013_new_test_fields.py2 manager.execute('ALTER TABLE jobs ADD run_verify tinyint(1) default 1')
3 manager.execute('ALTER TABLE autotests ADD author VARCHAR(256)')
4 manager.execute('ALTER TABLE autotests ADD dependencies VARCHAR(256)')
5 manager.execute('ALTER TABLE autotests ADD experimental SMALLINT DEFAULT 0')
6 manager.execute('ALTER TABLE autotests ADD run_verify SMALLINT DEFAULT 1')
7 manager.execute('ALTER TABLE autotests ADD test_time SMALLINT DEFAULT 1')
8 manager.execute('ALTER TABLE autotests ADD test_category VARCHAR(256)')
9 manager.execute('ALTER TABLE autotests ADD sync_count INT(11) DEFAULT 1')
13 manager.execute('ALTER TABLE jobs DROP run_verify')
14 manager.execute('ALTER TABLE autotests DROP sync_count')
[all …]
D022_implement_sync_count.py14 manager.execute("""ALTER TABLE host_queue_entries ADD COLUMN
18 rows = manager.execute("""
24 hqes = manager.execute("""
34 manager.execute(
39 manager.execute('UPDATE jobs SET synch_count = 1 WHERE synch_type = 1')
40 manager.execute('UPDATE jobs SET synch_count = 2 '
43 manager.execute('ALTER TABLE jobs DROP COLUMN synch_type')
44 manager.execute('ALTER TABLE autotests DROP COLUMN synch_type')
46 manager.execute('ALTER TABLE jobs DROP COLUMN synchronizing')
D028_add_atomic_groups.py3 manager.execute("ALTER TABLE labels ADD `atomic_group_id` "
5 manager.execute("ALTER TABLE labels ADD CONSTRAINT FOREIGN KEY "
8 manager.execute("ALTER TABLE host_queue_entries ADD `atomic_group_id` "
10 manager.execute("ALTER TABLE host_queue_entries ADD CONSTRAINT FOREIGN KEY "
16 manager.execute("ALTER TABLE host_queue_entries REMOVE `atomic_group_id`")
17 manager.execute("ALTER TABLE labels REMOVE `atomic_group_id`")
18 manager.execute("DROP TABLE IF EXISTS `atomic_groups`")
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DSerializingExecutorTest.java59 public void execute(Runnable command) { in resumable() method in SerializingExecutorTest.CoyExecutor
70 executor.execute(new AddToRuns(1)); in resumable()
76 executor.execute(new AddToRuns(2)); in resumable()
84 executor.execute(new AddToRuns(1)); in serial()
89 executor.execute(new AddToRuns(2)); in serial()
97 executor.execute(new AddToRuns(1)); in parallel()
98 executor.execute(new AddToRuns(2)); in parallel()
99 executor.execute(new AddToRuns(3)); in parallel()
107 executor.execute(new Runnable() { in reentrant()
110 executor.execute(new AddToRuns(3)); in reentrant()
[all …]
DSerializeReentrantCallsDirectExecutorTest.java44 executor.execute(new Runnable() { in reentrantCallsShouldBeSerialized()
47 executor.execute(new Runnable() { in reentrantCallsShouldBeSerialized()
50 executor.execute(new Runnable() { in reentrantCallsShouldBeSerialized()
58 executor.execute(new Runnable() { in reentrantCallsShouldBeSerialized()
76 executor.execute(new Runnable() { in exceptionShouldNotCancelQueuedTasks()
79 executor.execute(new Runnable() { in exceptionShouldNotCancelQueuedTasks()
86 executor.execute(new Runnable() { in exceptionShouldNotCancelQueuedTasks()
103 executor.execute(null); in executingNullShouldFail()
109 executor.execute(new Runnable() { in executeCanBeRepeated()
115 executor.execute(new Runnable() { in executeCanBeRepeated()
[all …]
/external/llvm-project/mlir/test/Dialect/Async/
Dasync-ref-counting.mlir27 // CHECK: %[[TOKEN:.*]] = async.execute
29 %token = async.execute {
37 // CHECK: %[[TOKEN:.*]] = async.execute
38 %token = async.execute {
47 // CHECK: %[[TOKEN:.*]] = async.execute
48 %token = async.execute {
60 // CHECK: %[[TOKEN:.*]] = async.execute
61 %token = async.execute {
73 // CHECK: %[[TOKEN:.*]] = async.execute
74 %token = async.execute {
[all …]
Dops.mlir17 // CHECK: async.execute
18 %token = async.execute {
28 // CHECK: async.execute -> !async.value<f32>
29 %token, %results = async.execute -> !async.value<f32> {
41 // CHECK: async.execute -> !async.value<f32>
42 %token, %results = async.execute -> !async.value<f32> {
52 %token, %results:2 = async.execute -> (!async.value<f32>, !async.value<f32>) {
64 // CHECK: async.execute [%arg0]
65 %token = async.execute [%arg0] {
75 // CHECK: async.execute (%arg0 as %arg1: !async.value<f32>) -> !async.value<f32>
[all …]
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DSequentialExecutorTest.java52 public void execute(Runnable command) { in execute() method in SequentialExecutorTest.FakeExecutor
102 e.execute(intCounter); in testBasics()
105 e.execute(intCounter); in testBasics()
114 e.execute(intCounter); in testBasics()
115 e.execute(intCounter); in testBasics()
116 e.execute(intCounter); in testBasics()
140 e.execute(new FakeOp(0)); in testOrdering()
141 e.execute(new FakeOp(1)); in testOrdering()
142 e.execute(new FakeOp(2)); in testOrdering()
161 e.execute(runMe); in testRuntimeException_doesNotStopExecution()
[all …]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DSequentialExecutorTest.java52 public void execute(Runnable command) { in execute() method in SequentialExecutorTest.FakeExecutor
102 e.execute(intCounter); in testBasics()
105 e.execute(intCounter); in testBasics()
114 e.execute(intCounter); in testBasics()
115 e.execute(intCounter); in testBasics()
116 e.execute(intCounter); in testBasics()
140 e.execute(new FakeOp(0)); in testOrdering()
141 e.execute(new FakeOp(1)); in testOrdering()
142 e.execute(new FakeOp(2)); in testOrdering()
161 e.execute(runMe); in testRuntimeException_doesNotStopExecution()
[all …]
/external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/
DShadowAndroidHttpClient.java49 protected HttpResponse execute(HttpUriRequest httpUriRequest) in execute() method in ShadowAndroidHttpClient
51 return httpClient.execute(httpUriRequest); in execute()
55 protected HttpResponse execute(HttpUriRequest httpUriRequest, HttpContext httpContext) in execute() method in ShadowAndroidHttpClient
57 return httpClient.execute(httpUriRequest, httpContext); in execute()
61 protected HttpResponse execute(HttpHost httpHost, HttpRequest httpRequest) in execute() method in ShadowAndroidHttpClient
63 return httpClient.execute(httpHost, httpRequest); in execute()
67 protected HttpResponse execute( in execute() method in ShadowAndroidHttpClient
70 return httpClient.execute(httpHost, httpRequest, httpContext); in execute()
74 protected <T> T execute( in execute() method in ShadowAndroidHttpClient
77 return httpClient.execute(httpUriRequest, responseHandler); in execute()
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/
Dcritical_section_test.py58 r = [cs.execute(lambda: fn(1.0, 2.0)) for _ in range(num_concurrent)]
88 def execute(): function
89 return cs.execute(lambda: fn(1.0, 2.0))
93 execute,
124 return [cs.execute(lambda: fn(i)) for i in range(num_concurrent)]
150 r = [cs.execute(lambda: fn_return_op(1.0, 2.0))
163 execute = cs.execute(lambda: add(1.0), name="my_execute")
165 x for x in execute.graph.get_operations()
180 return cs.execute(lambda: add(x))
184 cs.execute(lambda: fn(1.0))
[all …]
/external/crcalc/src/com/hp/creals/
DUnaryCRFunction.java55 abstract public CR execute(CR x); in execute() method in UnaryCRFunction
177 public CR execute(CR x) { in execute() method in sin_UnaryCRFunction
183 public CR execute(CR x) { in execute() method in cos_UnaryCRFunction
189 public CR execute(CR x) { in execute() method in tan_UnaryCRFunction
195 public CR execute(CR x) { in execute() method in asin_UnaryCRFunction
201 public CR execute(CR x) { in execute() method in acos_UnaryCRFunction
212 public CR execute(CR x) { in execute() method in atan_UnaryCRFunction
221 public CR execute(CR x) { in execute() method in exp_UnaryCRFunction
227 public CR execute(CR x) { in execute() method in ln_UnaryCRFunction
233 public CR execute(CR x) { in execute() method in identity_UnaryCRFunction
[all …]
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/core/util/
DAssertTest.java46 public void execute() throws Exception; in execute() method
95 public void execute() throws Exception { in testAssertTrue()
109 public void execute() throws Exception { in testAssertFalse()
124 public void execute() throws Exception { in testAssertNotNullOrEmpty_Collection()
130 public void execute() throws Exception { in testAssertNotNullOrEmpty_Collection()
145 public void execute() throws Exception { in testAssertNotNullOrEmpty_Map()
151 public void execute() throws Exception { in testAssertNotNullOrEmpty_Map()
166 public void execute() throws Exception { in testAssertNotNullOrEmpty_array()
172 public void execute() throws Exception { in testAssertNotNullOrEmpty_array()
186 public void execute() throws Exception { in testAssertNotNullOrEmpty_String()
[all …]
/external/mockftpserver/tags/2.0/src/test/java/org/mockftpserver/core/util/
DAssertTest.java46 public void execute() throws Exception; in execute() method
95 public void execute() throws Exception { in testAssertTrue()
109 public void execute() throws Exception { in testAssertFalse()
124 public void execute() throws Exception { in testAssertNotNullOrEmpty_Collection()
130 public void execute() throws Exception { in testAssertNotNullOrEmpty_Collection()
145 public void execute() throws Exception { in testAssertNotNullOrEmpty_Map()
151 public void execute() throws Exception { in testAssertNotNullOrEmpty_Map()
166 public void execute() throws Exception { in testAssertNotNullOrEmpty_array()
172 public void execute() throws Exception { in testAssertNotNullOrEmpty_array()
186 public void execute() throws Exception { in testAssertNotNullOrEmpty_String()
[all …]

12345678910>>...105