Home
last modified time | relevance | path

Searched refs:line (Results 33401 – 33425 of 792506) sorted by relevance

1...<<1331133213331334133513361337133813391340>>...31701

/dports/devel/llvm80/llvm-8.0.1.src/projects/openmp/runtime/tools/
H A Dgenerate-def.pl40 my ( $msg, $l, $line ) = @_;
43 " $line" .
49 foreach my $line ( @bulk ) {
52 } elsif ( $line =~ m{^\s*(?:#|\n)} ) {
54 } elsif ( $line =~ m{^\s*%} ) {
59 my $dir = { n => $n, line => $line, name => $name, value => $value };
62 } elsif ( $line =~ m{^\s*%\s*endif\s*(?:#|\n)} ) {
64 $error->( "Orphan %endif directive.", $n, $line );
69 $error->( "Bad directive.", $n, $line );
92 $error->( "", $n, $line );
[all …]
/dports/benchmarks/apib/apib-APIB_1_2_1_RC1/apib/
H A Dapib_cpu_proc.cc45 LineState line(PROC_BUF_LEN); in cpu_Count() local
50 rc = line.readStream(in); in cpu_Count()
52 while (line.next()) { in cpu_Count()
53 const auto l = line.line(); in cpu_Count()
59 line.consume(); in cpu_Count()
104 LineState line(PROC_BUF_LEN); in cpu_GetMemoryUsage() local
116 while (line.next()) { in cpu_GetMemoryUsage()
152 LineState line(PROC_BUF_LEN); in getTicks() local
159 while (line.next()) { in getTicks()
160 const auto l = line.line(); in getTicks()
[all …]
/dports/databases/postgresql14-contrib/postgresql-14.1/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql13-server/postgresql-13.5/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql14-client/postgresql-14.1/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql96-docs/postgresql-9.6.24/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql96-client/postgresql-9.6.24/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql96-contrib/postgresql-9.6.24/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/textproc/highlight/highlight-4.1/src/core/
H A Dpreformatter.cpp71 line=newLine; in setLine()
74 size_t tabPos=line.find ( '\t' ); in setLine()
77 tabPos = line.find ( '\t', tabPos+1 ); in setLine()
95 return line; in getNextLine()
103 wsPrefixLength=line.find_first_of ( INDENT_MARKERS ); in getNextLine()
107 wsPrefixLength=line.find_first_not_of ( WS_CHARS ); in getNextLine()
123 wsPrefix=line.substr ( 0, wsPrefixLength ); in getNextLine()
145 if ( line.length()-index < searchEndPos ) { in getNextLine()
147 resultString= ( index>0 ) ? wsPrefix + line.substr ( index ) : line.substr ( index ); in getNextLine()
160 resultString += line.substr ( index, lbPos-index+1 ); in getNextLine()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/layout/reftests/text-indent/
H A Dreftest.list6 != text-indent-single-line-100.html text-indent-single-line-0.html
7 == text-indent-single-line-100.html text-indent-single-line-ref-margin.html
8 == text-indent-single-line-0.html text-indent-single-line-ref-unstyled.html
9 == text-indent-single-line-percent.html text-indent-single-line-percent-ref.html
10 == text-indent-single-line-indent-inline.html text-indent-single-line-indent-inline-ref-block-margi…
11 == text-indent-single-line-indent-inline.html text-indent-single-line-indent-inline-ref-inline-marg…
12 == text-indent-multiple-line.html text-indent-multiple-line-ref-inline-margin.html
13 == text-indent-multiple-line.html text-indent-multiple-line-ref-float.html
14 != text-indent-multiple-line.html text-indent-multiple-line-notref-block-margin.html
/dports/textproc/dblatex/dblatex-0.3.11py3/lib/dbtexmf/dblatex/
H A Drawtex.py43 for line in f:
49 p = line.split()
79 for line in f:
81 line = self.figconvert(line)
83 line = p.parse(line)
84 if not(line):
86 if line:
87 o.write(line)
95 return line
104 line = re.sub(br"{"+fig+br"}", br"{"+newfig+br"}", line)
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/layout/reftests/text-indent/
H A Dreftest.list6 != text-indent-single-line-100.html text-indent-single-line-0.html
7 == text-indent-single-line-100.html text-indent-single-line-ref-margin.html
8 == text-indent-single-line-0.html text-indent-single-line-ref-unstyled.html
9 == text-indent-single-line-percent.html text-indent-single-line-percent-ref.html
10 == text-indent-single-line-indent-inline.html text-indent-single-line-indent-inline-ref-block-margi…
11 == text-indent-single-line-indent-inline.html text-indent-single-line-indent-inline-ref-inline-marg…
12 == text-indent-multiple-line.html text-indent-multiple-line-ref-inline-margin.html
13 == text-indent-multiple-line.html text-indent-multiple-line-ref-float.html
14 != text-indent-multiple-line.html text-indent-multiple-line-notref-block-margin.html
/dports/textproc/ansifilter/ansifilter-2.18/src/
H A Dpreformatter.cpp71 line=newLine; in setLine()
74 size_t tabPos=line.find ( '\t' ); in setLine()
77 tabPos = line.find ( '\t', tabPos+1 ); in setLine()
95 return line; in getNextLine()
103 wsPrefixLength=line.find_first_of ( INDENT_MARKERS ); in getNextLine()
107 wsPrefixLength=line.find_first_not_of ( WS_CHARS ); in getNextLine()
123 wsPrefix=line.substr ( 0, wsPrefixLength ); in getNextLine()
145 if ( line.length()-index < searchEndPos ) { in getNextLine()
147 resultString= ( index>0 ) ? wsPrefix + line.substr ( index ) : line.substr ( index ); in getNextLine()
160 resultString += line.substr ( index, lbPos-index+1 ); in getNextLine()
[all …]
/dports/databases/postgresql13-contrib/postgresql-13.5/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql12-contrib/postgresql-12.9/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc"
102 #line 10 "code100.pgc"
109 #line 15 "code100.pgc"
114 #line 20 "code100.pgc"
118 #line 22 "code100.pgc"
[all …]
/dports/databases/postgresql12-docs/postgresql-12.9/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql12-server/postgresql-12.9/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql13-client/postgresql-13.5/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc"
102 #line 10 "code100.pgc"
109 #line 15 "code100.pgc"
114 #line 20 "code100.pgc"
118 #line 22 "code100.pgc"
[all …]
/dports/databases/postgresql12-plpython/postgresql-12.9/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql12-plperl/postgresql-12.9/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/openmp/runtime/tools/
H A Dgenerate-def.pl39 my ( $msg, $l, $line ) = @_;
42 " $line" .
48 foreach my $line ( @bulk ) {
51 } elsif ( $line =~ m{^\s*(?:#|\n)} ) {
53 } elsif ( $line =~ m{^\s*%} ) {
58 my $dir = { n => $n, line => $line, name => $name, value => $value };
61 } elsif ( $line =~ m{^\s*%\s*endif\s*(?:#|\n)} ) {
63 $error->( "Orphan %endif directive.", $n, $line );
68 $error->( "Bad directive.", $n, $line );
91 $error->( "", $n, $line );
[all …]
/dports/databases/postgresql13-plperl/postgresql-13.5/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql13-plpython/postgresql-13.5/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc" in main()
102 #line 10 "code100.pgc" in main()
109 #line 15 "code100.pgc" in main()
114 #line 20 "code100.pgc" in main()
118 #line 22 "code100.pgc" in main()
[all …]
/dports/databases/postgresql13-docs/postgresql-13.5/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc"
102 #line 10 "code100.pgc"
109 #line 15 "code100.pgc"
114 #line 20 "code100.pgc"
118 #line 22 "code100.pgc"
[all …]
/dports/databases/postgresql12-pltcl/postgresql-12.9/src/interfaces/ecpg/test/expected/
H A Dsql-code100.c9 #line 1 "code100.pgc"
11 #line 1 "sqlca.h"
79 #line 1 "code100.pgc"
84 #line 1 "regression.h"
91 #line 4 "code100.pgc"
99 #line 9 "code100.pgc"
102 #line 10 "code100.pgc"
109 #line 15 "code100.pgc"
114 #line 20 "code100.pgc"
118 #line 22 "code100.pgc"
[all …]

1...<<1331133213331334133513361337133813391340>>...31701