Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 2334) sorted by relevance

12345678910>>...94

/openbsd/src/gnu/usr.bin/perl/cpan/Pod-Usage/t/pod/
Dpod2usage2.t67 my ($exit, $text) = getoutput( sub { pod2usage() } );
69 ok (compare ($text, <<'EOT'), "Output test pod2usage ()");
75 ($exit, $text) = getoutput( sub { pod2usage(
79 ok (compare ($text, <<'EOT'), "Output test pod2usage (-message => '...', -verbose => 1)") or diag("…
96 ($exit, $text) = getoutput( sub { pod2usage(
99 ok (compare ($text, <<'EOT'), "Output test pod2usage (-verbose => 2, -exit => 42)");
121 ($exit, $text) = getoutput( sub { pod2usage(0) } );
123 ok (compare ($text, <<'EOT'), "Output test pod2usage (0)");
139 ($exit, $text) = getoutput( sub { pod2usage(42) } );
141 ok (compare ($text, <<'EOT'), "Output test pod2usage (42)");
[all …]
/openbsd/src/usr.bin/tmux/
Doptions-table.c229 .text = "The key to send for backspace."
238 .text = "The maximum number of automatic buffers. "
253 .text = "Array of command aliases. "
263 .text = "Array of override widths for Unicode codepoints."
270 .text = "Shell command run when text is copied. "
278 .text = "Colour of the cursor."
286 .text = "Style of the cursor."
293 .text = "Default for the 'TERM' environment variable."
300 .text = "Editor run to edit files."
310 .text = "Time to wait before assuming a key is Escape."
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Text-Balanced/t/
D05_extmul.t22 my ($text, @index) = @_;
25 push @index, length($text);
28 push @bits, substr($text, $index[$i], $index[$i+1]-$index[$i]);
37 my $text = $stdtext1;
38 expect [ extract_multiple($text,undef,1) ],
41 expect [ pos $text], [ 4 ];
42 expect [ $text ], [ $stdtext1 ];
44 $text = $stdtext1;
45 expect [ scalar extract_multiple($text,undef,1) ],
48 expect [ pos $text], [ 0 ];
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/podlators/lib/Pod/Text/
DOverstrike.pm38 my ($self, $attrs, $text) = @_;
39 $text =~ s/\s+$//;
40 $text = $self->strip_format ($text);
41 $text =~ s/(.)/$1\b$1/g;
42 return $self->SUPER::cmd_head1 ($attrs, $text);
47 my ($self, $attrs, $text) = @_;
48 $text =~ s/\s+$//;
49 $text = $self->strip_format ($text);
50 $text =~ s/(.)/$1\b$1/g;
51 return $self->SUPER::cmd_head2 ($attrs, $text);
[all …]
/openbsd/src/regress/usr.bin/mandoc/char/space/
Dtab.out_lint1 mandoc: tab.in:11:2: WARNING: tab in filled text
2 mandoc: tab.in:13:3: WARNING: tab in filled text
3 mandoc: tab.in:15:4: WARNING: tab in filled text
4 mandoc: tab.in:17:5: WARNING: tab in filled text
5 mandoc: tab.in:19:6: WARNING: tab in filled text
6 mandoc: tab.in:21:7: WARNING: tab in filled text
7 mandoc: tab.in:23:8: WARNING: tab in filled text
8 mandoc: tab.in:25:9: WARNING: tab in filled text
9 mandoc: tab.in:27:10: WARNING: tab in filled text
10 mandoc: tab.in:29:11: WARNING: tab in filled text
[all …]
Dtab-man.out_lint1 mandoc: tab-man.in:8:2: WARNING: tab in filled text
2 mandoc: tab-man.in:10:3: WARNING: tab in filled text
3 mandoc: tab-man.in:12:4: WARNING: tab in filled text
4 mandoc: tab-man.in:14:5: WARNING: tab in filled text
5 mandoc: tab-man.in:16:6: WARNING: tab in filled text
6 mandoc: tab-man.in:18:7: WARNING: tab in filled text
7 mandoc: tab-man.in:20:8: WARNING: tab in filled text
8 mandoc: tab-man.in:22:9: WARNING: tab in filled text
9 mandoc: tab-man.in:24:10: WARNING: tab in filled text
10 mandoc: tab-man.in:26:11: WARNING: tab in filled text
[all …]
/openbsd/src/lib/libexpat/tests/
Dalloc_tests.c77 const char *text = "<?xml version='1.0' encoding='utf-8'?>\n" in START_TEST() local
85 if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE) in START_TEST()
107 const char *text in START_TEST() local
135 if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE) in START_TEST()
151 const char *text = "<?xml version='1.0' encoding='utf-8'?>\n" in START_TEST() local
162 if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE) in START_TEST()
177 const char *text = "<?xml version='1.0' encoding='utf-8'?>\n" in START_TEST() local
188 if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE) in START_TEST()
203 const char *text in START_TEST() local
229 if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE) in START_TEST()
[all …]
Dns_tests.c69 const char *text = "<foo:e xmlns:foo='http://example.org/' bar:a='12'\n" in START_TEST() local
82 if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_FALSE) in START_TEST()
122 run_ns_tagname_overwrite_test(const char *text, const XML_Char *result) { in run_ns_tagname_overwrite_test() argument
128 if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE) in run_ns_tagname_overwrite_test()
136 const char *text = "<n:e xmlns:n='http://example.org/'>\n" in START_TEST() local
148 run_ns_tagname_overwrite_test(text, result); in START_TEST()
154 const char *text = "<n:e xmlns:n='http://example.org/'>\n" in START_TEST() local
167 run_ns_tagname_overwrite_test(text, result); in START_TEST()
177 const char *text = "<e xmlns='http://example.org/'></e>"; in START_TEST() local
183 if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE) in START_TEST()
[all …]
Dbasic_tests.c82 char text[] = "<doc>\0</doc>"; in START_TEST() local
85 if (_XML_Parse_SINGLE_BYTES(g_parser, text, sizeof(text) - 1, XML_TRUE) in START_TEST()
137 const char *text = "\357\273\277<e/>"; in START_TEST() local
139 if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE) in START_TEST()
146 char text[] = "\376\377\0<\0e\0/\0>"; in START_TEST() local
148 if (_XML_Parse_SINGLE_BYTES(g_parser, text, sizeof(text) - 1, XML_TRUE) in START_TEST()
155 char text[] = "\377\376<\0e\0/\0>\0"; in START_TEST() local
157 if (_XML_Parse_SINGLE_BYTES(g_parser, text, sizeof(text) - 1, XML_TRUE) in START_TEST()
164 char text[] = " \0<\0e\0/\0>\0"; in START_TEST() local
172 if (_XML_Parse_SINGLE_BYTES(g_parser, text, sizeof(text) - 1, XML_TRUE) in START_TEST()
[all …]
Dnsalloc_tests.c79 const char *text = "<doc xmlns='http://example.org/'>\n" in START_TEST() local
89 if (_XML_Parse_SINGLE_BYTES(g_parser, text, (int)strlen(text), XML_TRUE) in START_TEST()
109 const char *text = "<doc>Hello</doc>"; in START_TEST() local
143 buffer = XML_GetBuffer(g_parser, (int)strlen(text)); in START_TEST()
147 memcpy(buffer, text, strlen(text)); in START_TEST()
148 if (XML_ParseBuffer(g_parser, (int)strlen(text), XML_TRUE) in START_TEST()
153 if (XML_ParseBuffer(g_parser, (int)strlen(text), XML_TRUE) in START_TEST()
158 if (XML_GetBuffer(g_parser, (int)strlen(text)) != NULL) in START_TEST()
165 if (XML_ParseBuffer(g_parser, (int)strlen(text), XML_TRUE) in START_TEST()
170 if (XML_GetBuffer(g_parser, (int)strlen(text)) != NULL) in START_TEST()
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/podlators/lib/Pod/
DText.pm184 my ($self, $text) = @_;
186 $$tag[1] .= $text;
228 my $text = $self->$method (@$tag);
229 if (defined $text) {
231 $$self{PENDING}[-1][1] .= $text;
233 $self->output ($text);
292 my ($self, @text) = @_;
293 my $text = join ('', @text);
295 $text =~ s/$NBSP/ /g;
298 $text =~ s/$SHY//g;
[all …]
DMan.pm396 my ($self, $text) = @_;
398 $$tag[2] .= $self->format_text ($$tag[1], $text);
449 my $text = $self->$cmd_method ($$tag[0], $$tag[2]);
450 if (defined $text) {
452 $$self{PENDING}[-1][2] .= $text;
454 $self->output ($text);
470 my ($self, $options, $text) = @_;
481 $text =~ s/\\/\\e/g;
482 $text =~ s/-/\\-/g;
483 $text =~ s/_(?=_)/_\\|/g;
[all …]
/openbsd/src/regress/usr.bin/mandoc/mdoc/Bl/
DbreakingIt.out_markdown11 Stray text.
12 &lt;More stray text&gt;
16 > Tagged text.
18 Stray text.
19 &lt;More stray text&gt;
25 > Tagged text.
26 > &lt;More tagged text&gt;
30 > Yet more tagged text.
32 * Item text.
33 &lt;More item text&gt;
[all …]
DbreakingIt.out_ascii8 Stray text. <More stray text>
10 tag Tagged text.
11 Stray text. <More stray text>
15 tag Tagged text. <More tagged text>
17 tag2 Yet more tagged text.
19 ++oo Item text. <More item text>
24 Stray text.
26 More stray text.
28 tag Tagged text.
29 Stray text.
[all …]
/openbsd/src/usr.bin/file/magdir/
Dtex10 # Although we may know the offset of certain text fields in TeX DVI
20 0 search/1 This\ is\ TeX, TeX transcript text
21 0 search/1 This\ is\ METAFONT, METAFONT transcript text
34 0 search/1 \\input\ texinfo Texinfo source text
35 !:mime text/x-texinfo
36 0 search/1 This\ is\ Info\ file GNU Info text
37 !:mime text/x-info
40 0 search/400 \\input TeX document text
41 !:mime text/x-tex
42 0 search/400 \\section LaTeX document text
[all …]
/openbsd/src/regress/usr.bin/mandoc/man/IP/
Dwidth.out_ascii11 text
15 text
19 text
23 text
27 text
31 text
34 text
37 text
40 text
43text
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/f/
Dg77spec.c119 lookup_option (xopt, xskip, xarg, text) in lookup_option() argument
123 const char *text;
129 if ((skip = SWITCH_TAKES_ARG (text[1])))
130 skip -= (text[2] != '\0'); /* See gcc.c. */
132 if (text[1] == 'B')
133 opt = OPTION_B, skip = (text[2] == '\0'), arg = text + 2;
134 else if (text[1] == 'b')
135 opt = OPTION_b, skip = (text[2] == '\0'), arg = text + 2;
136 else if ((text[1] == 'c') && (text[2] == '\0'))
138 else if ((text[1] == 'E') && (text[2] == '\0'))
[all …]
/openbsd/src/regress/usr.bin/mandoc/man/TP/
Dwidth.out_ascii11 text
15 text
19 text
23 text
27 text
31 text
34 text
37 text
40text
46 text
[all …]
Ddouble.out_ascii7 leading text: This is a rather long text because we want to test the text
8 width; at which point will this text wrap to the next line?
10 first TP This is a rather long text because we want to test the
11 text width; at which point will this text wrap to the
14 second TP This is a rather long text because we want to test the
15 text width; at which point will this text wrap to the
18 normal paragraph: This is a rather long text because we want to test the
19 text width; at which point will this text wrap to the next line?
21 double TP This is a rather long text because we want to test the
22 text width; at which point will this text wrap to the
[all …]
/openbsd/src/regress/usr.bin/mandoc/man/RS/
Dnested.out_ascii7 regular text
8 outer text (default indent)
9 inner text (default indent)
10 outer text
11 regular text
13 tag tagged text (6n)
14 outer text (saved 6n)
15 inner text (default indent)
16 outer text
17 regular text
[all …]
/openbsd/src/gnu/usr.bin/cvs/contrib/
Dlog_accum.in113 local(@text, @files, $lastdir);
118 @text = ();
126 push(@text, &format_names($lastdir, @files));
133 push(@text, &format_names($lastdir, @files));
135 @text;
161 local(@text);
167 push(@text, $leader.$_);
170 @text;
186 local(@text) = @_;
234 print MAIL join("\n", @text), "\n";
[all …]
/openbsd/src/gnu/usr.bin/binutils/gdb/
Dcompleter.c45 char *line_completion_function (const char *text, int matches, char *line_buffer,
101 readline_line_completion_function (const char *text, int matches) in readline_line_completion_function() argument
103 return line_completion_function (text, matches, rl_line_buffer, rl_point); in readline_line_completion_function()
109 noop_completer (char *text, char *prefix) in noop_completer() argument
116 filename_completer (char *text, char *word) in filename_completer() argument
132 p = rl_filename_completion_function (text, subsequent_name); in filename_completer()
157 if (word == text) in filename_completer()
160 else if (word > text) in filename_completer()
164 strcpy (q, p + (word - text)); in filename_completer()
171 q = xmalloc (strlen (p) + (text - word) + 5); in filename_completer()
[all …]
/openbsd/src/regress/usr.bin/mandoc/mdoc/Bd/
Dnested.out_markdown12 text
14 > outer text
17 > > inner text
21 > text
24 text
26 > outer text (4n)
28 > > inner text (2n)
30 > outer text
34 > > text
36 > outer text
[all …]
/openbsd/src/usr.bin/fgen/
Dfgen.l133 0 { ltoken.type = TOK_OTHER; ltoken.text = yytext; return &ltoken; }
135 1 { ltoken.type = TOK_OTHER; ltoken.text = yytext; return &ltoken; }
137 2 { ltoken.type = TOK_OTHER; ltoken.text = yytext; return &ltoken; }
139 3 { ltoken.type = TOK_OTHER; ltoken.text = yytext; return &ltoken; }
141 -1 { ltoken.type = TOK_OTHER; ltoken.text = yytext; return &ltoken; }
143 \. { ltoken.type = TOK_OTHER; ltoken.text = yytext; return &ltoken; }
149 -?{hex}{hexdot}* { ltoken.type = TOK_NUMBER; ltoken.text = yytext;
152 \'.\' { ltoken.type = TOK_C_LIT; ltoken.text = yytext; return &ltoken; }
157 \.\({white}*(\\\"|[^)])*\) { ltoken.type = TOK_PSTRING; ltoken.text = yytext;
164 ltoken.text = yytext; return &ltoken; }
[all …]
/openbsd/src/gnu/usr.bin/perl/ext/Pod-Html/t/
Dhtmllink.pod43 L<text|/"section1">
45 L<text|/"section 2">
47 L<text|/"section three">
49 L<text|/"item1">
51 L<text|/"item 2">
53 L<text|/"item three">
55 L<text|/section1>
57 L<text|/section 2>
59 L<text|/section three>
61 L<text|/item1>
[all …]

12345678910>>...94