| /mirbsd/src/gnu/usr.bin/perl/pod/ |
| D | perltoc.pod | 22 =item SYNOPSIS 26 =item Overview 28 =item Tutorials 30 =item Reference Manual 32 =item Internals and C Language Interface 34 =item Miscellaneous 36 =item Language-Specific 38 =item Platform-Specific 42 =item DESCRIPTION 44 =item AVAILABILITY [all …]
|
| D | perlfaq.pod | 82 =item perlfaq - this document 84 =item perlfaq1 - General Questions About Perl 86 =item perlfaq2 - Obtaining and Learning about Perl 88 =item perlfaq3 - Programming Tools 90 =item perlfaq4 - Data Manipulation 92 =item perlfaq5 - Files and Formats 94 =item perlfaq6 - Regular Expressions 96 =item perlfaq7 - General Perl Language Issues 98 =item perlfaq8 - System Interaction 100 =item perlfaq9 - Networking [all …]
|
| D | perl588delta.pod | 19 =item * 31 =item * 37 =item * 43 =item * 49 =item * 55 =item * 61 =item * 67 =item * 73 =item * 80 =item * [all …]
|
| D | perlmodlib.pod | 50 =item attributes 54 =item attrs 58 =item autouse 62 =item base 66 =item bigint 70 =item bignum 74 =item bigrat 78 =item blib 82 =item bytes 86 =item charnames [all …]
|
| D | perl573delta.pod | 28 =item 11362 32 =item 11371 36 =item 11375 40 =item 11405 44 =item 11410 48 =item 11423 52 =item 11459 57 =item 11475 61 =item 11485 65 =item 11490 [all …]
|
| D | perl570delta.pod | 40 =item * 46 =item * 51 =item * 57 =item * 64 =item * 69 =item * 76 =item * 82 =item * 87 =item * 92 =item * [all …]
|
| D | perl587delta.pod | 49 =item * 53 =item * 57 =item * 61 =item * 65 =item * 69 =item * 73 =item * 77 =item * 81 =item * 85 =item * [all …]
|
| /mirbsd/src/lib/libssl/src/doc/ssl/ |
| D | ssl.pod | 45 =item B<SSL_METHOD> (SSL Method) 51 =item B<SSL_CIPHER> (SSL Cipher) 58 =item B<SSL_CTX> (SSL Context) 64 =item B<SSL_SESSION> (SSL Session) 69 =item B<SSL> (SSL Connection) 86 =item B<ssl.h> 94 =item B<ssl2.h> 100 =item B<ssl3.h> 106 =item B<ssl23.h> 113 =item B<tls1.h> [all …]
|
| /mirbsd/src/usr.bin/grep/ |
| D | queue.c | 58 free_item(queue_t *item) in free_item() argument 60 free(item); in free_item() 66 queue_t *item; in enqueue() local 68 item = grep_malloc(sizeof *item + x->len); in enqueue() 69 item->data.len = x->len; in enqueue() 70 item->data.line_no = x->line_no; in enqueue() 71 item->data.off = x->off; in enqueue() 72 item->data.dat = (char *)item + sizeof *item; in enqueue() 73 memcpy(item->data.dat, x->dat, x->len); in enqueue() 74 item->data.file = x->file; in enqueue() [all …]
|
| /mirbsd/src/lib/libncurses/src/menu/ |
| D | m_driver.c | 119 (MENU * menu, int ch, ITEM ** item) in _nc_Match_Next_Character_In_Item_Name() argument 124 T((T_CALLED("_nc_Match_Next_Character(%p,%d,%p)"), menu, ch, item)); in _nc_Match_Next_Character_In_Item_Name() 126 assert(menu && item && *item); in _nc_Match_Next_Character_In_Item_Name() 127 idx = (*item)->index; in _nc_Match_Next_Character_In_Item_Name() 172 if (!((idx == (*item)->index) && passed)) in _nc_Match_Next_Character_In_Item_Name() 174 *item = menu->items[idx]; in _nc_Match_Next_Character_In_Item_Name() 214 if (!item->dir)\ in menu_driver() 217 item = item->dir in menu_driver() 220 ITEM *item; in menu_driver() local 233 item = menu->curitem; in menu_driver() [all …]
|
| D | m_item_opt.c | 54 set_item_opts(ITEM * item, Item_Options opts) in NCURSES_EXPORT() 56 T((T_CALLED("set_menu_opts(%p,%d)"), item, opts)); in NCURSES_EXPORT() 63 if (item) in NCURSES_EXPORT() 65 if (item->opt != opts) in NCURSES_EXPORT() 67 MENU *menu = item->imenu; in NCURSES_EXPORT() 69 item->opt = opts; in NCURSES_EXPORT() 71 if ((!(opts & O_SELECTABLE)) && item->value) in NCURSES_EXPORT() 72 item->value = FALSE; in NCURSES_EXPORT() 76 Move_And_Post_Item(menu, item); in NCURSES_EXPORT() 97 item_opts_off(ITEM * item, Item_Options opts) in item_opts_off() argument [all …]
|
| D | m_global.c | 143 ITEM **item; in ResetConnectionInfo() local 146 for (item = items; *item; item++) in ResetConnectionInfo() 148 (*item)->index = 0; in ResetConnectionInfo() 149 (*item)->imenu = (MENU *) 0; in ResetConnectionInfo() 173 ITEM **item; in _nc_Connect_Items() local 178 for (item = items; *item; item++) in _nc_Connect_Items() 180 if ((*item)->imenu) in _nc_Connect_Items() 186 if (!(*item)) in _nc_Connect_Items() 189 for (item = items; *item; item++) in _nc_Connect_Items() 193 (*item)->value = FALSE; in _nc_Connect_Items() [all …]
|
| D | menu.priv.h | 55 #define Normalize_Item( item ) ((item)=(item)?(item):&_nc_Default_Item) argument 82 #define Move_And_Post_Item(menu,item) \ argument 83 {wmove((menu)->win,(menu)->spc_rows*(item)->y,((menu)->itemlen+(menu)->spc_cols)*(item)->x);\ 84 _nc_Post_Item((menu),(item));} 86 #define Move_To_Current_Item(menu,item) \ argument 87 if ( (item) != (menu)->curitem)\ 89 Move_And_Post_Item(menu,item);\ 97 #define Adjust_Current_Item(menu,row,item) \ argument 98 { if ((item)->y < row) \ 99 row = (item)->y;\ [all …]
|
| D | m_item_new.c | 110 ITEM *item; in new_item() local 118 item = (ITEM *) 0; in new_item() 123 item = (ITEM *) calloc(1, sizeof(ITEM)); in new_item() 124 if (item) in new_item() 126 *item = _nc_Default_Item; /* hope we have struct assignment */ in new_item() 128 item->name.length = strlen(name); in new_item() 129 item->name.str = name; in new_item() 134 item->description.length = strlen(description); in new_item() 135 item->description.str = description; in new_item() 139 item->description.length = 0; in new_item() [all …]
|
| D | m_item_val.c | 56 set_item_value(ITEM * item, bool value) in NCURSES_EXPORT() 60 T((T_CALLED("set_item_value(%p,%d)"), item, value)); in NCURSES_EXPORT() 61 if (item) in NCURSES_EXPORT() 63 menu = item->imenu; in NCURSES_EXPORT() 65 if ((!(item->opt & O_SELECTABLE)) || in NCURSES_EXPORT() 69 if (item->value ^ value) in NCURSES_EXPORT() 71 item->value = value ? TRUE : FALSE; in NCURSES_EXPORT() 76 Move_And_Post_Item(menu, item); in NCURSES_EXPORT() 98 item_value(const ITEM * item) in item_value() argument 100 T((T_CALLED("item_value(%p)"), item)); in item_value() [all …]
|
| D | m_item_cur.c | 51 set_current_item(MENU * menu, ITEM * item) in NCURSES_EXPORT() 53 T((T_CALLED("set_current_item(%p,%p)"), menu, item)); in NCURSES_EXPORT() 55 if (menu && item && (item->imenu == menu)) in NCURSES_EXPORT() 61 if (item != menu->curitem) in NCURSES_EXPORT() 74 Adjust_Current_Item(menu, menu->toprow, item); in NCURSES_EXPORT() 107 item_index(const ITEM * item) in item_index() argument 109 T((T_CALLED("item_index(%p)"), item)); in item_index() 110 returnCode((item && item->imenu) ? item->index : ERR); in item_index()
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Pod/t/ |
| D | htmllink.pod | 15 L</"item 2"> 17 L</"item three"> 27 L</item 2> 29 L</item three> 39 L<"item 2"> 41 L<"item three"> 51 L<text|/"item 2"> 53 L<text|/"item three"> 63 L<text|/item 2> 65 L<text|/item three> [all …]
|
| D | htmlview.pod | 37 =item foo 39 The foo item. 41 =item bar 43 The bar item. 49 =item * 51 The wiz item. 53 =item * 55 The waz item. 59 =item baz 61 The baz item. [all …]
|
| /mirbsd/src/usr.bin/usbhidctl/ |
| D | usbhid.c | 90 int (*opfunc)(struct hid_item *item, struct Susbvar *var, 289 hidmatch(u_int32_t const *collist, size_t collen, struct hid_item *item, in hidmatch() argument 302 iscollection = item->kind == hid_collection || in hidmatch() 303 item->kind == hid_endcollection; in hidmatch() 317 (item->flags & HIO_CONST)) { in hidmatch() 325 ((item->kind != hid_output && in hidmatch() 326 item->kind != hid_feature) || in hidmatch() 327 (item->flags & HIO_CONST))) { in hidmatch() 352 cache.usage_id = item->usage; in hidmatch() 458 varop_value(struct hid_item *item, struct Susbvar *var, in varop_value() argument [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/t/pod/ |
| D | nested_items.t | 17 =head1 Test nested item lists 19 This is a test to ensure the nested =item paragraphs 24 =item 1 30 =item a 32 this is item a 34 =item b 36 this is item b 40 =item 2 46 =item a 48 this is item a [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/gas/doc/ |
| D | c-ppc.texi | 37 @item -mpwrx | -mpwr2 40 @item -mpwr 43 @item -m601 46 @item -mppc, -mppc32, -m603, -m604 49 @item -m403, -m405 52 @item -m440 55 @item -m7400, -m7410, -m7450, -m7455 58 @item -mppc64, -m620 61 @item -mppc64bridge 64 @item -mbooke64 [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/ext/POSIX/ |
| D | POSIX.pod | 70 =item _exit 81 =item abort 87 =item abs 92 =item access 105 =item acos 110 =item alarm 115 =item asctime 131 =item asin 136 =item assert 141 =item atan [all …]
|
| /mirbsd/src/lib/libssl/src/doc/apps/ |
| D | openssl.pod | 62 =item L<B<asn1octetstream>|asn1octetstream(1)> 66 =item L<B<asn1parse>|asn1parse(1)> 70 =item L<B<ca>|ca(1)> 74 =item L<B<ciphers>|ciphers(1)> 78 =item L<B<crl>|crl(1)> 82 =item L<B<crl2pkcs7>|crl2pkcs7(1)> 86 =item L<B<dgst>|dgst(1)> 90 =item B<dh> 95 =item L<B<dsa>|dsa(1)> 99 =item L<B<dsaparam>|dsaparam(1)> [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/lib/ExtUtils/Constant/ |
| D | Base.pm | 258 foreach my $item (sort {$a->{name} cmp $b->{name}} @complex) { 259 my $name = perl_stringify $item->{name}; 261 $line .= ", type=>\"$item->{type}\"" if defined $item->{type}; 263 my $value = $item->{$thing}; 301 my ($indent, $type, $pre, $post, $item) 320 $self->assignment_clause_for_type({type=>$type,item=>$item}, @_); 349 my ($self, $args, $item) = @_; 353 = @$item{qw (name value macro default pre post def_pre def_post type)}; 355 $macro = $self->macro_from_name($item) unless defined $macro; 377 item=>$item}, ref $value ? @$value : $value); [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/ |
| D | README.ko | 8 ������ ǥ���ϱ� ���� ���� =head, =item, 'L' ���� �����Ͻʽÿ�. 49 =item euc-kr 54 =item cp949 61 =item johab 67 =item iso-2022-kr 73 =item ksc5601-raw 132 =item L<http://www.perl.com/> 136 =item L<http://www.cpan.org/> 140 =item L<http://lists.perl.org/> 151 =item L<http://www.perl.or.kr/> [all …]
|