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

1234567891011>>

/macosx-10.9.5/bash-92/bash-3.2/builtins/
H A Dhash.c43 hash_builtin (list)
44 WORD_LIST *list;
58 while ((opt = internal_getopt (list, "dlp:rt")) != -1)
82 list = loptend;
85 if (list == 0 && list_targets)
93 if (list == 0 && expunge_hash_table == 0)
107 return (list_hashed_filename_targets (list, list_portably));
117 for (opt = EXECUTION_SUCCESS; list; list = list
[all...]
H A Dsetattr.c41 export_builtin (list)
42 register WORD_LIST *list;
44 return (set_or_show_attributes (list, att_exported, 0));
52 readonly_builtin (list)
53 register WORD_LIST *list;
55 return (set_or_show_attributes (list, att_readonly, 0));
68 set_or_show_attributes (list, attribute, nodefs)
69 register WORD_LIST *list;
82 /* Read arguments from the front of the list. */
84 while ((opt = internal_getopt (list, ATTROPT
[all...]
/macosx-10.9.5/bash-92/bash-3.2/examples/loadables/
H A Dln.c34 ln_builtin (list)
35 WORD_LIST *list;
44 while ((opt = internal_getopt (list, "fs")) != -1)
59 list = loptend;
61 if (list == 0)
69 if (list->next == 0) /* ln target, equivalent to ln target . */
70 return (dolink (list->word->word, ".", flags));
72 if (list->next->next == 0) /* ln target source */
73 return (dolink (list->word->word, list
[all...]
H A Dtee.c44 tee_builtin (list)
45 WORD_LIST *list;
57 while ((opt = internal_getopt (list, "ai")) != -1)
72 list = loptend;
79 /* Initialize output file list. */
85 /* Add file arguments to list of output files. */
87 for (rval = EXECUTION_SUCCESS; list; list = list->next)
89 fd = open (list
[all...]
H A Dsleep.c110 sleep_builtin (list)
111 WORD_LIST *list;
115 if (list == 0) {
120 if (*list->word->word == '-' || list->next) {
125 if (convert(list->word->word, &sec, &usec)) {
130 builtin_error("%s: bad sleep interval", list->word->word);
/macosx-10.9.5/emacs-92/emacs/lisp/calc/
H A Dcalc-undo.el46 (when (null (nthcdr (1- n) calc-undo-list))
48 (setq calc-undo-list
50 (nthcdr n calc-undo-list)
53 (calc-handle-undos calc-undo-list n))
59 (let ((old-redo calc-redo-list))
60 (setq calc-undo-list nil)
62 (setq calc-redo-list (append calc-undo-list old-redo)))
65 (defun calc-handle-undo (list)
66 (when list
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dmatch_ops.c9 /* int match_string(list, string, pattern)
10 /* MATCH_LIST *list;
14 /* int match_hostname(list, name, pattern)
15 /* MATCH_LIST *list;
19 /* int match_hostaddr(list, addr, pattern)
20 /* MATCH_LIST *list;
41 /* Log a warning, return "not found", and set list->error to
90 static int match_error(MATCH_LIST *list, const char *fmt,...) argument
101 if (list->flags & MATCH_FLAG_RETURN) {
112 int match_string(MATCH_LIST *list, cons argument
149 match_hostname(MATCH_LIST *list, const char *name, const char *pattern) argument
217 match_hostaddr(MATCH_LIST *list, const char *addr, const char *pattern) argument
[all...]
/macosx-10.9.5/postfix-252/postfix/src/dns/
H A Ddns_rr.c5 /* resource record memory and list management
20 /* void dns_rr_free(list)
21 /* DNS_RR *list;
26 /* DNS_RR *dns_rr_append(list, record)
27 /* DNS_RR *list;
30 /* DNS_RR *dns_rr_sort(list, compar)
31 /* DNS_RR *list
35 /* DNS_RR *list
36 /* DNS_RR *list
39 /* DNS_RR *list
167 dns_rr_append(DNS_RR *list, DNS_RR *rr) argument
241 dns_rr_sort(DNS_RR *list, int (*compar) (DNS_RR *, DNS_RR *)) argument
287 dns_rr_shuffle(DNS_RR *list) argument
331 dns_rr_remove(DNS_RR *list, DNS_RR *record) argument
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclThread.c29 char **list; /* List of pointers */ member in struct:__anon12754
145 * Keep a list of (mutexes/condition variable/data key) used during
154 * Add to the appropriate list.
169 * Reuse any free slot in the list.
173 if (recPtr->list[i] == NULL) {
174 recPtr->list[i] = objPtr;
180 * Grow the list of pointers if necessary, copying only non-NULL
181 * pointers to the new list.
188 if (recPtr->list[i] != NULL) {
189 newList[j++] = recPtr->list[
[all...]
/macosx-10.9.5/swig-10/Lib/ocaml/
H A Dstd_list.i7 * SWIG typemaps for std::list types
14 #include <list>
20 template<class T> class list
29 list();
30 list(unsigned int size, const T& value = T());
31 list(const list<T> &);
33 ~list();
35 void swap(list<T> &x);
67 std::list<
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet/
H A Ddhcp_options.h170 * Module: dhcpol (dhcp options list)
186 void dhcpol_init(dhcpol_t * list);
187 void dhcpol_free(dhcpol_t * list);
188 int dhcpol_count(dhcpol_t * list);
189 boolean_t dhcpol_add(dhcpol_t * list, const void * element);
190 const void * dhcpol_element(dhcpol_t * list, int i);
191 boolean_t dhcpol_concat(dhcpol_t * list, dhcpol_t * extra);
192 boolean_t dhcpol_parse_buffer(dhcpol_t * list,
195 const void * dhcpol_find(dhcpol_t * list, int tag, int * len_p,
198 void * dhcpol_get(dhcpol_t * list, in
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/
H A Dportlist.c52 dns_element_t *list; member in struct:dns_portlist
94 portlist->list = NULL;
105 find_port(dns_element_t *list, unsigned int len, in_port_t port) { argument
112 if (list[xtry].port == port)
113 return (&list[xtry]);
114 if (port > list[xtry].port) {
147 el = find_port(portlist->list, portlist->active, port);
166 if (portlist->list != NULL) {
167 memcpy(el, portlist->list,
169 isc_mem_put(portlist->mctx, portlist->list,
[all...]
/macosx-10.9.5/tcl-102/tk/tk/tests/ttk/
H A Dnotebook.test49 } -result [list .nb.foo .nb.bar]
54 list [winfo viewable .nb.foo] [winfo viewable .nb.bar] [.nb index current]
55 } -result [list 1 0 0]
60 list [winfo viewable .nb.foo] [winfo viewable .nb.bar] [.nb index current]
61 } -result [list 0 1 1]
74 } -result [list \
98 set ::events [list]
108 } -result [list changed .t.nb]
111 set events [list]
114 } -result [list change
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/tests/
H A Dtest_ewk2_popup_menu.cpp49 const Eina_List* list = ewk_popup_menu_items_get(popupMenu); local
51 Ewk_Popup_Menu_Item* item = static_cast<Ewk_Popup_Menu_Item*>(eina_list_nth(list, 0));
59 item = static_cast<Ewk_Popup_Menu_Item*>(eina_list_nth(list, 1));
63 item = static_cast<Ewk_Popup_Menu_Item*>(eina_list_nth(list, 2));
70 item = static_cast<Ewk_Popup_Menu_Item*>(eina_list_nth(list, 3));
74 item = static_cast<Ewk_Popup_Menu_Item*>(eina_list_nth(list, 4));
77 item = static_cast<Ewk_Popup_Menu_Item*>(eina_list_nth(list, 5));
/macosx-10.9.5/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.9.5/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.9.5/tcl-102/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.9.5/bootp-268.1/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...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DNodeRareData.h68 RefPtr<ChildNodeList> list = ChildNodeList::create(node);
69 m_childNodeList = list.get();
70 return list.release();
73 void removeChildNodeList(ChildNodeList* list) argument
75 ASSERT(m_childNodeList = list);
76 if (deleteThisAndUpdateNodeRareDataIfAboutToRemoveLastList(list->ownerNode()))
102 RefPtr<T> list = T::create(node, collectionType, name);
103 result.iterator->value = list.get();
104 return list.release();
115 RefPtr<T> list
150 removeCacheWithAtomicName(LiveNodeListBase* list, CollectionType collectionType, const AtomicString& name = starAtom) argument
158 removeCacheWithName(LiveNodeListBase* list, CollectionType collectionType, const String& name) argument
166 removeCacheWithQualifiedName(LiveNodeList* list, const AtomicString& namespaceURI, const AtomicString& localName) argument
198 LiveNodeListBase* list = it->value; local
205 LiveNodeListBase* list = it->value; local
212 LiveNodeListBase* list = it->value; local
[all...]
/macosx-10.9.5/emacs-92/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.9.5/bash-92/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.9.5/Libinfo-449.1.3/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.9.5/apache-786.1/httpd/srclib/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.9.5/apr-30/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.9.5/emacs-92/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...]

Completed in 385 milliseconds

1234567891011>>