Searched refs:list (Results 226 - 250 of 3573) sorted by relevance

1234567891011>>

/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Darparse.y39 struct list *list ;
62 %type <list> modulelist
63 %type <list> modulename
173 { struct list *n = (struct list *) malloc(sizeof(struct list));
/macosx-10.10.1/iodbc-42.5/iodbc/iodbc/
H A Dherr.h56 * notice, this list of conditions and the following disclaimer.
58 * notice, this list of conditions and the following disclaimer in
210 extern HERR _iodbcdm_pushsqlerr (HERR list, sqlstcode_t code, void *sysmsg);
212 #define PUSHSYSERR(list, msg) \
213 list = (HERR) _iodbcdm_pushsqlerr ((HERR)(list), en_00000, msg)
215 #define PUSHSQLERR(list, code) \
216 list = (HERR) _iodbcdm_pushsqlerr ((HERR)(list), (code), NULL)
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Dmethods.test67 list [catch {ta two 1} msg] $msg
71 list [catch {ta two 1 2 3} msg] $msg
75 list [catch {ta none 1 2 3} msg] $msg
79 list [catch {ta two 1 2} msg] $msg
83 list [catch {ta none} msg] $msg
87 list [catch {ta defvals} msg] $msg
91 list [catch {ta defvals 1} msg] $msg
95 list [catch {ta defvals 1 2} msg] $msg
99 list [catch {ta defvals 1 2 3} msg] $msg
103 list [catc
[all...]
/macosx-10.10.1/bootp-298/bootplib/
H A Dinetroute.c25 * - get a list of internet network routes
103 list_p->list = (inetroute_t *)malloc(sizeof(*(list_p->list)) * list_size);
104 if (list_p->list == NULL)
143 list_p->list = (inetroute_t *)
144 realloc(list_p->list, sizeof(*(list_p->list)) * list_size);
145 if (list_p->list == NULL)
148 entry = list_p->list + list_p->count;
182 inetroute_list_free(inetroute_list_t * * list) argument
[all...]
H A DDNSNameList.c26 * - convert a list of DNS domain names to and from the compact
188 DNSNameOffsetsInit(DNSNameOffsetsRef list) argument
190 bzero(list, sizeof(*list));
191 list->dno_size = DNS_NAME_OFFSETS_N_START;
192 list->dno_list = list->dno_list_s;
199 DNSNameOffsetsRef list; local
201 list = malloc(sizeof(*list));
209 DNSNameOffsetsContainsOffset(DNSNameOffsetsRef list, uint32_t off) argument
222 DNSNameOffsetsFreeElements(DNSNameOffsetsRef list) argument
234 DNSNameOffsetsRef list; local
251 DNSNameOffsetsAdd(DNSNameOffsetsRef list, uint32_t this_offset) argument
273 DNSNameOffsetsSet(DNSNameOffsetsRef list, int i, uint32_t this_offset) argument
284 DNSNameOffsetsElement(const DNSNameOffsetsRef list, int i) argument
290 DNSNameOffsetsCount(const DNSNameOffsetsRef list) argument
705 char * * list = NULL; local
950 const char * * list; local
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/calendar/
H A Dcal-menu.el171 (defun calendar-flatten (list)
172 "Flatten LIST eliminating sublists structure; result is a list of atoms.
173 This is the same as the preorder list of leaves in a rooted forest."
174 (if (atom list)
175 (list list)
176 (if (cdr list)
177 (append (calendar-flatten (car list)) (calendar-flatten (cdr list)))
178 (calendar-flatten (car list)))))
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dstringvec.c180 strvec_from_word_list (list, alloc, starting_index, ip)
181 WORD_LIST *list;
187 count = list_length (list);
192 for (count = starting_index; list; count++, list = list->next)
193 array[count] = alloc ? savestring (list->word->word) : list->word->word;
203 list rather than copy the values in ARRAY. STARTING_INDEX says where
211 WORD_LIST *list; local
[all...]
/macosx-10.10.1/Libinfo-459/lookup.subproj/
H A Dils.c79 * * NULL-terminated list of strings
80 * a NULL-terminated list of 4-byte values
81 * b NULL-terminated list of 8-byte values
82 * c NULL-terminated list of 16-byte values
91 char **list; local
206 // NULL-terminated list of strings
210 list = va_arg(ap, char **);
211 if (list != NULL)
213 for (i = 0; list[i] != NULL; i++)
216 slen += (strlen(list[
[all...]
/macosx-10.10.1/apr-32/apr-util/apr-util/buckets/
H A Dapr_buckets_simple.c22 *b = apr_bucket_alloc(sizeof(**b), a->list); /* XXX: check for failure? */
70 apr_bucket_alloc_t *list)
72 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
76 b->list = list;
111 apr_bucket_alloc_t *list)
113 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
117 b->list = list;
68 apr_bucket_immortal_create(const char *buf, apr_size_t length, apr_bucket_alloc_t *list) argument
109 apr_bucket_transient_create(const char *buf, apr_size_t length, apr_bucket_alloc_t *list) argument
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dgnus-mlspl.el108 GROUPS may be a regular expression or a list of group names, that will
120 constructed (extra-aliases may be a list). Additionally, if
129 split (say, a group name) will be appended to the returned SPLIT list,
138 \((to-list . \"foo@nowhere.gov\")
180 (to-list (cdr (assoc 'to-list params)))
184 (when (or to-address to-list extra-aliases split-regexp)
185 ;; regexp-quote to-address, to-list and extra-aliases
193 (and to-address (list (regexp-quote to-address)))
194 (and to-list (lis
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dchartype.test53 list [ctype -failindex failIdx xdigit XMc123cd] $failIdx
65 list [ctype -failindex failIdx lower abcDeFgh] $failIdx
77 list [ctype -failindex failIdx upper DabcDeFgh] $failIdx
89 list [ctype -failindex failIdx alpha abc123cd] $failIdx
101 list [ctype -failindex failIdx alnum ab.%23cd] $failIdx
113 list [ctype -failindex failIdx space "ab \t z"] $failIdx
125 list [ctype -failindex failIdx cntrl "[ctype char 7]abcd"] $failIdx
137 list [ctype -failindex failIdx punct ".,:;ab"] $failIdx
149 list [ctype -failindex failIdx print "[ctype char 7][ctype char 15]abc"] $failIdx
161 list [ctyp
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DCCallbackMgr.h37 #include <list>
68 typedef list<CallbackInfo>::iterator CallbackInfoListIterator;
69 typedef list<CallbackInfo>::const_iterator ConstCallbackInfoListIterator;
92 static void AlertClients(const list<CallbackInfo> &eventCallbacks, SecKeychainEvent inEvent, pid_t inPid,
95 list<CallbackInfo> mEventCallbacks;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DCCallbackMgr.h37 #include <list>
68 typedef list<CallbackInfo>::iterator CallbackInfoListIterator;
69 typedef list<CallbackInfo>::const_iterator ConstCallbackInfoListIterator;
92 static void AlertClients(const list<CallbackInfo> &eventCallbacks, SecKeychainEvent inEvent, pid_t inPid,
95 list<CallbackInfo> mEventCallbacks;
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DCCallbackMgr.h37 #include <list>
68 typedef list<CallbackInfo>::iterator CallbackInfoListIterator;
69 typedef list<CallbackInfo>::const_iterator ConstCallbackInfoListIterator;
92 static void AlertClients(const list<CallbackInfo> &eventCallbacks, SecKeychainEvent inEvent, pid_t inPid,
95 list<CallbackInfo> mEventCallbacks;
/macosx-10.10.1/apache-793/httpd/server/
H A Derror_bucket.c46 h = apr_bucket_alloc(sizeof(*h), b->list);
57 apr_bucket_alloc_t *list)
59 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
63 b->list = list;
55 ap_bucket_error_create(int error, const char *buf, apr_pool_t *p, apr_bucket_alloc_t *list) argument
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Ddeclare.c34 declare_builtin (list)
35 register WORD_LIST *list;
37 return (declare_internal (list, 0));
42 local_builtin (list)
43 register WORD_LIST *list;
46 return (declare_internal (list, 1));
62 declare_internal (list, local_var)
63 register WORD_LIST *list;
73 while ((opt = internal_getopt (list, DECLARE_OPTS)) != EOF)
114 list
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/loadables/
H A Duname.c47 uname_builtin (list)
48 WORD_LIST *list;
55 while ((opt = internal_getopt (list, "amnprsv")) != -1)
83 list = loptend;
85 if (list)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/cdt/
H A Ddtdisc.c61 Dtlink_t *list; local
77 list = dtextract(dt); /* grab the list of objects if any */
78 else list = NIL(Dtlink_t*);
84 if(list ) /* reinsert extracted objects (with new discipline) */
85 dtrestore(dt, list);
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclHistory.c26 * This procedure adds its command argument to the current list of
92 * current list of recorded events and then executes the command by
118 Tcl_Obj *list[3];
139 TclNewLiteralStringObj(list[0], "history");
140 TclNewLiteralStringObj(list[1], "add");
141 list[2] = cmdPtr;
143 objPtr = Tcl_NewListObj(3, list);
116 Tcl_Obj *list[3]; local
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclHistory.c28 * This procedure adds its command argument to the current list of
96 * current list of recorded events and then executes the command by
122 Tcl_Obj *list[3];
129 list[0] = Tcl_NewStringObj("history", -1);
130 list[1] = Tcl_NewStringObj("add", -1);
131 list[2] = cmdPtr;
133 objPtr = Tcl_NewListObj(3, list);
120 Tcl_Obj *list[3]; local
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_metadata_py2py.py32 self.assertEquals(list(v), list(range(9, 13)))
35 self.assertEquals(list(v), list(range(9, 13)))
41 self.assertEquals(list(v), list(range(1, 5)))
45 self.assertEquals(list(v), list(range(1, 5)))
72 self.assertEquals(list(v), [10, 11, 12])
75 self.assertEquals(list(
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_metadata_py2py.py32 self.assertEquals(list(v), list(range(9, 13)))
35 self.assertEquals(list(v), list(range(9, 13)))
41 self.assertEquals(list(v), list(range(1, 5)))
45 self.assertEquals(list(v), list(range(1, 5)))
72 self.assertEquals(list(v), [10, 11, 12])
75 self.assertEquals(list(
[all...]
/macosx-10.10.1/mail_cmds-30/mail/
H A Dcmd2.c9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in the
67 int *ip, *ip2, list[2], mdot; local
81 * message list which follows dot.
134 list[0] = dot - &message[0] + 1;
135 list[1] = 0;
136 return (type(list));
152 * Save a message list in a file named after author. Mark the message as saved
282 * name so that the message list processing won't see it,
315 *flag = 0; /* no message list foun
346 int list[2]; local
[all...]
/macosx-10.10.1/pdisk-9/
H A Dvalidate.c97 void initialize_list(range_list **list);
98 void add_range(range_list **list, u32 base, u32 len, int allocate);
99 void print_range_list(range_list *list);
100 void delete_list(range_list *list);
101 void coalesce_list(range_list *list);
172 initialize_list(range_list **list) argument
177 *list = item;
182 delete_list(range_list *list) argument
187 for (cur = list; cur != 0; ) {
196 add_range(range_list **list, u3 argument
273 coalesce_list(range_list *list) argument
299 print_range_list(range_list *list) argument
355 range_list *list; local
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/bwidget/
H A Dtree.rb55 list = Tk::BWidget::ListBox.new(sw, :relief=>:flat, :borderwidth=>0,
72 sw.set_widget(list)
79 proc{|node, ev| select('tree', 1, tree, list, node)})
81 proc{|node, ev| select('tree', 2, tree, list, node)})
83 list.textbind('ButtonPress-1',
84 proc{|node, ev| select('list', 1, tree, list, node)})
85 list.textbind('Double-ButtonPress-1',
86 proc{|node, ev| select('list', 2, tree, list, nod
[all...]

Completed in 243 milliseconds

1234567891011>>