Home
last modified time | relevance | path

Searched refs:head1 (Results 1 – 25 of 6381) sorted by relevance

12345678910>>...256

/dports/lang/perl5.34/perl-5.34.0/cpan/Pod-Simple/t/
H A Dchunking.t28 ok( Pod::Simple::XMLOutStream->_out("=head1 =head1"),
29 '<Document><head1>=head1</head1></Document>'
32 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1"),
33 '<Document><head1>=head1</head1></Document>'
36 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1\n"),
37 '<Document><head1>=head1</head1></Document>'
40 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1\n\n"),
41 '<Document><head1>=head1</head1></Document>'
44 &ok(e "\n=head1 =head1\n\n" , "\n=head1 =head1\n\n");
46 &ok(e "\n=head1\n=head1\n\n", "\n=head1 =head1\n\n");
/dports/lang/perl5.30/perl-5.30.3/cpan/Pod-Simple/t/
H A Dchunking.t22 ok( Pod::Simple::XMLOutStream->_out("=head1 =head1"),
23 '<Document><head1>=head1</head1></Document>'
26 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1"),
27 '<Document><head1>=head1</head1></Document>'
30 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1\n"),
31 '<Document><head1>=head1</head1></Document>'
34 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1\n\n"),
35 '<Document><head1>=head1</head1></Document>'
38 &ok(e "\n=head1 =head1\n\n" , "\n=head1 =head1\n\n");
40 &ok(e "\n=head1\n=head1\n\n", "\n=head1 =head1\n\n");
/dports/lang/perl5.32/perl-5.32.1/cpan/Pod-Simple/t/
H A Dchunking.t22 ok( Pod::Simple::XMLOutStream->_out("=head1 =head1"),
23 '<Document><head1>=head1</head1></Document>'
26 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1"),
27 '<Document><head1>=head1</head1></Document>'
30 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1\n"),
31 '<Document><head1>=head1</head1></Document>'
34 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1\n\n"),
35 '<Document><head1>=head1</head1></Document>'
38 &ok(e "\n=head1 =head1\n\n" , "\n=head1 =head1\n\n");
40 &ok(e "\n=head1\n=head1\n\n", "\n=head1 =head1\n\n");
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/cpan/Pod-Simple/t/
H A Dchunking.t28 ok( Pod::Simple::XMLOutStream->_out("=head1 =head1"),
29 '<Document><head1>=head1</head1></Document>'
32 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1"),
33 '<Document><head1>=head1</head1></Document>'
36 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1\n"),
37 '<Document><head1>=head1</head1></Document>'
40 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1\n\n"),
41 '<Document><head1>=head1</head1></Document>'
44 &ok(e "\n=head1 =head1\n\n" , "\n=head1 =head1\n\n");
46 &ok(e "\n=head1\n=head1\n\n", "\n=head1 =head1\n\n");
/dports/textproc/p5-Pod-Simple/Pod-Simple-3.43/t/
H A Dchunking.t28 ok( Pod::Simple::XMLOutStream->_out("=head1 =head1"),
29 '<Document><head1>=head1</head1></Document>'
32 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1"),
33 '<Document><head1>=head1</head1></Document>'
36 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1\n"),
37 '<Document><head1>=head1</head1></Document>'
40 ok( Pod::Simple::XMLOutStream->_out("\n=head1 =head1\n\n"),
41 '<Document><head1>=head1</head1></Document>'
44 &ok(e "\n=head1 =head1\n\n" , "\n=head1 =head1\n\n");
46 &ok(e "\n=head1\n=head1\n\n", "\n=head1 =head1\n\n");
/dports/devel/p5-Test-Auto/Test-Auto-0.12/t/
H A DTest_Auto_Document.t126 like $result, qr/=head1 NAME/, 'has =head1 name';
127 like $result, qr/=head1 ABSTRACT/, 'has =head1 abstract';
128 like $result, qr/=head1 SYNOPSIS/, 'has =head1 synopsis';
130 unlike $result, qr/=head1 AUTHOR/, 'no =head1 author';
131 unlike $result, qr/=head1 LICENSE/, 'no =head1 license';
140 like $result, qr/=head1 NAME/, 'has =head1 name';
144 like $result, qr/=head1 AUTHOR/, 'no =head1 author';
145 like $result, qr/=head1 LICENSE/, 'no =head1 license';
154 like $result, qr/=head1 NAME/, 'has =head1 name';
158 like $result, qr/=head1 AUTHOR/, 'has =head1 author';
[all …]
/dports/math/spooles/spooles.2.2/Utilities/
H A DDLIST.h47 #define DLIST_SWAP_HEADS(head1, head2, type) \ argument
48 if ( (head1)->next == head1 ) { \
51 = ((head1)->prev = (head2)->prev)->next = head1 ; \
54 ((head2)->next = (head1)->next)->prev \
56 (head1)->prev = (head1)->next = head1 ; } \
58 type *temp = head1->next ; \
59 ((head1)->next = (head2)->next)->prev = head1 ; \
61 temp = head1->prev ; \
62 ((head1)->prev = (head2)->prev)->next = head1 ; \
65 #define DLIST_MERGE(head1, head2) \ argument
[all …]
/dports/math/spooles-mpich/spooles.2.2_SHARED/Utilities/
H A DDLIST.h47 #define DLIST_SWAP_HEADS(head1, head2, type) \ argument
48 if ( (head1)->next == head1 ) { \
51 = ((head1)->prev = (head2)->prev)->next = head1 ; \
54 ((head2)->next = (head1)->next)->prev \
56 (head1)->prev = (head1)->next = head1 ; } \
58 type *temp = head1->next ; \
59 ((head1)->next = (head2)->next)->prev = head1 ; \
61 temp = head1->prev ; \
62 ((head1)->prev = (head2)->prev)->next = head1 ; \
65 #define DLIST_MERGE(head1, head2) \ argument
[all …]
/dports/math/spooles-mpich/spooles.2.2/Utilities/
H A DDLIST.h47 #define DLIST_SWAP_HEADS(head1, head2, type) \ argument
48 if ( (head1)->next == head1 ) { \
51 = ((head1)->prev = (head2)->prev)->next = head1 ; \
54 ((head2)->next = (head1)->next)->prev \
56 (head1)->prev = (head1)->next = head1 ; } \
58 type *temp = head1->next ; \
59 ((head1)->next = (head2)->next)->prev = head1 ; \
61 temp = head1->prev ; \
62 ((head1)->prev = (head2)->prev)->next = head1 ; \
65 #define DLIST_MERGE(head1, head2) \ argument
[all …]
/dports/math/spooles/spooles.2.2_SHARED/Utilities/
H A DDLIST.h47 #define DLIST_SWAP_HEADS(head1, head2, type) \ argument
48 if ( (head1)->next == head1 ) { \
51 = ((head1)->prev = (head2)->prev)->next = head1 ; \
54 ((head2)->next = (head1)->next)->prev \
56 (head1)->prev = (head1)->next = head1 ; } \
58 type *temp = head1->next ; \
59 ((head1)->next = (head2)->next)->prev = head1 ; \
61 temp = head1->prev ; \
62 ((head1)->prev = (head2)->prev)->next = head1 ; \
65 #define DLIST_MERGE(head1, head2) \ argument
[all …]
/dports/textproc/p5-Perl-Critic/Perl-Critic-1.140/t/Documentation/
H A DRequirePackageMatchesPodName.run16 =head1 NAME
42 =head1 NAME
58 =head1 NAME
77 =head1 NAME
96 =head1 NAME
115 =head1 NAME
134 =head1 NAME
153 =head1 NAME
172 =head1 NAME
192 =head1 NAME
[all …]
H A DRequirePodSections.run6 =head1 NO CODE IN HERE
29 =head1 NAME
33 =head1 DESCRIPTION
37 =head1 USAGE
49 =head1 NAME
53 =head1 DESCRIPTION
69 =head1 AUTHOR
86 =head1 MI NOMBRE
106 =head1 MI NOMBRE
128 =head1 MI NOMBRE
[all …]
/dports/www/p5-Jifty/Jifty-1.50430/debian/patches/
H A Djifty-plugin-manpage-has-bad-whatis.patch5 =head1 NAME
18 =head1 EXAMPLE
37 +=head1 NAME
50 +=head1 NAME
65 +=head1 NAME
77 =head1 NAME
88 =head1 NAME
100 =head1 NAME
111 =head1 NAME
122 =head1 NAME
[all …]
/dports/textproc/p5-Pod-Autopod/Pod-Autopod-1.215/example/out/pod/Example/
H A DTitles.pod1 =head1 NAME
6 =head1 SYNOPSIS
18 =head1 DESCRIPTION
24 =head1 HOWTO
34 =head1 METHODS
44 =head1 The future
51 =head1 The past
58 =head1 Hell
63 =head1 AUTHOR
70 =head1 COPYRIGHT
[all …]
/dports/graphics/bmeps/dktools-4.31.1/man/src-libdk4maiowd/
H A Dx.3.pod.template5 =head1 NAME
7 =head1 SYNOPSIS
13 =head1 DESCRIPTION
16 =head1 OPTIONS
27 =head1 ERRORS
33 =head1 FILES
36 =head1 VERSIONS
42 =head1 NOTES
45 =head1 BUGS
48 =head1 EXAMPLES
[all …]
/dports/graphics/bmeps/dktools-4.31.1/man/src/
H A Dx.1.pod.template1 =head1 NAME
4 =head1 SYNOPSIS
7 =head1 CONFIGURATION
10 =head1 DESCRIPTION
13 =head1 OPTIONS
24 =head1 ERRORS
30 =head1 FILES
33 =head1 VERSIONS
39 =head1 NOTES
42 =head1 BUGS
[all …]
/dports/graphics/bmeps/dktools-4.31.1/man/src-libdk4base/
H A Dx.3.pod.template5 =head1 NAME
7 =head1 SYNOPSIS
13 =head1 DESCRIPTION
16 =head1 OPTIONS
27 =head1 ERRORS
33 =head1 FILES
36 =head1 VERSIONS
42 =head1 NOTES
45 =head1 BUGS
48 =head1 EXAMPLES
[all …]
/dports/graphics/bmeps/dktools-4.31.1/man/src-libdk4ma/
H A Dx.3.pod.template5 =head1 NAME
7 =head1 SYNOPSIS
13 =head1 DESCRIPTION
16 =head1 OPTIONS
27 =head1 ERRORS
33 =head1 FILES
36 =head1 VERSIONS
42 =head1 NOTES
45 =head1 BUGS
48 =head1 EXAMPLES
[all …]
/dports/graphics/bmeps/dktools-4.31.1/man/src-libdk4trace/
H A Dx.3.pod.template5 =head1 NAME
7 =head1 SYNOPSIS
13 =head1 DESCRIPTION
16 =head1 OPTIONS
27 =head1 ERRORS
33 =head1 FILES
36 =head1 VERSIONS
42 =head1 NOTES
45 =head1 BUGS
48 =head1 EXAMPLES
[all …]
/dports/x11/xtacy/Xtacy/
H A Dframe.c56 head1[winno].next->x,head1[winno].next->y); in add()
137 free(head1); in exit_frame()
266 ptr1 = mirror(winno, head1[winno].next->x, head1[winno].next->y, in draw_qix()
270 ptr3 = mirror(winno, head1[winno].prev->x, head1[winno].prev->y, in draw_qix()
296 head1[winno].next->x,head1[winno].next->y, in draw_qix4()
299 CX[winno]-head1[winno].next->x,head1[winno].next->y, in draw_qix4()
302 head1[winno].next->x,CY[winno]-head1[winno].next->y, in draw_qix4()
309 head1[winno].prev->x,head1[winno].prev->y, in draw_qix4()
312 CX[winno]-head1[winno].prev->x,head1[winno].prev->y, in draw_qix4()
315 head1[winno].prev->x,CY[winno]-head1[winno].prev->y, in draw_qix4()
[all …]
/dports/devel/concurrencykit/ck-0.6.0/include/
H A Dck_queue.h241 (head1)->stqh_last = (head2)->stqh_last; \
320 (head1)->stqh_last = (head2)->stqh_last; \
322 (head1)->stqh_last = &(head1)->stqh_first; \
332 (head1)->stqh_last = (head2)->stqh_last; \
335 if (CK_STAILQ_EMPTY(head1)) \
336 (head1)->stqh_last = &(head1)->stqh_first; \
411 if ((head1)->lh_first != NULL) \
412 (head1)->lh_first->field.le_prev = &(head1)->lh_first; \
419 struct type *swap_tmp = (head1)->lh_first; \
420 (head1)->lh_first = (head2)->lh_first; \
[all …]
/dports/benchmarks/sysbench/sysbench-1.0.20/third_party/concurrency_kit/ck/include/
H A Dck_queue.h241 (head1)->stqh_last = (head2)->stqh_last; \
320 (head1)->stqh_last = (head2)->stqh_last; \
322 (head1)->stqh_last = &(head1)->stqh_first; \
332 (head1)->stqh_last = (head2)->stqh_last; \
335 if (CK_STAILQ_EMPTY(head1)) \
336 (head1)->stqh_last = &(head1)->stqh_first; \
411 if ((head1)->lh_first != NULL) \
412 (head1)->lh_first->field.le_prev = &(head1)->lh_first; \
419 struct type *swap_tmp = (head1)->lh_first; \
420 (head1)->lh_first = (head2)->lh_first; \
[all …]
/dports/devel/git-gui/git-2.34.1/t/
H A Dt6006-rev-list-format.sh120 commit $head1
128 commit $head1
129 $head1
136 $head1
143 $head1
151 commit $head1
158 $head1
160 commit $head1
174 commit $head1
191 commit $head1
[all …]
/dports/devel/git-svn/git-2.34.1/t/
H A Dt6006-rev-list-format.sh120 commit $head1
128 commit $head1
129 $head1
136 $head1
143 $head1
151 commit $head1
158 $head1
160 commit $head1
174 commit $head1
191 commit $head1
[all …]
/dports/devel/git-p4/git-2.34.1/t/
H A Dt6006-rev-list-format.sh120 commit $head1
128 commit $head1
129 $head1
136 $head1
143 $head1
151 commit $head1
158 $head1
160 commit $head1
174 commit $head1
191 commit $head1
[all …]

12345678910>>...256