Searched refs:list (Results 26 - 50 of 3884) sorted by relevance

1234567891011>>

/macosx-10.9.5/swig-10/Lib/ruby/
H A Dstd_list.i9 struct traits_asptr<std::list<T> > {
10 static int asptr(VALUE obj, std::list<T> **lis) {
11 return traits_asptr_stdseq<std::list<T> >::asptr(obj, lis);
16 struct traits_from<std::list<T> > {
17 static VALUE from(const std::list<T> & vec) {
18 return traits_from_stdseq<std::list<T> >::from(vec);
24 %ignore std::list::push_back;
25 %ignore std::list::pop_back;
31 %rename("delete") std::list::__delete__;
32 %rename("reject!") std::list
[all...]
/macosx-10.9.5/bash-92/bash-3.2/
H A Dlist.c0 /* list.c - Functions for manipulating linked lists of objects. */
33 /* A global variable which acts as a sentinel for an `error' list return. */
37 /* Call FUNCTION on every member of LIST, a generic list. */
39 list_walk (list, function)
40 GENERIC_LIST *list;
43 for ( ; list; list = list->next)
44 if ((*function) (list) < 0)
64 list_reverse (list)
[all...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dllist.c46 struct curl_llist *list; local
48 list = malloc(sizeof(struct curl_llist));
49 if(!list)
52 llist_init(list, dtor);
54 return list;
60 * Inserts a new list element after the given one 'e'. If the given existing
61 * entry is NULL and the list already has elements, the new one will be
62 * inserted first in the list.
69 Curl_llist_insert_next(struct curl_llist *list, struct curl_llist_element *e, argument
77 if(list
110 Curl_llist_remove(struct curl_llist *list, struct curl_llist_element *e, void *user) argument
145 Curl_llist_destroy(struct curl_llist *list, void *user) argument
156 Curl_llist_count(struct curl_llist *list) argument
164 Curl_llist_move(struct curl_llist *list, struct curl_llist_element *e, struct curl_llist *to_list, struct curl_llist_element *to_e) argument
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/ldapc++/src/
H A DSaslInteractionHandler.h9 #include <list>
15 virtual void handleInteractions( const std::list<SaslInteraction*> &cb )=0;
21 virtual void handleInteractions( const std::list<SaslInteraction*> &cb );
25 std::list<SaslInteraction*> cleanupList;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/c/
H A DWKBundleBackForwardList.h8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
37 WK_EXPORT WKBundleBackForwardListItemRef WKBundleBackForwardListCopyItemAtIndex(WKBundleBackForwardListRef list, int index);
39 WK_EXPORT unsigned WKBundleBackForwardListGetBackListCount(WKBundleBackForwardListRef list);
40 WK_EXPORT unsigned WKBundleBackForwardListGetForwardListCount(WKBundleBackForwardListRef list);
42 WK_EXPORT void WKBundleBackForwardListClear(WKBundleBackForwardListRef list);
/macosx-10.9.5/bash-92/bash-3.2/examples/loadables/
H A Dtruefalse.c7 true_builtin (list)
8 WORD_LIST *list;
13 false_builtin (list)
14 WORD_LIST *list;
H A Dunlink.c22 unlink_builtin (list)
23 WORD_LIST *list;
25 if (list == 0)
31 if (unlink (list->word->word) != 0)
33 builtin_error ("%s: cannot unlink: %s", list->word->word, strerror (errno));
H A Dwhoami.c12 whoami_builtin (list)
13 WORD_LIST *list;
18 while ((opt = internal_getopt (list, "")) != -1)
27 list = loptend;
28 if (list)
H A Dprintenv.c18 printenv_builtin (list)
19 WORD_LIST *list;
26 while ((opt = internal_getopt (list, "")) != -1)
35 list = loptend;
38 if (list == 0)
47 var = find_variable (list->word->word);
/macosx-10.9.5/dcerpc-58/www/lib/
H A Dbreadcrumbs.rb11 list = ["<li>#{h(page.title)}</li>"]
15 list << "<li>#{link_to_page(page)}</li>"
17 list.reverse!
20 html << list.join("\n")
/macosx-10.9.5/bootp-268.1/bootplib/
H A Ddynarray.h47 ptrlist_t list; member in struct:dynarray_s
52 void dynarray_init(dynarray_t * list,
55 boolean_t dynarray_add(dynarray_t * list, void * element);
56 boolean_t dynarray_remove(dynarray_t * list, int i, void * * element_p);
57 boolean_t dynarray_insert(dynarray_t * list, void * element, int i);
58 void dynarray_free(dynarray_t * list);
59 boolean_t dynarray_free_element(dynarray_t * list, int i);
61 int dynarray_count(dynarray_t * list);
62 void * dynarray_element(dynarray_t * list, int i);
63 int dynarray_index(dynarray_t * list, voi
[all...]
H A Dptrlist.h29 /* the initial number of elements in the list */
38 void ptrlist_init(ptrlist_t * list);
39 void ptrlist_init_size(ptrlist_t * list, int size);
40 boolean_t ptrlist_add(ptrlist_t * list, void * element);
41 boolean_t ptrlist_insert(ptrlist_t * list, void * element, int i);
42 void ptrlist_free(ptrlist_t * list);
44 boolean_t ptrlist_concat(ptrlist_t * list, ptrlist_t * extra);
45 int ptrlist_count(ptrlist_t * list);
46 void * ptrlist_element(ptrlist_t * list, int i);
47 boolean_t ptrlist_remove(ptrlist_t * list, in
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tk/
H A Dscrollbox.rb12 #list = Tk::Listbox.new(@frame)
14 list = TkListbox.new(@frame)
18 @path = list.path
21 list.configure 'yscroll', scroll.path+" set"
22 list.pack 'side'=>'left','fill'=>'both','expand'=>'yes'
23 scroll.configure 'command', list.path+" yview"
26 list.yscrollbar(scroll)
27 list.pack('side'=>'left','fill'=>'both','expand'=>'yes')
30 delegate('DEFAULT', list)
31 delegate('foreground', list)
[all...]
/macosx-10.9.5/bash-92/bash-3.2/builtins/
H A Dfg_bg.c29 fg_builtin (list)
30 WORD_LIST *list;
41 if (no_options (list))
43 list = loptend;
47 for (t = list; t && t->next; t = t->next)
51 return (fg_bg (list, fg_bit));
60 bg_builtin (list)
61 WORD_LIST *list;
71 if (no_options (list))
73 list
[all...]
H A Dsource.c67 source_builtin (list)
68 WORD_LIST *list;
73 if (no_options (list))
75 list = loptend;
77 if (list == 0)
85 if (restricted && strchr (list->word->word, '/'))
87 sh_restricted (list->word->word);
94 filename = find_path_file (list->word->word);
99 builtin_error (_("%s: file not found"), list->word->word);
103 filename = savestring (list
[all...]
H A Dwait.c30 0. If a list of pids or job specs are given, return the exit status of
42 wait_builtin (list)
43 WORD_LIST *list;
48 USE_VAR(list);
50 if (no_options (list))
52 list = loptend;
77 if (list == 0)
84 while (list)
90 w = list->word->word;
112 job = get_job_spec (list);
[all...]
H A Decho.c43 echo_builtin (list)
44 WORD_LIST *list;
55 for (; list && (temp = list->word->word) && *temp == '-'; list = list->next)
99 while (list)
102 temp = do_v9 ? ansicstr (list->word->word, STRLEN (list->word->word), 1, &i, &len)
103 : list
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/psych/
H A Dpsych.c10 VALUE list[3]; local
14 list[0] = INT2NUM((long)major);
15 list[1] = INT2NUM((long)minor);
16 list[2] = INT2NUM((long)patch);
18 return rb_ary_new4((long)3, list);
/macosx-10.9.5/autofs-234/automountd/
H A Dreplica.c60 free_replica(struct replica *list, int count) argument
65 if (list[i].host)
66 free(list[i].host);
67 if (list[i].path)
68 free(list[i].path);
70 free(list);
76 struct replica *list = NULL; local
106 * and grab the address and store it in the list
112 if ((list = realloc(list, (*coun
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/include/isc/
H A Dlist.h32 #define ISC_LIST_INIT(list) \
33 do { (list).head = NULL; (list).tail = NULL; } while (0)
45 #define ISC_LIST_HEAD(list) ((list).head)
46 #define ISC_LIST_TAIL(list) ((list).tail)
47 #define ISC_LIST_EMPTY(list) ISC_TF((list).head == NULL)
49 #define __ISC_LIST_PREPENDUNSAFE(list, el
[all...]
/macosx-10.9.5/ntp-88/lib/isc/include/isc/
H A Dlist.h18 /* $Id: list.h,v 1.24 2007/06/19 23:47:18 tbox Exp $ */
32 #define ISC_LIST_INIT(list) \
33 do { (list).head = NULL; (list).tail = NULL; } while (0)
45 #define ISC_LIST_HEAD(list) ((list).head)
46 #define ISC_LIST_TAIL(list) ((list).tail)
47 #define ISC_LIST_EMPTY(list) ISC_TF((list)
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/docs_src/ref/transapp/
H A Darchival.cs28 char **begin, **list;
30 /* Get the list of database files. */
32 &list, DB_ARCH_ABS | DB_ARCH_DATA)) != 0) {
36 if (list != NULL) {
37 for (begin = list; *list != NULL; ++list)
38 printf("database file: %s\n", *list);
42 /* Get the list of log files. */
44 &list, DB_ARCH_AB
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dmatch_list.c5 /* generic list-based pattern matching
15 /* int match_list_match(list, string,...)
16 /* MATCH_LIST *list;
19 /* void match_list_free(list)
20 /* MATCH_LIST *list;
22 /* This module implements a framework for tests for list membership.
40 /* zero (with list->error set to a non-zero dictionary error
44 /* The pattern_list argument specifies a list of patterns. The third
48 /* list, passing the first string to the first function given to
97 static ARGV *match_list_parse(ARGV *list, cha argument
166 MATCH_LIST *list; local
198 match_list_match(MATCH_LIST *list,...) argument
233 match_list_free(MATCH_LIST *list) argument
[all...]
/macosx-10.9.5/rsync-42/rsync/
H A Dgetgroups.c29 gid_t *list; local
42 list = (gid_t*)malloc(sizeof (gid_t) * (n + 1));
43 if (!list) {
50 n = getgroups(n, list);
54 printf("%lu ", (unsigned long)list[i]);
55 if (list[i] == gid)
58 /* The default gid might not be in the list on some systems. */
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/cdt/
H A Ddtrestore.c24 /* Restore dictionary from given tree or list of elements.
25 ** There are two cases. If called from within, list is nil.
26 ** From without, list is not nil and data->size must be 0.
32 int dtrestore(reg Dt_t* dt, reg Dtlink_t* list) argument
34 int dtrestore(dt, list)
36 reg Dtlink_t* list;
44 if(!list) /* restoring a flattened dictionary */
47 list = dt->data->here;
49 else /* restoring an extracted list of elements */
61 { *s = list;
[all...]

Completed in 552 milliseconds

1234567891011>>