Searched refs:text (Results 126 - 150 of 273) sorted by relevance

1234567891011

/osnet-11/usr/src/lib/libast/amd64/include/ast/
H A Dsig.h121 char** text; member in struct:__anon1117
/osnet-11/usr/src/lib/libast/amd64/src/lib/libast/
H A Dsig.h100 char** text; member in struct:__anon1123
/osnet-11/usr/src/lib/libast/i386/include/ast/
H A Dsig.h121 char** text; member in struct:__anon1211
/osnet-11/usr/src/lib/libast/i386/src/lib/libast/
H A Dsig.h100 char** text; member in struct:__anon1217
/osnet-11/usr/src/lib/libast/sparc/include/ast/
H A Dsig.h121 char** text; member in struct:__anon1233
/osnet-11/usr/src/lib/libast/sparc/src/lib/libast/
H A Dsig.h100 char** text; member in struct:__anon1239
/osnet-11/usr/src/lib/libast/sparcv9/include/ast/
H A Dsig.h121 char** text; member in struct:__anon1255
/osnet-11/usr/src/lib/libast/sparcv9/src/lib/libast/
H A Dsig.h100 char** text; member in struct:__anon1261
/osnet-11/usr/src/lib/libc/i386/fp/
H A D__xgetRD.s31 .text
/osnet-11/usr/src/lib/libadm/common/
H A Dckpath.c77 addhlp(char *msg, char *text) argument
81 if (text == NULL) {
88 (void) strcat(msg, text);
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-editenv.c88 help_filter (int key, const char *text, void *input __attribute__ ((unused))) argument
93 return xasprintf(text, DEFAULT_ENVBLK_PATH);
96 return (char *) text;
/osnet-11/usr/src/cmd/parted/
H A Dui.c247 /* returns matching commands for text */
249 command_generator (char* text, int state) argument
257 if (str_list_match_node (cur, text))
266 complete_function (char* text, int start, int end) argument
268 return rl_completion_matches (text,
613 StrList* text; local
619 text = str_list_create ("\n", ex->message, "\n\n", NULL);
621 text = str_list_create (
626 str_list_print_wrap (text, screen_width (), 0, 0);
627 str_list_destroy (text);
804 char* text = str_list_convert_node (walk); local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DMM_Any.pm200 my @commands = $MM->echo($text);
201 my @commands = $MM->echo($text, $file);
202 my @commands = $MM->echo($text, $file, $appending);
204 Generates a set of @commands which print the $text to a $file.
214 my($self, $text, $file, $appending) = @_;
218 split /\n/, $text;
688 my $safe_text = $MM->quote_literal($text);
690 This will quote $text so it is interpreted literally in the shell.
692 For example, on Unix this would escape any single-quotes in $text and
698 my $escaped_text = $MM->escape_newlines($text);
[all...]
/osnet-11/usr/src/lib/libast/common/features/
H A Dsignal.c40 char* text; member in struct:_m_
360 else if (map[j].text)
361 printf(" \"%s\",\n", map[j].text);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DMan.pm51 # quotes to use for C<> text, designated by @LQOUTE@ and @RQUOTE@. $PREAMBLE
66 .de Vb \" Begin verbatim text
71 .de Ve \" End verbatim text
345 # Figure out what quotes we'll be using for C<> text.
497 my ($text, $line, $paragraph) = @_;
500 $text =~ s/\n+\z//;
501 $text = " $text" if ($text =~ /^\S/);
502 warn qq($file:$line: Unknown command paragraph "=$command$text"\
[all...]
H A DParseUtils.pm221 my $link = Pod::Hyperlink->new('alternative text|page/"section in page"');
386 # empty alternative text expands to node name
403 $self->warning("alternative text '$node' contains non-escaped | or /");
435 # text can be parsed by the translators. It's their job to put
459 #' retrieve/set markuped text
464 =item $link-E<gt>text()
468 the following alternatives (the + and * denote the portions of the text
478 # The complete link's text
479 sub text { subroutine
536 As above, but the destination node text o
[all...]
H A DSelect.pm84 "section specifications" to restrict the text processed to only the
156 "range specifications" to restrict the text processed to only the
178 =cmd-expr text-expr
181 commands, and I<text-expr> is intended to match the paragraph text for
188 If no I<=cmd-expr> is given then the text-expr will be matched against
190 matched against verbatim text-blocks. If no I<text-expr> is given then
196 against the paragraph text there will be an implicit '\A' and '\Z'
197 around the given I<text
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A Data.c44 grub_uint16_t text[21]; local
47 grub_ata_strncpy (text, info + 10, 20);
48 grub_dprintf ("ata", "Serial: %s\n", (char *) text);
49 grub_ata_strncpy (text, info + 23, 8);
50 grub_dprintf ("ata", "Firmware: %s\n", (char *) text);
51 grub_ata_strncpy (text, info + 27, 40);
52 grub_dprintf ("ata", "Model: %s\n", (char *) text);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DConcise.pm416 my($hr, $text, $level) = @_;
419 $text =~ s/\(\?\(([^\#]*?)\#(\w+)([^\#]*?)\)\?\)/
422 $text =~ s/\(x\((.*?);(.*?)\)x\)/$order eq "exec" ? $1 : $2/egs;
423 $text =~ s/\(\*\(([^;]*?)\)\*\)/$1 x $level/egs;
424 $text =~ s/\(\*\((.*?);(.*?)\)\*\)/$1 x ($level - 1) . $2 x ($level>0)/egs;
425 $text =~ s/#([a-zA-Z]+)(\d+)/sprintf("%-$2s", $hr->{$1})/eg;
426 $text =~ s/#([a-zA-Z]+)/$hr->{$1}/eg;
427 $text =~ s/[ \t]*~+[ \t]*/ /g;
428 chomp $text;
429 return "$text\
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dconfigpm552 $text = 0;
559 print CONFIG_POD <<EOF if $text;
569 $text = 1;
572 elsif (!$text || !/\A\t/) {
574 ($text ? " or another paragraph of description" : () );
578 s/^(?<!\n\n)\t(.*)/$1/gm; # Not indented lines ===> text
/osnet-11/usr/src/lib/libbsm/common/
H A Dau_to.c49 token_t *au_to_arg(char n, char *text, uint32_t v);
206 au_to_arg32(char n, char *text, uint32_t v) argument
213 bytes = strlen(text) + 1;
224 adr_char(&adr, text, bytes);
235 au_to_arg64(char n, char *text, uint64_t v) argument
242 bytes = strlen(text) + 1;
253 adr_char(&adr, text, bytes);
664 * pointer to a text token.
667 au_to_text(char *text) argument
674 bytes = strlen(text)
1128 au_to_uauth(char *text) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dargp-help.c71 #define OPT_DOC_COL 29 /* column in which option text starts */
95 int opt_doc_col; /* column in which option text starts */
1514 const char *text;
1546 text =
1553 text = (const char *) trans_text;
1555 if (text)
1560 __argp_fmtstream_puts (stream, text);
1568 if (text && text != trans_text)
1569 free ((char *) text); /* Fre
1491 const char *text; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/
H A DUtil.pm255 my ($text) = @_;
257 my $ctext = pack q{C0a*}, $text;
259 return ($text ne $ctext) && ($ctext =~ m/^(
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dcharnames.t131 my $text = "\N{LATIN CAPITAL LETTER A WITH DIAERESIS}";
132 print "not " unless $text eq "\xc4" && ord($text) == 0xc4;
/osnet-11/usr/src/lib/libast/common/misc/
H A Dtranslate.c60 char text[1]; /* message text */ member in struct:__anon1172
81 { offsetof(Message_t, text), 0, 0 },
111 strcpy(mp->text, msg);
278 * msg message text to be translated
280 * the translated message text is returned on success

Completed in 69 milliseconds

1234567891011