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

1234567891011>>

/external/clang/test/TableGen/
H A DDiagnosticBase.inc15 class DiagGroup<string Name, list<DiagGroup> subgroups = []> {
17 list<DiagGroup> SubGroups = subgroups;
/external/e2fsprogs/e2fsck/
H A Dprofile_helpers.h16 (char **list);
/external/dropbear/
H A Dscpmisc.c8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
154 if (args->list == NULL) {
160 args->list = xrealloc(args->list, nalloc * sizeof(char *));
162 args->list[args->num++] = cp;
163 args->list[args->num] = NULL;
182 xfree(args->list[which]);
183 args->list[which] = cp;
191 if (args->list !
[all...]
/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...]
H A DAttributeInfo.java188 static int getLength(ArrayList list) { argument
190 int n = list.size();
192 AttributeInfo attr = (AttributeInfo)list.get(i);
199 static AttributeInfo lookup(ArrayList list, String name) { argument
200 if (list == null)
203 ListIterator iterator = list.listIterator();
213 static synchronized void remove(ArrayList list, String name) { argument
214 if (list == null)
217 ListIterator iterator = list.listIterator();
225 static void writeAll(ArrayList list, DataOutputStrea argument
238 copyAll(ArrayList list, ConstPool cp) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DPeekingIteratorTest.java76 private <T> void actsLikeIteratorHelper(final List<T> list) { argument
77 // Check with modifiable copies of the list
78 new PeekingIteratorTester<T>(list).test();
81 new IteratorTester<T>(list.size() * 2 + 2, UNMODIFIABLE, list,
84 Iterator<T> iterator = Collections.unmodifiableList(list).iterator();
110 List<?> list = Collections.emptyList();
111 Iterator<?> iterator = list.iterator();
121 List<?> list = Lists.newArrayList("A", "B", "C");
122 Iterator<?> iterator = list
[all...]
H A DSortedIterablesTest.java36 List<Integer> list = Arrays.asList(3, 9, 8, 4, 5, 2, 2, 8);
37 ASSERT.that(SortedIterables.sortedCounts(Ordering.natural(), list))
46 List<Integer> list = Arrays.asList(3, 9, 8, 4, 5, 2, 2, 8);
47 ASSERT.that(SortedIterables.sortedCounts(Ordering.natural(), list.iterator()))
/external/stlport/stlport/stl/
H A D_list.c87 # define list _STLP_PTR_IMPL_NAME(list) macro
89 # define list _STLP_NON_DBG_NAME(list) macro
95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
107 list<_Tp, _Alloc>& list<_Tp, _Alloc>::operator=(const list<_Tp, _Alloc>& __x) {
124 void list<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val) {
134 #if !defined (list)
239 # undef list macro
[all...]
/external/linux-tools-perf/util/include/linux/added/
H A Dlist.h11 static inline void INIT_LIST_HEAD(struct list_head *list) argument
13 list->next = list;
14 list->prev = list;
20 * This is only for internal list manipulation where we know
42 * @head: list head to add it after
56 * @head: list head to add it before
67 * Delete a list entry by making the prev/next entries
70 * This is only for internal list manipulatio
134 list_move(struct list_head *list, struct list_head *head) argument
145 list_move_tail(struct list_head *list, struct list_head *head) argument
157 list_is_last(const struct list_head *list, const struct list_head *head) argument
214 __list_cut_position(struct list_head *list, struct list_head *head, struct list_head *entry) argument
240 list_cut_position(struct list_head *list, struct list_head *head, struct list_head *entry) argument
254 __list_splice(const struct list_head *list, struct list_head *prev, struct list_head *next) argument
273 list_splice(const struct list_head *list, struct list_head *head) argument
285 list_splice_tail(struct list_head *list, struct list_head *head) argument
299 list_splice_init(struct list_head *list, struct list_head *head) argument
316 list_splice_tail_init(struct list_head *list, struct list_head *head) argument
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/
H A DJcaCertStore.java37 List list = new ArrayList(collection.size());
49 list.add(new X509CertificateHolder(cert.getEncoded()));
58 list.add((X509CertificateHolder)o);
62 return list;
/external/chromium/chrome/browser/extensions/
H A Dextension_info_private_api_chromeos.cc32 ListValue* list = NULL; local
33 EXTENSION_FUNCTION_VALIDATE(args_->GetList(0, &list));
35 for (size_t i = 0; i < list->GetSize(); ++i) {
37 EXTENSION_FUNCTION_VALIDATE(list->GetString(i, &property_name));
/external/chromium/net/disk_cache/
H A Drankings.cc26 // This class provides a simple lock for the LRU list of rankings. Whenever an
27 // entry is to be inserted or removed from the list, a transaction object should
38 Operation op, int list);
46 disk_cache::Addr addr, Operation op, int list)
51 data_->operation_list = list;
235 void Rankings::Insert(CacheRankingsBlock* node, bool modified, List list) { argument
236 Trace("Insert 0x%x l %d", node->address().value(), list);
238 Addr& my_head = heads_[list];
239 Addr& my_tail = tails_[list];
240 Transaction lock(control_data_, node->address(), INSERT, list);
45 Transaction(volatile disk_cache::LruData* data, disk_cache::Addr addr, Operation op, int list) argument
305 Remove(CacheRankingsBlock* node, List list, bool strict) argument
386 UpdateRank(CacheRankingsBlock* node, bool modified, List list) argument
400 GetNext(CacheRankingsBlock* node, List list) argument
433 GetPrev(CacheRankingsBlock* node, List list) argument
550 WriteHead(List list) argument
554 WriteTail(List list) argument
728 CheckLinks(CacheRankingsBlock* node, CacheRankingsBlock* prev, CacheRankingsBlock* next, List* list) argument
780 CheckList(List list) argument
874 IncrementCounter(List list) argument
883 DecrementCounter(List list) argument
[all...]
/external/clang/include/clang/Rewrite/Core/
H A DTokenRewriter.h21 #include <list>
29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
34 typedef std::list<Token>::iterator TokenRefTy;
54 typedef std::list<Token>::const_iterator token_iterator;
/external/doclava/src/com/google/doclava/
H A DParsedTagInfo.java44 ArrayList<TagInfo> list = new ArrayList<TagInfo>();
50 list.add(t[j]);
53 return list.toArray(new TagInfo[list.size()]);
/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/iproute2/testsuite/tests/
H A Ddsmark.t25 qdisc list dev $DEV
28 class list dev $DEV parent 10:0
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DNode.java43 protected String toString(List list) argument
47 for(Iterator i = list.iterator(); i.hasNext();)
66 protected <T> List<T> cloneList(List<T> list) argument
70 for(T n : list)
/external/jsilver/src/org/clearsilver/
H A DCSUtil.java36 * @return A list of loadpaths in order in which to search.
47 * @param allowEmpty if {@code true} then this will return an empty list when
51 * @return A list of loadpaths in order in which to search.
56 List<String> list = new LinkedList<String>();
60 return list;
68 list.add(lpHdf.objValue());
70 return list;
74 * Given an ordered list of directories to look in, locate the specified file.
76 * @param loadpaths the ordered list of paths to search.
/external/kernel-headers/original/linux/
H A Dcdev.h9 struct list_head list; member in struct:cdev
/external/linux-tools-perf/util/
H A Dstrfilter.h7 #include <linux/list.h>
9 #include "util/include/linux/list.h"
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DAcceptParser.java69 AcceptList list = new AcceptList();
88 list.add(accept);
105 list.add(accept);
108 return list;
H A DAllowEventsParser.java69 AllowEventsList list = new AllowEventsList();
82 list.add(allowEvents);
93 list.add(allowEvents);
99 return list;
H A DAllowParser.java68 AllowList list = new AllowList();
81 list.add(allow);
92 list.add(allow);
98 return list;
H A DCallInfoParser.java67 CallInfoList list=new CallInfoList();
85 list.add(callInfo);
102 list.add(callInfo);
106 return list;
H A DContentEncodingParser.java71 ContentEncodingList list = new ContentEncodingList();
87 list.add(cl);
98 list.add(cl);
102 return list;

Completed in 583 milliseconds

1234567891011>>