Searched defs:List (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/I18N/LangTags/
H A DList.pm3 package I18N::LangTags::List;
17 while(<I18N::LangTags::List::DATA>) {
121 I18N::LangTags::List -- tags and names for human languages
125 use I18N::LangTags::List;
127 I18N::LangTags::List::name('elx') || 'unknown_language',
128 I18N::LangTags::List::name('ar-Kw') || 'unknown_language',
129 I18N::LangTags::List::name('en') || 'unknown_language',
130 I18N::LangTags::List::name('en-CA') || 'unknown_language',
140 C<I18N::LangTags::List::name( I<langtag> ) > that takes
145 The function I18N::LangTags::List
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/lib/List/
H A DUtil.pm0 # List::Util.pm
7 package List::Util;
23 bootstrap List::Util $XS_VERSION;
89 List::Util - A selection of general-utility list subroutines
93 use List::Util qw(first max maxstr min minstr reduce shuffle sum);
97 C<List::Util> contains a selection of subroutines that people have
102 By default C<List::Util> does not export any subroutines. The
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DParseUtils.pm24 my $list = new Pod::List;
35 # Pod::List
40 package Pod::List;
44 =head2 Pod::List
46 B<Pod::List> can be used to hold information about POD lists
52 =item Pod::List-E<gt>new()
57 my $list = Pod::List->new({ -start => $., -indent => 4 });
/osnet-11/usr/src/lib/libc/port/gen/
H A Dmalloc.c116 static TREE *List[MINSIZE/WORDSIZE-1]; /* lists of small blocks */ variable
132 if (List[i] == NULL) {
140 if ((List[i] = _malloc_unlocked((size + WORDSIZE) * NPS)) == 0)
144 for (n = 0, np = List[i]; n < NPS; ++n) {
154 tp = List[i];
155 List[i] = AFTER(tp);
508 AFTER(tp) = List[ts];
509 List[ts] = tp;
/osnet-11/usr/src/lib/watchmalloc/common/
H A Dmalloc.c103 static TREE *List[MINSIZE/WORDSIZE-1]; variable
123 if (List[i] == NULL) {
133 for (n = 0, List[i] = np; n < NPS; ++n) {
150 tp = List[i];
152 if ((List[i] = AFTER(tp)) == NULL)
507 if (List[ts] == NULL) {
508 List[ts] = tp;
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceStoreInMemory.java239 * The List class implements a linked list for storing records
245 private class List extends Object { class in class:ServiceStoreInMemory
248 List next = null;
249 List prev = null;
253 List(ServiceRecordInMemory record) { method in class:ServiceStoreInMemory.List
261 synchronized List insertAfter(ServiceRecordInMemory record) {
262 List newRec = new List(record);
306 List head = new List(nul
[all...]

Completed in 286 milliseconds