Home
last modified time | relevance | path

Searched refs:cursor3 (Results 1 – 25 of 70) sorted by relevance

123

/dports/math/vtk9/VTK-9.1.0/Filters/General/Testing/Python/
H A Dcursor2D.py33 cursor3 = vtk.vtkCursor2D() variable
34 cursor3.SetModelBounds(15, 45, 75, 105, 0, 0)
35 cursor3.SetFocalPoint(30, 90, 0)
36 cursor3.AllOff()
37 cursor3.AxesOn()
38 cursor3.OutlineOff()
39 cursor3.PointOn()
40 cursor3.SetRadius(3)
42 cursor3Mapper.SetInputConnection(cursor3.GetOutputPort())
/dports/math/vtk8/VTK-8.2.0/Filters/General/Testing/Python/
H A Dcursor2D.py33 cursor3 = vtk.vtkCursor2D() variable
34 cursor3.SetModelBounds(15, 45, 75, 105, 0, 0)
35 cursor3.SetFocalPoint(30, 90, 0)
36 cursor3.AllOff()
37 cursor3.AxesOn()
38 cursor3.OutlineOff()
39 cursor3.PointOn()
40 cursor3.SetRadius(3)
42 cursor3Mapper.SetInputConnection(cursor3.GetOutputPort())
/dports/math/vtk6/VTK-6.2.0/Filters/General/Testing/Tcl/
H A Dcursor2D.tcl30 vtkCursor2D cursor3
31 eval cursor3 SetModelBounds 15 45 75 105 0 0
32 eval cursor3 SetFocalPoint 30 90 0
33 cursor3 AllOff
34 cursor3 AxesOn
35 cursor3 OutlineOff
36 cursor3 PointOn
37 cursor3 SetRadius 3
39 cursor3Mapper SetInputConnection [cursor3 GetOutputPort]
/dports/math/vtk6/VTK-6.2.0/Filters/General/Testing/Python/
H A Dcursor2D.py34 cursor3 = vtk.vtkCursor2D() variable
35 cursor3.SetModelBounds(15, 45, 75, 105, 0, 0)
36 cursor3.SetFocalPoint(30, 90, 0)
37 cursor3.AllOff()
38 cursor3.AxesOn()
39 cursor3.OutlineOff()
40 cursor3.PointOn()
41 cursor3.SetRadius(3)
43 cursor3Mapper.SetInputConnection(cursor3.GetOutputPort())
/dports/devel/re2c/re2c-2.2/test/reuse/
H A Drepeat-02.c145 if (limit3 <= cursor3) fill3(1); in scan()
146 yych = *cursor3; in scan()
158 ++cursor3; in scan()
161 ++cursor3; in scan()
164 ++cursor3; in scan()
167 ++cursor3; in scan()
171 if (limit3 <= cursor3) fill3(1); in scan()
172 yych = *cursor3; in scan()
182 ++cursor3; in scan()
185 ++cursor3; in scan()
[all …]
H A Drepeat-07_default.c149 if (limit3 <= cursor3) fill3(1); in scan()
150 yych = *cursor3; in scan()
190 ++cursor3; in scan()
193 ++cursor3; in scan()
196 ++cursor3; in scan()
199 ++cursor3; in scan()
202 ++cursor3; in scan()
205 ++cursor3; in scan()
208 ++cursor3; in scan()
H A Drepeat-07.c146 if (limit3 <= cursor3) fill3(1); in scan()
147 yych = *cursor3; in scan()
189 ++cursor3; in scan()
192 ++cursor3; in scan()
195 ++cursor3; in scan()
198 ++cursor3; in scan()
201 ++cursor3; in scan()
204 ++cursor3; in scan()
H A Drepeat-06.c144 if (limit3 <= cursor3) fill3(1); in scan()
145 yych = *cursor3; in scan()
185 ++cursor3; in scan()
188 ++cursor3; in scan()
191 ++cursor3; in scan()
194 ++cursor3; in scan()
197 ++cursor3; in scan()
200 ++cursor3; in scan()
/dports/databases/gigabase/gigabase/
H A Dtestidx.cpp45 dbCursor<Record> cursor2(cursorType), cursor3(cursorType); in main() local
58 int n2 = cursor3.select(q3); in main()
62 assert(cursor3.isIncremental()); in main()
67 assert(cursor2->key == cursor3->key); in main()
69 hasNext = cursor3.next(); in main()
76 n2 = cursor3.select(q5); in main()
80 assert(cursor3.isIncremental()); in main()
85 assert(strcmp(cursor2->strKey, cursor3->strKey) == 0); in main()
87 hasNext = cursor3.next(); in main()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/cpu/aarch64/
H A Daarch64_call.cpp143 u_int64_t *cursor3 = (u_int64_t *)sim->getCPUState().xreg(SP, 1); in setup_arm_sim() local
145 cursor3 -= gp_arg_count - 8; in setup_arm_sim()
148 cursor3 -= fp_arg_count - 8; in setup_arm_sim()
150 sim->getCPUState().xreg(SP, 1) = (u_int64_t)(cursor3++); in setup_arm_sim()
163 *cursor3++ = *cursor2++; in setup_arm_sim()
173 *cursor3++ = *cursor2++; in setup_arm_sim()
/dports/databases/p5-DBD-ODBC/DBD-ODBC-1.61/examples/
H A Dthrtest.pl25 my $cursor3 = undef ;
74 elsif ($action == 3 && !$cursor3)
76 $cursor3 -> finish if ($cursor3) ;
77 $cursor3 = $dbh->prepare("UPDATE thrtest2 SET lastLogin =
108 $cursor3 = undef ;
120 $cursor3 = undef ;
/dports/databases/p5-BerkeleyDB/BerkeleyDB-0.64/t/
H A Djoin.t161 ok my $cursor3 = $db3->db_cursor() ;
164 ok $cursor3->c_get($k, $v, DB_SET) == 0 ;
165 ok $cursor1 = $db1->db_join([$cursor2, $cursor3]) ;
187 ok $cursor3 = $db3->db_cursor() ;
190 ok $cursor3->c_get($k, $v, DB_SET) == 0 ;
191 ok $cursor1 = $db1->db_join([$cursor2, $cursor3]) ;
210 ok $cursor3->c_close() == 0 ;
/dports/databases/db5/db-5.3.28/lang/perl/BerkeleyDB/t/
H A Djoin.t161 ok my $cursor3 = $db3->db_cursor() ;
164 ok $cursor3->c_get($k, $v, DB_SET) == 0 ;
165 ok $cursor1 = $db1->db_join([$cursor2, $cursor3]) ;
187 ok $cursor3 = $db3->db_cursor() ;
190 ok $cursor3->c_get($k, $v, DB_SET) == 0 ;
191 ok $cursor1 = $db1->db_join([$cursor2, $cursor3]) ;
210 ok $cursor3->c_close() == 0 ;
/dports/databases/db18/db-18.1.40/lang/perl/BerkeleyDB/t/
H A Djoin.t161 ok my $cursor3 = $db3->db_cursor() ;
164 ok $cursor3->c_get($k, $v, DB_SET) == 0 ;
165 ok $cursor1 = $db1->db_join([$cursor2, $cursor3]) ;
187 ok $cursor3 = $db3->db_cursor() ;
190 ok $cursor3->c_get($k, $v, DB_SET) == 0 ;
191 ok $cursor1 = $db1->db_join([$cursor2, $cursor3]) ;
210 ok $cursor3->c_close() == 0 ;
/dports/lang/php73/php-7.3.33/ext/oci8/tests/
H A Ddefine6.phpt64 $cursor3 = oci_new_cursor($c);
65 oci_bind_by_name($s3, ":curs", $cursor3, -1, OCI_B_CURSOR);
67 oci_define_by_name($cursor3, 'ID', $id3);
68 oci_execute($cursor3);
69 while (oci_fetch_row($cursor3)) {
/dports/www/mod_php81/php-8.1.1/ext/oci8/tests/
H A Ddefine6.phpt66 $cursor3 = oci_new_cursor($c);
67 oci_bind_by_name($s3, ":curs", $cursor3, -1, OCI_B_CURSOR);
69 oci_define_by_name($cursor3, 'ID', $id3);
70 oci_execute($cursor3);
71 while (oci_fetch_row($cursor3)) {
/dports/lang/php81/php-8.1.1/ext/oci8/tests/
H A Ddefine6.phpt66 $cursor3 = oci_new_cursor($c);
67 oci_bind_by_name($s3, ":curs", $cursor3, -1, OCI_B_CURSOR);
69 oci_define_by_name($cursor3, 'ID', $id3);
70 oci_execute($cursor3);
71 while (oci_fetch_row($cursor3)) {
/dports/lang/php74/php-7.4.27/ext/oci8/tests/
H A Ddefine6.phpt64 $cursor3 = oci_new_cursor($c);
65 oci_bind_by_name($s3, ":curs", $cursor3, -1, OCI_B_CURSOR);
67 oci_define_by_name($cursor3, 'ID', $id3);
68 oci_execute($cursor3);
69 while (oci_fetch_row($cursor3)) {
/dports/lang/php80/php-8.0.15/ext/oci8/tests/
H A Ddefine6.phpt64 $cursor3 = oci_new_cursor($c);
65 oci_bind_by_name($s3, ":curs", $cursor3, -1, OCI_B_CURSOR);
67 oci_define_by_name($cursor3, 'ID', $id3);
68 oci_execute($cursor3);
69 while (oci_fetch_row($cursor3)) {
/dports/www/mod_php73/php-7.3.33/ext/oci8/tests/
H A Ddefine6.phpt64 $cursor3 = oci_new_cursor($c);
65 oci_bind_by_name($s3, ":curs", $cursor3, -1, OCI_B_CURSOR);
67 oci_define_by_name($cursor3, 'ID', $id3);
68 oci_execute($cursor3);
69 while (oci_fetch_row($cursor3)) {
/dports/www/mod_php74/php-7.4.27/ext/oci8/tests/
H A Ddefine6.phpt64 $cursor3 = oci_new_cursor($c);
65 oci_bind_by_name($s3, ":curs", $cursor3, -1, OCI_B_CURSOR);
67 oci_define_by_name($cursor3, 'ID', $id3);
68 oci_execute($cursor3);
69 while (oci_fetch_row($cursor3)) {
/dports/www/mod_php80/php-8.0.15/ext/oci8/tests/
H A Ddefine6.phpt64 $cursor3 = oci_new_cursor($c);
65 oci_bind_by_name($s3, ":curs", $cursor3, -1, OCI_B_CURSOR);
67 oci_define_by_name($cursor3, 'ID', $id3);
68 oci_execute($cursor3);
69 while (oci_fetch_row($cursor3)) {
/dports/databases/db18/db-18.1.40/test/tcl/
H A Dtest133.tcl154 set cursor3 [eval $sec_db cursor $txn]
161 set ret3 [$cursor3 get -next]
180 set ret3 [$cursor3 get -next]
182 error_check_good cursor3_close [$cursor3 close] 0
/dports/databases/db5/db-5.3.28/test/tcl/
H A Dtest133.tcl154 set cursor3 [eval $sec_db cursor $txn]
161 set ret3 [$cursor3 get -next]
180 set ret3 [$cursor3 get -next]
182 error_check_good cursor3_close [$cursor3 close] 0
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/dbapi/driver/ftds100/freetds/odbc/unittests/
H A DMakefile.cursor3.app1 # $Id: Makefile.cursor3.app 554130 2017-12-28 17:20:38Z ucko $
4 SRC = cursor3 common

123