Searched defs:list (Results 1 - 25 of 895) sorted by relevance

1234567891011>>

/external/elfutils/src/libelf/
H A Delf_nextscn.c71 Elf_ScnList *list = scn->list; local
73 if (scn + 1 < &list->data[list->cnt])
75 else if (scn + 1 == &list->data[list->max]
76 && (list = list->next) != NULL)
78 /* If there is another element in the section list it must
80 assert (list
[all...]
/external/libvncserver/x11vnc/misc/
H A Dshm_clear7 # shm_clear list and prompt for removal of your unattached shm segments.
9 # shm_clear -l only list (all of) your shm segments and exit.
42 list() { function
64 # list only. both attached and unattached listed.
65 list $1
76 list
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Dcomplete-ant-cmd.pl42 list( restrict( $word, getArguments() ));
44 list( getBuildFiles($word) );
46 list( restrict( $word, getTargets() ));
51 sub list { subroutine
82 # Run "ant -projecthelp" to list targets. Keep a cache of results in a
/external/clang/test/CodeGen/
H A D2002-08-19-RecursiveLocals.c5 struct list { struct
7 struct list *Next;
10 static struct list B; /* Forward declare static */
11 static struct list A = { 7, &B };
12 static struct list B = { 8, &A };
14 extern struct list D; /* forward declare normal var */
16 struct list C = { 7, &D };
17 struct list D = { 8, &C };
/external/emma/core/java12/com/vladium/util/
H A DXProperties.java38 public void list (final PrintStream out) method in class:XProperties
57 public void list (final PrintWriter out) method in class:XProperties
/external/fio/
H A Dcgroup.h9 void cgroup_kill(struct flist_head *list);
13 static inline int cgroup_setup(struct thread_data *td, struct flist_head *list, argument
24 static inline void cgroup_kill(struct flist_head *list) argument
/external/libcxxabi/src/
H A Dabort_message.cpp41 va_list list; local
42 va_start(list, format);
43 vfprintf(stderr, format, list);
44 va_end(list);
/external/selinux/libsemanage/src/
H A Dutilities.h37 typedef struct list { struct
39 struct list *next;
87 /* linked list string functions
89 * either semanage_list_pop until list == NULL or semanage_list_destroy()
91 int semanage_list_push(semanage_list_t ** list, const char *data) WARN_UNUSED;
92 char *semanage_list_pop(semanage_list_t ** list);
93 void semanage_list_destroy(semanage_list_t ** list);
130 * @return a list of lines from the file (empty lines become
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
H A DEmptyRuleSet.java33 List<ConversionRule> list = new ArrayList<ConversionRule>(); field in class:EmptyRuleSet
36 return list.iterator();
/external/strace/tests/
H A Duid.c21 int *list = 0; local
36 assert((size = syscall(__NR_getgroups, 0, list)) >= 0);
37 assert(list = calloc(size + 1, sizeof(*list)));
38 assert(syscall(__NR_getgroups, size, list) == size);
H A Duid32.c21 int *list = 0; local
29 assert((size = syscall(__NR_getgroups32, 0, list)) >= 0);
30 assert(list = calloc(size + 1, sizeof(*list)));
31 assert(syscall(__NR_getgroups32, size, list) == size);
/external/strace/
H A Dxlate.el8 ;; notice, this list of conditions and the following disclaimer.
10 ;; notice, this list of conditions and the following disclaimer in the
35 (defvar xlate-list nil
39 "Grab all of the defined names in the region and save them in xlate-list."
42 (setq xlate-list nil)
47 (setq xlate-list (cons (buffer-substring (match-beginning 1)
49 xlate-list)))
53 (setq xlate-list (nreverse xlate-list)))
55 (defun build-xlate (&optional list)
[all...]
/external/toybox/toys/other/
H A Dwhich.c25 struct string_list *list; local
43 list = find_in_path(getenv("PATH"), filename);
44 if (!list) return 1;
47 while (list) {
48 if (!access(list->str, X_OK)) {
49 puts(list->str);
52 llist_traverse(list, free);
56 free(llist_pop(&list));
/external/v8/test/cctest/
H A Dtest-ast.cc7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
38 List<AstNode*>* list = new List<AstNode*>(0); local
39 CHECK_EQ(0, list->length());
46 list->Add(node);
47 CHECK_EQ(1, list->length());
48 CHECK_EQ(node, list->at(0));
49 CHECK_EQ(node, list->last());
53 list->Add(node);
55 CHECK_EQ(1 + kElements, list
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ListTest.java27 List<Integer> list; // must contain the Integers 0 to 99 in order field in class:Support_ListTest
35 list = l;
43 elem = list.get(counter);
48 assertTrue("ListTest - hashCode failed", hashCode == list.hashCode());
50 list.add(50, new Integer(1000));
51 assertTrue("ListTest - a) add with index failed--did not insert", list
55 list.get(51).equals(new Integer(50)));
58 list.get(49).equals(new Integer(49)));
60 list.set(50, new Integer(2000));
61 assertTrue("ListTest - a) set failed--did not set", list
128 t_listIterator(List<Integer> list) argument
[all...]
/external/clang/test/Analysis/
H A Dkmalloc-linux.c16 struct test **list, *t; local
19 list = kmalloc(sizeof(*list) * 10, __GFP_ZERO);
20 if (list == NULL)
24 t = list[i];
27 free(list); // no-warning
31 struct test **list, *t; local
34 list = kmalloc(sizeof(*list) * 10, 0);
35 if (list
46 struct test **list, *t; local
[all...]
H A Dmalloc-three-arg.c16 struct test **list, *t; local
19 list = malloc(sizeof(*list) * 10, NULL, M_ZERO);
20 if (list == NULL)
24 t = list[i];
27 free(list); // no-warning
31 struct test **list, *t; local
34 list = malloc(sizeof(*list) * 10, NULL, 0);
35 if (list
46 struct test **list, *t; local
[all...]
/external/clang/test/SemaCXX/
H A Dcxx11-call-to-deleted-constructor.cpp29 Matrix(const std::initializer_list<value_type>& list) = delete; // expected-note {{'Matrix' has been explicitly marked deleted here}} member in class:cva::Matrix
/external/javassist/src/main/javassist/bytecode/
H A DClassFilePrinter.java39 List list;
64 list = cf.getFields();
65 n = list.size();
67 FieldInfo finfo = (FieldInfo)list.get(i);
76 list = cf.getMethods();
77 n = list.size();
79 MethodInfo minfo = (MethodInfo)list.get(i);
92 static void printAttributes(List list, PrintWriter out, char kind) { argument
93 if (list == null)
96 int n = list
[all...]
/external/libdrm/tests/radeon/
H A Dradeon_ttm.c37 struct list_head list; local
42 list_inithead(&list);
50 list_add(&bo->list, &list);
52 LIST_FOR_EACH_ENTRY_SAFE(bo, tmp, &list, list) {
53 list_del(&bo->list);
H A Drbo.h29 #include "list.h"
32 struct list_head list; member in struct:rbo
/external/libnl/include/netlink/route/
H A Dpktloc.h34 struct nl_list_head list; member in struct:rtnl_pktloc
/external/libnl/src/cls/
H A Dutils.h23 struct nl_list_head list; member in struct:cls_module
35 struct nl_list_head list; member in struct:ematch_module
/external/mockito/src/org/mockito/internal/util/collections/
H A DIdentitySet.java12 LinkedList list = new LinkedList(); field in class:IdentitySet
15 for(Object existing:list) {
24 list.add(o);
/external/slf4j/jul-to-slf4j/src/test/java/org/slf4j/bridge/
H A DListAppender.java35 public List<LoggingEvent> list = new ArrayList<LoggingEvent>(); field in class:ListAppender
40 list.add(event);

Completed in 777 milliseconds

1234567891011>>