Searched refs:list (Results 176 - 200 of 3651) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/test/psych/
H A Dtest_stream.rb16 list = []
18 list << doc.to_ruby
20 assert_equal %w{ foo bar }, list
24 list = []
26 list << doc.to_ruby
29 assert_equal %w{ foo }, list
33 list = []
35 list << ruby
37 assert_equal %w{ foo bar }, list
41 list
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclThread.c30 char **list; /* List of pointers */ member in struct:__anon12819
191 * Keep a list of (mutexes/condition variable/data key)
200 * Add to the appropriate list.
214 * Reuse any free slot in the list.
218 if (recPtr->list[i] == NULL) {
219 recPtr->list[i] = objPtr;
225 * Grow the list of pointers if necessary, copying only non-NULL
226 * pointers to the new list.
233 if (recPtr->list[i] != NULL) {
234 newList[j++] = recPtr->list[
[all...]
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Dbody.test46 list [catch "test_body0 any" msg] $msg
50 list [catch "itcl::body test_body::any" msg] $msg
54 list [catch "itcl::body test_body::xyzzyxyzzyxyzzy {} {}" msg] $msg
57 test body-1.5a {members without an argument list can have any args} {
59 list [catch "test_body0 any" msg] $msg
62 test body-1.5b {members without an argument list can have any args} {
64 list [catch "test_body0 any 1" msg] $msg
67 test body-1.5c {members without an argument list can have any args} {
69 list [catch "test_body0 any 1" msg] $msg
72 test body-1.6a {an empty argument list mus
[all...]
/macosx-10.10/tcl-105/tcl_ext/incrtcl/incrTcl/itk/generic/
H A Ditk_util.c34 * Initializes an ordered option list, allocating a certain amount of
35 * memory for an initial option list.
40 ItkOptList *olist; /* list to be initialized */
46 olist->list = (Tcl_HashEntry**)ckalloc(
57 * Frees an ordered option list created by Itk_OptListInit().
58 * This only frees the memory associated with the list, not the
59 * list itself.
64 ItkOptList *olist; /* list to be freed */
66 ckfree((char*)olist->list);
77 * ordered list o
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/builtins/
H A Dhistory.c55 history_builtin (list)
56 WORD_LIST *list;
64 while ((opt = internal_getopt (list, "acd:npsrw")) != -1)
100 list = loptend;
113 if (list == 0)
119 if (list)
120 push_history (list);
126 if (list)
127 return (expand_and_print_history (list));
150 display_history (list);
[all...]
H A Dcommand.c35 command_builtin (list)
36 WORD_LIST *list;
44 while ((opt = internal_getopt (list, "pvV")) != -1)
62 list = loptend;
64 if (list == 0)
71 for (any_found = 0; list; list = list->next)
73 found = describe_command (list->word->word, verbose);
76 sh_notfound (list
[all...]
/macosx-10.10/libxml2-26/libxml2/
H A Dtriodef.h139 # define TRIO_ARGS1(list,a1) list a1;
140 # define TRIO_ARGS2(list,a1,a2) list a1; a2;
141 # define TRIO_ARGS3(list,a1,a2,a3) list a1; a2; a3;
142 # define TRIO_ARGS4(list,a1,a2,a3,a4) list a1; a2; a3; a4;
143 # define TRIO_ARGS5(list,a1,a2,a3,a4,a5) list a
[all...]
/macosx-10.10/libxslt-13/libxslt/libxslt/
H A Dtriodef.h137 # define TRIO_ARGS1(list,a1) list a1;
138 # define TRIO_ARGS2(list,a1,a2) list a1; a2;
139 # define TRIO_ARGS3(list,a1,a2,a3) list a1; a2; a3;
140 # define TRIO_ARGS4(list,a1,a2,a3,a4) list a1; a2; a3; a4;
141 # define TRIO_ARGS5(list,a1,a2,a3,a4,a5) list a
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dtriodef.h139 # define TRIO_ARGS1(list,a1) list a1;
140 # define TRIO_ARGS2(list,a1,a2) list a1; a2;
141 # define TRIO_ARGS3(list,a1,a2,a3) list a1; a2; a3;
142 # define TRIO_ARGS4(list,a1,a2,a3,a4) list a1; a2; a3; a4;
143 # define TRIO_ARGS5(list,a1,a2,a3,a4,a5) list a
[all...]
/macosx-10.10/emacs-93/emacs/lisp/calendar/
H A Dcal-china.el235 "An assoc list of Chinese year structures as determined by `chinese-year'.
243 The result is a list of pairs (i d), where month i begins on absolute date d,
247 The list is cached for further use."
248 (let ((list (cdr (assoc y chinese-year-cache))))
249 (if (not list)
251 (setq list (compute-chinese-year y))
253 (append chinese-year-cache (list (cons y list))))))
254 list))
256 (defun number-chinese-months (list star
[all...]
/macosx-10.10/CPANInternal-159.1/Class-Trigger-0.14/inc/Test/Builder/
H A DModule.pm39 my $list = shift;
44 while( $idx <= $#{$list} ) {
45 my $item = $list->[$idx];
48 push @imports, @{ $list->[ $idx + 1 ] };
58 @$list = @other;
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/Exceptions/
H A D15.11.7.6-001.js70 var list = [ variable
82 for (i in list)
84 var F = this[list[i]];
89 status = 'Testing DontEnum attribute of |' + list[i] + '.prototype|';
H A D15.11.7.6-002.js65 var list = [ variable
77 for (i in list)
79 var F = this[list[i]];
84 status = 'Testing DontDelete attribute of |' + list[i] + '.prototype|';
H A D15.11.7.6-003.js65 var list = [ variable
77 for (i in list)
79 var F = this[list[i]];
84 status = 'Testing ReadOnly attribute of |' + list[i] + '.prototype|';
/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/
H A DIDBPendingTransactionMonitor.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in the
60 ThreadSpecific<TransactionList>& list = transactions(); local
61 for (size_t i = 0; i < list->size(); ++i) {
62 RefPtr<IDBTransaction> transaction = list->at(i);
66 list->clear();
/macosx-10.10/apache-793/httpd/server/
H A Deoc_bucket.c38 AP_DECLARE(apr_bucket *) ap_bucket_eoc_create(apr_bucket_alloc_t *list) argument
40 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
44 b->list = list;
/macosx-10.10/apr-32/apr-util/apr-util/buckets/
H A Dapr_buckets_eos.c37 APU_DECLARE(apr_bucket *) apr_bucket_eos_create(apr_bucket_alloc_t *list) argument
39 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
43 b->list = list;
H A Dapr_buckets_flush.c37 APU_DECLARE(apr_bucket *) apr_bucket_flush_create(apr_bucket_alloc_t *list) argument
39 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
43 b->list = list;
/macosx-10.10/bash-94.1.2/bash-3.2/examples/loadables/
H A Dpush.c23 push_builtin (list)
24 WORD_LIST *list;
31 while ((opt = internal_getopt (list, "")) != -1)
40 list = loptend;
H A Dprint.c53 print_builtin (list)
54 WORD_LIST *list;
66 while ((c = internal_getopt (list, "Rnprsu:f:")) != -1)
95 for (l = list; l->next && l->next != lcurrent; l = l->next);
110 list = loptend;
120 nlist = make_word_list (w, list);
129 for (l = list; l; l = l->next)
141 r = printargs (list, ofp);
150 printargs (list, ofp)
151 WORD_LIST *list;
[all...]
/macosx-10.10/eap8021x-198/eapolclient.tproj/
H A DKeyValue.h38 KeyValueList_find(KeyValueList * list, char * key, int * where);
/macosx-10.10/libunwind-35.3/testsuite/
H A Dbacktrace.c26 extern int foo(const char** list);
29 int bar(const char** list) argument
42 if ( (list[index] != NULL) && (strcmp(functionName, list[index]) != 0) ) {
/macosx-10.10/postfix-255/postfix/src/global/
H A Duser_acl.c24 /* Authorized user name list suitable for input to string_list_init(3).
26 /* The uid to be checked against the access list.
65 STRING_LIST *list; local
89 * fails to produce a match. 2) The string-list infrastructure is not
104 list = string_list_init(MATCH_FLAG_NONE, acl);
105 if ((matched = string_list_match(list, name)) == 0) {
110 string_list_free(list);
/macosx-10.10/python_modules-40/
H A Dtar-remove.pl20 my %list = map { $_ => 1 } @_;
21 my @data = grep { !$list{$_->full_path} } @{$self->_data};
45 my @list = grep { /$match/ } map { $_->full_path } $tar->get_files();
46 $tar->remove(@list);
/macosx-10.10/tcl-105/tk/tk/tests/ttk/
H A Dtreeview.test30 if {![uplevel 1 [list expr $expr]]} {
48 #.tv configure -columns {illegal "list"value}
49 ttk::treeview .badtv -columns {illegal "list"value}
50 } -returnCodes 1 -result "list element in quotes followed by*" -match glob
84 } -result [list newnode]
94 } -result [list newnode lastnode]
102 } -result [list firstnode newnode lastnode]
108 } -result [list firstnode newnode onemore lastnode]
114 } -result [list firstnode newnode anotherone onemore lastnode]
120 } -result [list firstnod
[all...]

Completed in 362 milliseconds

1234567891011>>