Home
last modified time | relevance | path

Searched refs:c_lines (Results 1 – 18 of 18) sorted by relevance

/dports/misc/py-orange3-educational/orange3-educational-0.4.0/orangecontrib/educational/widgets/utils/tests/
H A Dtest_contours.py47 c_lines = c.contours([1, 2, 3])
50 self.assertIn(1, c_lines.keys())
51 self.assertIn(2, c_lines.keys())
52 self.assertIn(3, c_lines.keys())
60 c_lines = c.contours([1, 2, 3])
63 self.assertIn(1, c_lines.keys())
73 c_lines = c.contours([1, 2, 3])
86 c_lines = c.contours([1, 2, 3])
152 c_lines = c.contours([0.5])
159 c_lines = c.contours([0.5])
[all …]
/dports/security/p5-IO-Async-SSL/IO-Async-SSL-0.22/t/
H A D03cross.t48 my @c_lines;
52 push @c_lines, $1 while $$buffref =~ s/^(.*)\n//;
94 wait_for { @c_lines };
96 is( $c_lines[0], "Send a line", 'Line received by openssl' );
104 undef @c_lines;
109 wait_for { @c_lines };
111 is( length $c_lines[0], 1_000_000, 'Bulk data received by openssl' );
119 undef @c_lines;
130 wait_for { @c_lines };
132 is( length $c_lines[0], 1024, 'Data received by openssl without stall' );
H A D20stream.t56 my @c_lines;
60 push @c_lines, $1 while $$buffref =~ s/^(.*)\n//;
78 wait_for { @c_lines };
80 is( $c_lines[0], "Send a line", 'Line received by openssl' );
/dports/mail/mailutils/mailutils-3.13/libmu_cpp/
H A Dbody.cc89 size_t c_lines; in lines() local
90 int status = mu_body_lines (body, &c_lines); in lines()
93 return c_lines; in lines()
H A Dheader.cc92 size_t c_lines; in lines() local
93 int status = mu_header_lines (hdr, &c_lines); in lines()
96 return c_lines; in lines()
H A Dmessage.cc160 size_t c_lines; in lines() local
161 int status = mu_message_lines (msg, &c_lines); in lines()
164 return c_lines; in lines()
/dports/games/warzone2100/warzone2100/tools/csv2ini/
H A Dcsv2ini.php5 $c_lines = count($lines); variable
15 for($i=1;$i<$c_lines;$i++) {
31 for($i=1;$i<$c_lines;$i++) {
/dports/databases/sqsh/sqsh-2.5/src/
H A Ddsp_x.c71 int c_lines; /* Number of lines displayed */
401 cd.c_lines = 0;
630 cd.c_lines = 0;
656 sprintf( number, "Lines: %d", cd->c_lines );
699 sprintf( number, "Lines: %d", cd->c_lines );
719 ++cd->c_lines;
721 if ((cd->c_lines % 100) == 0)
723 sprintf( number, "Lines: %d", cd->c_lines );
/dports/misc/sloccount/sloccount-2.26/
H A Dcompute_c_usc51 c_lines
65 c_lines
H A Dmakefile160 c_lines: C_LINES.C target
161 $(CC) C_LINES.C -o c_lines$(EXE_SUFFIX)
213 rm -f $(VERSIONEDNAME)/c_lines
H A Dc_lines_environment.dat14 (* Refer to the source code file, 'c_lines.c', for further information *)
36 (* of the 'c_lines' code counting tool. *)
70 (* during execution of the 'c_lines' tool. The progress *)
/dports/graphics/luminance-qt5/luminance-hdr-2.6.1.1/src/contrib/qtwaitingspinner/
H A DQtWaitingSpinner.cpp36 const int c_lines(12); variable
53 m_numberOfLines(c_lines), in QtWaitingSpinner()
79 m_numberOfLines(c_lines), in QtWaitingSpinner()
/dports/math/py-or-tools/or-tools-9.2/tools/
H A Dexport_to_ipynb.py93 c_lines = lines[s + 1:e] variable
98 for n_line in c_lines
/dports/www/phpgroupware/phpgroupware-0.9.16.017/calendar/inc/
H A Dclass.calendar_holiday.inc.php141 $c_lines = count($lines);
142 for($i=0;$i<$c_lines;$i++)
H A Dclass.boholiday.inc.php263 $c_lines = count($lines);
264 for($i=0;$i<$c_lines;$i++)
/dports/biology/groopm/GroopM-0.3.4/groopm/
H A Dcluster.py823 c_lines = []
832 c_lines.append(c_sorted_data[c_sizes[c]+start])
864 for c in range(len(c_lines)):
865 … plt.plot([k_line_min,k_line_max], [c_lines[c], c_lines[c]], c_line_cols[c], zorder=11)
/dports/devel/ispc/ispc-1.16.1/
H A Dperf.py156 c_lines = c.readlines()
160 for i in c_lines[2]:
/dports/games/openttd/openttd-12.1/src/
H A Dframerate_gui.cpp895 const int c_lines = PC_BLACK; in DrawWidget() local
969 GfxDrawLine(lastpoint.x, lastpoint.y, newpoint.x, newpoint.y, c_lines); in DrawWidget()