Searched refs:list (Results 151 - 175 of 3573) sorted by relevance

1234567891011>>

/macosx-10.10.1/Libinfo-459/lookup.subproj/
H A Dsi_data.c111 si_list_next(si_list_t *list) argument
113 if (list == NULL) return NULL;
114 if (list->curr >= list->count) return NULL;
116 return list->entry[list->curr++];
120 si_list_reset(si_list_t *list) argument
122 if (list != NULL) list->curr = 0;
126 si_list_retain(si_list_t *list) argument
139 si_list_release(si_list_t *list) argument
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dsuspend.c46 suspend_builtin (list)
47 WORD_LIST *list;
53 while ((opt = internal_getopt (list, "f")) != -1)
64 list = loptend;
74 no_args (list);
H A Dcaller.c36 caller_builtin (list)
37 WORD_LIST *list;
58 if (no_options (list))
60 list = loptend; /* skip over possible `--' */
62 /* If there is no argument list, then give short form: line filename. */
63 if (list == 0)
74 if (legal_number (list->word->word, &num))
87 sh_invalidnum (list->word->word);
H A Dhelp.c40 /* Print out a list of the known functions in the shell, and what they do.
41 If LIST is supplied, print out the list which matches for each pattern
44 help_builtin (list)
45 WORD_LIST *list;
53 while ((i = internal_getopt (list, "s")) != -1)
65 list = loptend;
67 if (list == 0)
76 if (glob_pattern_p (list->word->word))
78 if (list->next)
82 print_word_list (list, ", ");
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/examples/
H A Drltest.c78 if (strcmp (temp, "list") == 0)
80 HIST_ENTRY **list; local
83 list = history_list ();
84 if (list)
86 for (i = 0; list[i]; i++)
87 fprintf (stderr, "%d: %s\r\n", i, list[i]->line);
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Ddomain_list.c5 /* match a host or domain name against a pattern list
13 /* int domain_list_match(list, name)
14 /* DOMAIN_LIST *list;
17 /* void domain_list_free(list)
18 /* DOMAIN_LIST *list;
22 /* This module implements tests for list membership of a host or
30 /* A host name matches a domain list when its name appears in the
31 /* list of domain patterns, or when any of its parent domains appears
32 /* in the list of domain patterns. The matching process is case
44 /* zero, with list
99 DOMAIN_LIST *list; local
[all...]
H A Dnamadr_list.c5 /* name/address list membership
13 /* int namadr_list_match(list, name, addr)
14 /* NAMADR_LIST *list;
18 /* void namadr_list_free(list)
19 /* NAMADR_LIST *list;
23 /* This module implements tests for list membership of a
26 /* A list pattern specifies a host name, a domain name,
37 /* A host matches a list when its name or address matches
50 /* zero with list->error set to a non-zero dictionary error
54 /* The second argument is a list o
106 NAMADR_LIST *list; local
[all...]
H A Dstring_list.c5 /* match a string against a pattern list
13 /* int string_list_match(list, name)
14 /* STRING_LIST *list;
17 /* void string_list_free(list)
18 /* STRING_LIST *list;
22 /* This module implements tests for list membership of a string.
29 /* A string matches a string list when it appears in the list of
38 /* zero with list->error set to a non-zero dictionary error
42 /* The second argument specifies a list o
92 STRING_LIST *list; local
[all...]
H A Daddr_match_list.c5 /* address list membership
13 /* int addr_match_list_match(list, addr)
14 /* ADDR_MATCH_LIST *list;
17 /* void addr_match_list_free(list)
18 /* ADDR_MATCH_LIST *list;
22 /* This module implements tests for list membership of a
25 /* A list pattern specifies an internet address, or a network/mask
34 /* A host matches a list when its address matches a pattern.
41 /* returns zero with list->error set to a non-zero dictionary
45 /* The second argument is a list o
99 ADDR_MATCH_LIST *list; local
[all...]
/macosx-10.10.1/swig-12/Lib/perl5/
H A Dstd_list.i7 * SWIG typemaps for std::list types
17 // std::list
19 // The aim of all that follows would be to integrate std::list with
25 // -- f(std::list<T>), f(const std::list<T>&), f(const std::list<T>*):
27 // previously wrapped std::list<T> can be passed.
28 // -- f(std::list<T>&), f(std::list<T>*):
29 // the parameter must be modified; therefore, only a wrapped std::list
[all...]
/macosx-10.10.1/tcl-105/tk/tk/tests/ttk/
H A Dtreetags.test13 if {![uplevel 1 [list expr $expr]]} {
51 test treetags-1.1 "Bad tag list" -body {
52 $tv item item1 -tags {bad {list}here bad}
54 } -returnCodes error -result "list element in braces *" -match glob
56 test treetags-1.2 "Good tag list" -body {
62 } -result [list tag1]
66 set result [list]
75 } -result [list \
80 list [$tv tag has tag1] [$tv tag has tag2] [$tv tag has tag3]
83 } -result [list [lis
[all...]
/macosx-10.10.1/bootp-298/bootplib/
H A Dnbsp.c50 NBSPList_count(NBSPListRef list) argument
52 dynarray_t * dlist = (dynarray_t *)list;
58 NBSPList_element(NBSPListRef list, int i) argument
60 dynarray_t * dlist = (dynarray_t *)list;
67 NBSPList_print(NBSPListRef list) argument
69 dynarray_t * dlist = (dynarray_t *)list;
82 dynarray_t * list; local
85 list = *((dynarray_t * *)l);
86 if (list == NULL)
88 dynarray_free(list);
161 dynarray_t * list = NULL; local
281 NBSPListRef list; local
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/drb/
H A Dacl.rb17 # list = %w[
30 # acl = ACL.new(list, ACL::DENY_ALLOW)
72 list = str.split('.').collect { |s|
75 list.join("\\.")
114 # A list of ACLEntry objects. Used to implement the allow and deny halves
123 @list = []
129 # Matches +addr+ against each ACLEntry in this list.
132 @list.each do |e|
141 # Adds +str+ as an ACLEntry in this list
144 @list
[all...]
/macosx-10.10.1/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Daliaslist.c68 aliasitem_t first_item; /* first item of the list */
72 additem_to_top(idn__aliaslist_t list,
76 additem_to_bottom(idn__aliaslist_t list,
85 static void dump_list(idn__aliaslist_t list);
105 idn__aliaslist_destroy(idn__aliaslist_t list) { argument
111 assert(list != NULL);
113 current = list->first_item;
125 free(list);
129 idn__aliaslist_aliasfile(idn__aliaslist_t list, const char *path) { argument
150 r = additem_to_bottom(list, alia
171 idn__aliaslist_additem(idn__aliaslist_t list, const char *pattern, const char *encoding, int first_item) argument
182 additem_to_top(idn__aliaslist_t list, const char *pattern, const char *encoding) argument
210 additem_to_bottom(idn__aliaslist_t list, const char *pattern, const char *encoding) argument
244 idn__aliaslist_find(idn__aliaslist_t list, const char *pattern, char **encodingp) argument
338 dump_list(idn__aliaslist_t list) argument
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/eshell/
H A Dem-alias.el130 (defvar eshell-command-aliases-list nil
131 "A list of command aliases currently defined by the user.
132 Each element of this alias is a list of the form:
139 Note: this list should not be modified in your '.emacs' file. Rather,
144 (put 'eshell-command-aliases-list 'risky-local-variable t)
153 (eshell-read-aliases-list)
156 (add-to-list 'eshell-complex-commands 'eshell-command-aliased-p))
159 (assoc name eshell-command-aliases-list))
162 "Define an ALIAS in the user's alias list using DEFINITION."
164 (eshell-for alias eshell-command-aliases-list
[all...]
H A Dem-script.el42 "*A list of functions to call when loading `eshell-script'."
80 (list 'eshell-commands
86 (list 'eshell-commands
103 (list 'let
104 (list (list 'eshell-command-name (list 'quote file))
105 (list 'eshell-command-arguments
106 (list 'quote args)))
109 (setq cmd (list 'eshel
[all...]
/macosx-10.10.1/ruby-106/ruby/misc/
H A Drdoc-mode.el37 (list (if current-prefix-arg 'full))))
58 (list
59 (list "^=([^=\r\n].*)?$"
61 (list "^==([^=\r\n].*)?$"
63 (list "^===([^=\r\n].*)?$"
65 (list "^====+.*$"
67 (list "\\(^\\|[ \t\v\f]\\)\\(\\*\\(\\sw\\|[-_:]\\)+\\*\\)\\($\\|[ \t\v\f]\\)"
69 (list "\\(^\\|[ \t\v\f]\\)\\(_\\(\\sw\\|[-_:]\\)+_\\)\\($\\|[ \t\v\f]\\)"
71 (list "\\(^\\|[ \t\v\f]\\)\\(\\+\\(\\sw\\|[-_:]\\)+\\+\\)\\($\\|[ \t\v\f]\\)"
73 (list "<e
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dulist.h19 U_CAPI void U_EXPORT2 ulist_addItemEndList(UList *list, const void *data, UBool forceDelete, UErrorCode *status);
21 U_CAPI void U_EXPORT2 ulist_addItemBeginList(UList *list, const void *data, UBool forceDelete, UErrorCode *status);
23 U_CAPI UBool U_EXPORT2 ulist_containsString(const UList *list, const char *data, int32_t length);
25 U_CAPI void *U_EXPORT2 ulist_getNext(UList *list);
27 U_CAPI int32_t U_EXPORT2 ulist_getListSize(const UList *list);
29 U_CAPI void U_EXPORT2 ulist_resetList(UList *list);
31 U_CAPI void U_EXPORT2 ulist_deleteList(UList *list);
/macosx-10.10.1/ruby-106/ruby/test/psych/
H A Dtest_omap.rb33 list = [["a", "b"], ["b", "c"]]
34 map = Psych::Omap[*list.flatten]
35 assert_equal list, map.to_a
49 list = [["a", "b"], ["b", "c"]]
50 map = Psych::Omap[*list.flatten]
55 list = [["a", "b"], ["c", "d"]]
61 assert_equal list, map.to_a
66 list = [["a", "b"], ["c", "d"]]
72 assert_equal list, map.to_a
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.1/ruby-106/ruby/tool/
H A Dvpath.rb6 def initialize(*list)
7 @list = list
13 list.inspect
20 list.each do |dir|
68 def list method in class:VPath
72 @list << dirs
74 raise "--path-separator option is needed for vpath list" unless @separator
76 @list.concat(dirs[0].split(@separator))
80 @list
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/library/lib/
H A Dhtmllib.xotcl67 ## The HtmlBuilder object has two instance variables. The document Tcl list
68 ## contains the document as a list of strings. The document is stored as a list
77 set document [list]
86 set document [list]
131 set argParamList [concat $argParamList [list "ID" "CLASS" "STYLE" "TITLE" "LANG" "DIR"]]
345 set attributes [HtmlBuilder parseArguments $args [list] [list]]
366 [list "HREF" "NAME" "TARGET"] [list]]
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKBackForwardList.mm8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
77 RefPtr<API::Array> list = _list->backList();
78 if (!list)
81 return [wrapper(*list.release().leakRef()) autorelease];
86 RefPtr<API::Array> list = _list->forwardList();
87 if (!list)
90 return [wrapper(*list.release().leakRef()) autorelease];
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclThread.c30 char **list; /* List of pointers */ member in struct:__anon12597
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.1/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...]

Completed in 344 milliseconds

1234567891011>>