HomeSort by relevance Sort by last modified time
    Searched refs:list (Results 1 - 25 of 8464) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sfw/usr/src/cmd/cmake/cmake-2.6.2/Modules/
TestForSTDNamespace.cxx 1 #include <list>
4 std::list<int>();
  /sfw/usr/src/lib/stdcxx4/stdcxx-4.2.1/include/
list.c 3 * list.c
5 * $Id: list.c 580483 2007-09-28 20:55:52Z sebor $
29 #include <list.cc>
  /sfw/usr/src/cmd/gcc/gcc-3.4.3/gcc/testsuite/g++.old-deja/g++.brendan/
template1.C 6 template <class T> struct list { }; struct
10 list<int> L;
12 list<int> get_list();
17 list<int> A::get_list() { return L; }
  /sfw/usr/src/cmd/gcc/gcc-3.4.3/libobjc/objc/
objc-list.h 1 /* Generic single linked list to keep various information
49 /* Return the length of a list, list_length(NULL) returns zero */
52 list_length(struct objc_list* list)
55 while(list)
58 list = list->tail;
63 /* Return the Nth element of LIST, where N count from zero. If N
64 larger than the list length, NULL is returned */
67 list_nth(int indx, struct objc_list* list)
71 if(list->tail
    [all...]
  /sfw/usr/src/cmd/gcc/gcc-3.4.3/gcc/testsuite/gcc.c-torture/compile/
20000412-2.c 1 char list[250][64]; variable
3 int f(int idx) { return (strlen(list[idx])); }
  /sfw/usr/src/cmd/gcc/gcc-3.4.3/libstdc++-v3/include/backward/
list.h 62 #include <list>
64 using std::list;
  /sfw/usr/src/cmd/mysql-5-1/mysql-5.1.30-dtrace/storage/innobase/include/
ut0list.ic 2 Get the first node in the list. */
8 ib_list_t* list) /* in: list */
10 return(list->first);
14 Get the last node in the list. */
20 ib_list_t* list) /* in: list */
22 return(list->last);
  /sfw/usr/src/cmd/binutils/binutils-2.19/binutils/
arsup.h 22 struct list { struct
24 struct list *next;
33 void ar_replace (struct list *);
35 void ar_delete (struct list *);
43 void ar_directory (char *, struct list *, char *);
45 void ar_addmod (struct list *);
47 void ar_addlib (char *, struct list *);
51 void ar_extract (struct list *);
  /sfw/usr/src/lib/commons-collections/commons-collections-3.2.1-src/src/test/org/apache/commons/collections/list/
TestAbstractLinkedList.java 17 package org.apache.commons.collections.list;
39 AbstractLinkedList list = (AbstractLinkedList) collection; local
42 list.removeFirst();
46 list.addAll( Arrays.asList( new String[]{"value1", "value2"}));
47 assertEquals( "value1", list.removeFirst() );
49 list.addLast( "value3");
51 assertEquals( "value2", list.removeFirst() );
52 assertEquals( "value3", list.removeFirst() );
54 list.addLast( "value4" );
56 assertEquals( "value4", list.removeFirst() );
62 AbstractLinkedList list = (AbstractLinkedList) collection; local
82 AbstractLinkedList list = (AbstractLinkedList) collection; local
137 AbstractLinkedList list = (AbstractLinkedList) collection; local
173 AbstractLinkedList list = (AbstractLinkedList) collection; local
    [all...]
  /sfw/usr/src/cmd/gcc/gcc-3.4.3/gcc/testsuite/gcc.c-torture/execute/
20021015-1.c 7 void g (void *p, char *list, int length, char **elementPtr, char **nextPtr)
17 char *list = g_list; local
21 for (i = 0; *list != 0; i++)
23 char *prevList = list;
24 g (0, list, length, &element, &list);
25 length -= (list - prevList);
  /sfw/usr/src/cmd/ser/ser-0.8.12/
md5global.h 29 If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
30 returns an empty list.
33 #define PROTO_LIST(list) list
35 #define PROTO_LIST(list) ()
  /sfw/usr/src/cmd/gcc/gcc-3.4.3/gcc/testsuite/gcc.dg/
alias-1.c 20 YYSTYPE list )
22 tDefEntry** ppT = (tDefEntry**)&list; // { dg-warning "type-punned pointer" "" }
24 struct incomplete *p = (struct incomplete *)&list; // { dg-warning "type-punning to incomplete" "" }
26 return list;
  /sfw/usr/src/cmd/webmin/webmin-1.340/majordomo/
save_misc.cgi 9 $list = &get_list($in{'name'}, &get_config());
10 &lock_file($list->{'config'});
11 $conf = &get_list_config($list->{'config'});
12 &save_choice($conf, $list->{'config'}, "mungedomain");
13 &save_choice($conf, $list->{'config'}, "debug");
14 &save_choice($conf, $list->{'config'}, "date_info");
15 &save_choice($conf, $list->{'config'}, "date_intro");
17 &unlock_file($list->{'config'});
save_access.cgi 9 $list = &get_list($in{'name'}, &get_config());
10 &lock_file($list->{'config'});
11 $conf = &get_list_config($list->{'config'});
12 &save_choice($conf, $list->{'config'}, "get_access");
13 &save_choice($conf, $list->{'config'}, "index_access");
14 &save_choice($conf, $list->{'config'}, "info_access");
15 &save_choice($conf, $list->{'config'}, "intro_access");
16 &save_choice($conf, $list->{'config'}, "which_access");
17 &save_choice($conf, $list->{'config'}, "who_access");
30 &save_list_directive($conf, $list->{'config'}, "advertise", $adv, 1)
    [all...]
  /sfw/usr/src/cmd/ocaml/ocaml-3.10.2/otherlibs/labltk/builtin/
