HomeSort by relevance Sort by last modified time
    Searched defs:List (Results 1 - 10 of 10) sorted by null

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/I18N/LangTags/
List.pm 3 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::name(...) is not exported
    [all...]
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
List.h 25 class List {
27 List() { }
36 List(const List<T> &); // undefined
37 void operator=(const List<T> &); // undefined
49 #include "List.cxx"
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/lib/List/
Util.pm 0 # 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
107 =item first BLOCK LIST
110 of LIST in turn. C<first> returns the first element where the result fro
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/include/
list.h 30 * This file maintains an old style of list processing that is required by
43 typedef struct list List;
45 struct listnode { /* a node on a linked list */
50 struct list { /* a linked list */ struct
60 struct listnode32 { /* a node on a linked list */
65 struct list32 { /* a linked list */
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
ParseUtils.pm 24 my $list = new Pod::List;
35 # Pod::List
37 # class to hold POD list info (=over, =item, =back)
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()
54 Create a new list object. Properties may be specified through a hash
57 my $list = Pod::List->new({ -start => $., -indent => 4 })
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/link_audit/common/
perfcnt.c 51 typedef struct list { struct
53 struct list *l_next;
54 } List;
69 static List *list_head = 0;
78 List *new_list;
79 List *cur;
80 List *prev;
82 if ((new_list = malloc(sizeof (List))) == 0) {
99 * insert at head of list
258 List *cur
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
malloc.c 47 * free elts maintained in a self-adjusting binary tree. Each list
97 static void *flist[FREESIZE]; /* list of blocks to be freed on next malloc */
118 static TREE *List[MINSIZE/WORDSIZE-1]; /* lists of small blocks */
131 /* list to use */
134 if (List[i] == NULL) {
142 if ((List[i] = _malloc_unlocked((size + WORDSIZE) * NPS)) == 0)
145 /* make them into a link list */
146 for (n = 0, np = List[i]; n < NPS; ++n) {
156 tp = List[i];
157 List[i] = AFTER(tp)
    [all...]
  /onnv/onnv-gate/usr/src/lib/watchmalloc/common/
malloc.c 45 * free elts maintained in a self-adjusting binary tree. Each list
106 static TREE *List[MINSIZE/WORDSIZE-1];
123 /* list to use */
126 if (List[i] == NULL) {
135 /* make them into a link list */
136 for (n = 0, List[i] = np; n < NPS; ++n) {
153 tp = List[i];
155 if ((List[i] = AFTER(tp)) == NULL)
506 if (List[ts] == NULL) {
507 List[ts] = tp
    [all...]
  /onnv/onnv-gate/usr/src/lib/libslp/javalib/com/sun/slp/
ServiceStoreInMemory.java 239 * The List class implements a linked list for storing records
245 private class List extends Object {
248 List next = null;
249 List prev = null;
251 // Create a new list object.
253 List(ServiceRecordInMemory record) {
261 synchronized List insertAfter(ServiceRecordInMemory record) {
262 List newRec = new List(record)
    [all...]
  /onnv/onnv-gate/usr/src/uts/intel/sys/acpi/
aclocal.h 45 * the above Copyright Notice, the above License, this list of Conditions,
150 * The acquire/release ordering protocol is implied via this list. Mutexes
295 #define ANOBJ_END_OF_PEER_LIST 0x01 /* End-of-list, Peer field points to parent */
337 ACPI_HANDLE *List;
585 ACPI_GPE_BLOCK_INFO *GpeBlockListHead; /* List of GPE blocks for this xrupt */
743 struct acpi_walk_state *WalkStateList; /* Head of list of WalkStates for this thread */
744 union acpi_operand_object *AcquiredMutexList; /* List of all currently acquired mutexes */
864 UINT8 ArgListLength; /* Number of elements in the arg list */\
    [all...]

Completed in 1839 milliseconds