Searched refs:words (Results 1 - 25 of 89) sorted by relevance

1234

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dshellwords.pl5 ;# @words = &shellwords($line);
7 ;# @words = &shellwords(@lines);
9 ;# @words = &shellwords; # defaults to $_ (and clobbers it)
14 local(@words,$snippet,$field);
45 push(@words, $field);
47 @words;
H A Dsyslog.pl72 local(@words, $num, $numpri, $numfac, $sum);
77 @words = split(/\W+/, $priority, 2);# Allow "level" or "level|facility".
80 foreach (@words) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Text/
H A DParseWords.t13 @words = shellwords(qq(foo "bar quiz" zoo));
14 print "not " if $words[0] ne 'foo';
16 print "not " if $words[1] ne 'bar quiz';
18 print "not " if $words[2] ne 'zoo';
26 @words = quotewords(':+', 1, 'foo:::"bar:foo":zoo zoo:');
27 print "not " unless join(";", @words) eq qq(foo;"bar:foo";zoo zoo;);
32 @words = quotewords('\s+', 'delimiters', '4 3 2 1 0');
33 print "not " unless join(";", @words) eq qq(4; ;3; ;2; ;1; ;0);
63 @words = shellwords($string);
64 print "not " if (@words);
[all...]
H A DParseWords.pm24 my($line, @words, @allwords);
28 @words = parse_line($delim, $keep, $line);
29 return() unless (@words || !length($line));
30 push(@allwords, @words);
105 # @words = old_shellwords($line);
107 # @words = old_shellwords(@lines);
110 my(@words,$snippet,$field);
140 push(@words, $field);
142 @words;
157 @words
[all...]
H A DWrap.pm171 It is possible to control which characters terminate words by
175 default is simply C<'\s'>; that is, words are terminated by spaces.
193 When words that are longer than C<$columns> are encountered, they
196 'die' or to 'overflow'. When set to 'die', large words will cause
197 C<die()> to be called. When set to 'overflow', large words will be
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/examples/
H A Dfile_upload.cgi19 will count the number of lines, words, and characters in
22 my @types = ('count lines','count words','count characters');
44 my($lines,$words,$characters,@words) = (0,0,0,0);
47 $words += @words=split(/\s+/);
54 print strong("Words: "),$words,br if $stats{'count words'};
H A Dpopup.cgi14 $query->checkbox_group(-name=>'words',
28 print "<P>The keywords are: <EM>",join(", ",$query->param(words)),"</EM>\n";
H A Dframeset.cgi60 $query->checkbox_group(-name=>'words',
78 print "<P>The keywords are: <EM>",join(", ",$query->param(words)),"</EM>\n";
H A Dmultiple_forms.cgi16 $query->checkbox_group('words',['eenie','meenie','minie','moe']);
38 print "<P>The combination is: <EM>{",join(",",@Q::words),"}</EM>\n";
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Term/
H A DComplete.t31 my @words = ( 'frobnitz', 'frobozz', 'frostychocolatemilkshakes' );
33 Complete('', \@words);
34 my $data = get_expected('fro', @words);
42 # 'fro' should match all three words
43 like( $$out, qr/$data/, 'all three words possible' );
48 Complete('', @words);
55 Complete('', @words);
63 Complete('prompt:', @words);
/osnet-11/usr/src/lib/pam_modules/authtok_check/
H A Dpacker.c37 * - each single source dictionary can only hold up to 4GB words
105 /* write words to file */
156 * words in "buf" and insert each of them into the offsets-array.
179 * make sure we only insert words consisting of
197 * helper-routine used for quicksort. we compate two words in the
285 * and insert the thus sorted words into the cracklib database
293 char *words[MAXTMP]; local
300 if ((words[ti] = malloc(MAXWORDLEN)) == NULL) {
302 free(words[ti]);
307 * we read the first word of each of the temp-files into words[]
[all...]
/osnet-11/usr/src/lib/libresolv2/common/inet/
H A Dinet_net_ntop.c179 int words; local
206 /* how many words need to be displayed in output */
207 words = (bits + 15) / 16;
208 if (words == 1)
209 words = 2;
213 for (i = 0; i < (words * 2); i += 2) {
232 if (zero_l != words && zero_s == 0 && ((zero_l == 6) ||
237 /* Format whole words. */
238 for (p = 0; p < words; p++) {
243 if (p == words
[all...]
H A Dinet_cidr_ntop.c164 u_int words[NS_IN6ADDRSZ / NS_INT16SZ]; local
177 memset(words, '\0', sizeof words);
179 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
185 if (words[i] == 0) {
222 (best.len == 7 && words[7] != 0x0001) ||
223 (best.len == 5 && words[5] == 0xffff))) {
240 tp += SPRINTF((tp, "%x", words[i]));
H A Dinet_net_pton.c273 int words; local
340 words = (bits + 15) / 16;
341 if (words < 2)
342 words = 2;
344 words = 8;
345 endp = tmp + 2 * words;
/osnet-11/usr/src/lib/libcmd/common/
H A Dwc.h45 Sfoff_t words; member in struct:__anon1500
H A Dwc.c26 * count the number of bytes, words, and lines in a file
32 "[+NAME?wc - print the number of bytes, words, and lines in files]"
49 "[w:words?List the word counts.]"
79 sfprintf(sfstdout," %7I*d",sizeof(wp->words),wp->words);
176 twords += wp->words;
184 wp->words = twords;
/osnet-11/usr/src/lib/libnsl/nss/
H A Dinet_ntop.c114 uint_t words[IN6ADDRSZ / INT16SZ]; local
122 (void) memset(words, '\0', sizeof (words));
124 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
128 if (words[i] == 0) {
165 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
171 tp += SPRINTF((tp, "%x", words[i]));
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Bin/
H A Dwpm.d3 * wpm.d - Measure words per minute of typing.
60 words = 0;
118 words++;
133 printf("Words per minute : %d\n\n", words);
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Misc/
H A Dwpm.d3 * wpm.d - Measure words per minute of typing.
60 words = 0;
118 words++;
133 printf("Words per minute : %d\n\n", words);
/osnet-11/usr/src/lib/libldap4/common/
H A Dgetfilter.c374 if ( i > wordnum ) { /* add blank btw words */
424 char *word, **words; local
427 if (( words = (char **)calloc( (size_t) 1, sizeof( char * ))) == NULL ) {
431 words[ count ] = NULL;
435 if (( words = (char **)realloc( words,
440 words[ count ] = word;
441 words[ ++count ] = NULL;
445 *wordsp = words;
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dgetfilter.c456 if ( i > wordnum ) { /* add blank btw words */
517 char *word, **words; local
521 if (( words = (char **)NSLDAPI_CALLOC( 1, sizeof( char * ))) == NULL ) {
525 words[ count ] = NULL;
529 if (( words = (char **)NSLDAPI_REALLOC( words,
534 words[ count ] = word;
535 words[ ++count ] = NULL;
539 *wordsp = words;
/osnet-11/usr/src/lib/libc/i386/gen/
H A Dmemset.s44 shrl $2,%ecx / %ecx = number of words to set
/osnet-11/usr/src/lib/libc/sparc/gen/
H A Dsetjmp.s41 JB_SP = (1*4) ! words 5 through 11 are unused!
/osnet-11/usr/src/lib/libc/sparcv9/gen/
H A Dsetjmp.s41 JB_SP = (1*8) ! words 5 through 11 are unused!
/osnet-11/usr/src/grub/grub2/grub-core/script/
H A Dscript.c243 struct grub_script_arglist *words,
257 cmd->words = words;
240 grub_script_create_cmdfor(struct grub_parser_param *state, struct grub_script_arg *name, struct grub_script_arglist *words, struct grub_script_cmd *list) argument

Completed in 26 milliseconds

1234