image.mli 3 val names : unit -> options list
7 val names : unit -> image list
  /sfw/usr/src/cmd/gcc/gcc-3.4.3/libstdc++-v3/testsuite/23_containers/list/
1.cc 31 #include <list>
41 class list<user_type, Allocator> {}; class in namespace:std
  /sfw/usr/src/cmd/gm4/m4-1.4.12/lib/
gl_list.c 1 /* Abstract sequential list data type.
53 gl_list_size (gl_list_t list)
55 return ((const struct gl_list_impl_base *) list)->vtable
56 ->size (list);
60 gl_list_node_value (gl_list_t list, gl_list_node_t node)
62 return ((const struct gl_list_impl_base *) list)->vtable
63 ->node_value (list, node);
67 gl_list_node_set_value (gl_list_t list, gl_list_node_t node, const void *elt)
69 ((const struct gl_list_impl_base *) list)->vtable
70 ->node_set_value (list, node, elt)
    [all...]
  /sfw/usr/src/cmd/emacs/emacs-23.1/lisp/
patcomp.el 12 (let ((load-path (list (expand-file-name "lisp"))))
19 (let ((load-path (list (expand-file-name "lisp"))))
  /sfw/usr/src/cmd/gcc/gcc-3.4.3/gcc/testsuite/g++.dg/other/
stdarg1.C 8 void baz (va_list list)
10 if (va_arg (list, long) != 3)
16 va_list list; local
17 va_start (list, p2);
18 baz (list);
19 va_end (list);
  /sfw/usr/src/lib/drools/drools-jbrms/src/main/java/org/drools/brms/client/
JBRMSFeatureConfigurator.java 21 * This contains the list of configured features for the JBRMS console.
31 * Adds all sinks to the list. Note that this does not create actual
35 public static void configure(JBRMSFeatureList list) {
36 list.addSink(Info.init());
37 list.addSink(RulesFeature.init());
38 list.addSink(PackageManagementFeature.init());
39 //list.addSink(RuleBases.init());
40 list.addSink(DeploymentManagementFeature.init());
41 list.addSink(AdminFeature.init());
  /sfw/usr/src/lib/trousers/trousers-0.3.2/src/tspi/daa/utils/
list.c 13 #include <list.h>
18 list_ptr list = (list_ptr)malloc( sizeof( list_struct)); local
20 if( list == NULL) return NULL;
21 list->head = NULL;
22 return list;
25 void list_add(list_ptr list, void *obj) {
26 list->current = (node_t *) malloc (sizeof(struct _list_t));
27 if (list->current == NULL) {
31 if( list->head == NULL) {
32 list->head = list->current
    [all...]
  /sfw/usr/src/cmd/gettext/gettext-0.16.1/gettext-tools/gnulib-lib/
gl_list.c 1 /* Abstract sequential list data type.
52 gl_list_size (gl_list_t list)
54 return ((const struct gl_list_impl_base *) list)->vtable
55 ->size (list);
59 gl_list_node_value (gl_list_t list, gl_list_node_t node)
61 return ((const struct gl_list_impl_base *) list)->vtable
62 ->node_value (list, node);
66 gl_list_next_node (gl_list_t list, gl_list_node_t node)
68 return ((const struct gl_list_impl_base *) list)->vtable
69 ->next_node (list, node)
    [all...]
  /sfw/usr/src/cmd/cmake/cmake-2.6.2/Utilities/cmcurl/
llist.c 47 struct curl_llist *list; local
49 list = (struct curl_llist *)malloc(sizeof(struct curl_llist));
50 if(NULL == list)
53 Curl_llist_init(list, dtor);
55 return list;
62 Curl_llist_insert_next(struct curl_llist *list, struct curl_llist_element *e,
71 if (list->size == 0) {
72 list->head = ne;
73 list->head->prev = NULL;
74 list->head->next = NULL
    [all...]
  /sfw/usr/src/cmd/jruby/jruby-1.1.3/test/
testPositions.rb 24 def compare_node(node, list, test_name)
26 entry = list.delete_at(0)
42 node.childNodes.each {|child| compare_node(child, list, test_name) }
61 list = [
66 test_tree(list, <<'END', "operation [paren-less no args]")
71 list = [
76 test_tree(list, <<'END', "operation [paren-less no args]")
80 list = [
87 test_tree(list, <<'END', "operation [paren-less single arg]")
91 list =
    [all...]
  /sfw/usr/src/cmd/vim/vim72/pixmaps/
gen-inline-pixbufs.sh 4 list=
9 list="$list $prefix$name $file"
12 gdk-pixbuf-csource --raw --static --build-list $list

Completed in 3138 milliseconds

1 2 3 4 5 6 7 8 91011>>