Searched defs:list (Results 276 - 300 of 895) sorted by relevance

<<11121314151617181920>>

/external/e2fsprogs/e2fsck/
H A Dea_refcount.c35 struct ea_refcount_el *list; member in struct:ea_refcount
43 if (refcount->list)
44 ext2fs_free_mem(&refcount->list);
67 retval = ext2fs_get_mem(bytes, &refcount->list);
70 memset(refcount->list, 0, bytes);
90 struct ea_refcount_el *list; local
92 list = refcount->list;
94 if (list[i].ea_count) {
96 list[
282 struct ea_refcount_el *list; local
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Ddblist.c2 * dblist.c -- directory block list functions
55 * helper function for making a new directory block list (for
60 struct ext2_db_entry2 *list,
92 &dblist->list);
96 if (list)
97 memcpy(dblist->list, list, len);
99 memset(dblist->list, 0, len);
112 * Initialize a directory block list
133 * Copy a directory block list
58 make_dblist(ext2_filsys fs, ext2_ino_t size, ext2_ino_t count, struct ext2_db_entry2 *list, ext2_dblist *ret_dblist) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
H A Dsearchcvs.php248 $list = array(); variable
254 $list[] = $word;
262 $list[] = addslashes($word);
265 return $list;
/external/elfutils/src/libelf/
H A Delf32_updatefile.c85 /* Insert the sections in the list into the provided array and sort
92 sort_sections (Elf_Scn **scns, Elf_ScnList *list) argument
96 for (size_t cnt = 0; cnt < list->cnt; ++cnt)
97 *scnp++ = &list->data[cnt];
98 while ((list = list->next) != NULL);
208 Elf_ScnList *list = &elf->state.ELFW(elf,LIBELFBITS).scns;
223 sort_sections (scns, list);
251 multiple data segments in the list only the first can be
652 Elf_ScnList *list local
[all...]
/external/fio/
H A Ddiskutil.h42 struct flist_head list; member in struct:disk_util
44 * list using this head.
61 * the disk_list list, i.e. for memory allocation and
62 * de-allocation, etc. Whereas this list should be used only
/external/fio/t/
H A Dgenzipf.c29 struct flist_head list; member in struct:node
63 n = flist_entry(entry, struct node, list);
77 flist_add_tail(&n->list, l);
/external/google-breakpad/src/client/mac/handler/
H A Dbreakpad_nlist_64.cc31 * notice, this list of conditions and the following disclaimer.
33 * notice, this list of conditions and the following disclaimer in the
134 __breakpad_fdnlist(int fd, nlist_type *list, const char **symbolNames,
138 * nlist - retreive attributes from name list (string table version)
143 nlist_type *list,
149 int n = __breakpad_fdnlist(fd, list, symbolNames, cpu_type);
155 struct nlist *list,
158 return breakpad_nlist_common(name, list, symbolNames, cpu_type);
162 struct nlist_64 *list,
165 return breakpad_nlist_common(name, list, symbolName
142 breakpad_nlist_common(const char *name, nlist_type *list, const char **symbolNames, cpu_type_t cpu_type) argument
154 breakpad_nlist(const char *name, struct nlist *list, const char **symbolNames, cpu_type_t cpu_type) argument
161 breakpad_nlist(const char *name, struct nlist_64 *list, const char **symbolNames, cpu_type_t cpu_type) argument
171 __breakpad_fdnlist(int fd, nlist_type *list, const char **symbolNames, cpu_type_t cpu_type) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DConstraints.java203 * Returns a constrained view of the specified list, using the specified
204 * constraint. Any operations that add new elements to the list will call the
208 * <p>If {@code list} implements {@link RandomAccess}, so will the returned
209 * list. The returned list is not serializable.
211 * @param list the list to constrain
213 * @return a constrained view of the list
216 List<E> list, Constraint<? super E> constraint) {
217 return (list instanceo
215 constrainedList( List<E> list, Constraint<? super E> constraint) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableList.java47 // Casting to any type is safe because the list will never hold any elements.
144 ImmutableCollection<E> list = (ImmutableCollection<E>) elements;
145 return list.asList();
163 ImmutableList<E> list = new SingletonImmutableList<E>((E) elements[0]);
164 return list;
172 static <E> ImmutableList<E> unsafeDelegateList(List<? extends E> list) { argument
173 switch (list.size()) {
177 return new SingletonImmutableList<E>(list.iterator().next());
180 List<E> castedList = (List<E>) list;
186 * Views the array as an immutable list
[all...]
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
H A DHelpers.java52 List<E> list = new ArrayList<E>();
53 addAll(list, elements);
54 return list;
110 static <T> Iterable<T> reverse(final List<T> list) { argument
114 final ListIterator<T> listIter = list.listIterator(list.size());
302 List<E> list = new ArrayList<E>();
304 list.add(e);
306 return list;
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DHelpers.java54 List<E> list = new ArrayList<E>();
55 addAll(list, elements);
56 return list;
112 static <T> Iterable<T> reverse(final List<T> list) { argument
116 final ListIterator<T> listIter = list.listIterator(list.size());
304 List<E> list = new ArrayList<E>();
306 list.add(e);
308 return list;
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DExecutionListBenchmark.java65 final ExecutionList list = new ExecutionList();
67 list.add(runnable, executor);
71 list.execute();
75 return list;
83 final ExecutionListCAS list = new ExecutionListCAS();
85 list.add(runnable, executor);
89 list.execute();
93 return list;
101 final NewExecutionListQueue list = new NewExecutionListQueue();
103 list
157 private ExecutionListWrapper list; field in class:ExecutionListBenchmark
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DObjectArraysTest.java133 private void doTestToArrayImpl1(List<Integer> list) { argument
134 Object[] reference = list.toArray();
135 Object[] target = ObjectArrays.toArrayImpl(list);
153 private void doTestToArrayImpl2(List<Integer> list, Integer[] array1, argument
157 Object[] reference = list.toArray(array1);
159 Object[] target = ObjectArrays.toArrayImpl(list, array2);
/external/guava/guava-tests/test/com/google/common/reflect/
H A DTypesTest.java202 void withoutBound(List<?> list) {} argument
205 void withObjectBound(List<? extends Object> list) {} argument
208 void withUpperBound(List<? extends int[][]> list) {} argument
211 void withLowerBound(List<? super String[][]> list) {} argument
280 <T> void withoutBound(List<T> list) {} argument
283 <T extends Object> void withObjectBound(List<T> list) {} argument
286 <T extends Number & CharSequence> void withUpperBound(List<T> list) {} argument
/external/icu/icu4c/source/common/
H A Dcaniter.cpp171 UnicodeString *list = NULL; local
203 list = new UnicodeString[source.length()];
204 if (list == 0) {
221 source.extract(start, i-start, list[list_length++]); // add up to i
225 source.extract(start, i-start, list[list_length++]); // add last one
246 pieces[i] = getEquivalents(list[i], pieces_lengths[i], status);
249 delete[] list;
253 if (list != NULL) {
254 delete[] list;
/external/icu/icu4c/source/i18n/
H A Dcpdtrans.cpp62 * @param forward if false, does the list in reverse order, and
92 UVector& list,
100 init(list, UTRANS_FORWARD, FALSE, status);
108 CompoundTransliterator::CompoundTransliterator(UVector& list, argument
116 init(list, UTRANS_FORWARD, FALSE, status);
120 CompoundTransliterator::CompoundTransliterator(UVector& list, argument
127 init(list, UTRANS_FORWARD, FALSE, status);
156 UVector list(status);
160 regenID, list, compoundFilter)) {
166 TransliteratorIDParser::instantiateList(list, statu
91 CompoundTransliterator(const UnicodeString& newID, UVector& list, UnicodeFilter* adoptedFilter, int32_t anonymousRBTs, UParseError& , UErrorCode& status) argument
188 init(UVector& list, UTransDirection direction, UBool fixReverseID, UErrorCode& status) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationFastLatinBuilder.java42 private static final int binarySearch(long[] list, int limit, long ce) { argument
47 int cmp = compareInt64AsUnsigned(ce, list[i]);
219 // Write a contraction list with only a default value if there is no real contraction.
226 // Terminate the last contraction list.
557 // We encode all contraction lists so that the first word of a list
558 // terminates the previous list, and we only need one additional terminator at the end.
587 // Note: There is a chance that this new contraction list is the same as a previous one,
588 // and if so, then we could truncate the result and reuse the other list.
594 // Terminate the last contraction list.
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTextTrieMap.java351 private List<V> addValue(List<V> list, V value) { argument
352 if (list == null) {
353 list = new LinkedList<V>();
355 list.add(value);
356 return list;
/external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
H A DICUCurrencyMetaInfo.java173 // Utility, just because I don't like the n^2 behavior of using list.contains to build a
174 // list of unique items. If we used java 6 we could use their class for this.
177 private List<T> list = new ArrayList<T>(); field in class:ICUCurrencyMetaInfo.UniqueList
185 list.add(value);
190 List<T> list() { method in class:ICUCurrencyMetaInfo.UniqueList
191 return Collections.unmodifiableList(list);
226 return result.list();
243 return result.list();
272 * Return the list of unique items in the order in which we encountered them for the
273 * first time. The returned list i
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliteratorIDParser.java333 * @param list OUTPUT parameter that receives a list of SingleID
344 List<SingleID> list,
348 list.clear();
374 list.add(single);
376 list.add(0, single);
384 if (list.size() == 0) {
389 for (int i=0; i<list.size(); ++i) {
390 SingleID single = list.get(i);
392 if (i != (list
342 parseCompoundID(String id, int dir, StringBuffer canonID, List<SingleID> list, UnicodeSet[] globalFilter) argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DICUServiceThreadTest.java329 private final String[] list; field in class:ICUServiceThreadTest.GetListThread
332 GetListThread(String name, ICUService service, long delay, String[] list, TestLog log) { argument
335 this.list = list;
340 n = list.length - 1;
342 String id = list[n];
/external/iproute2/ip/
H A Dipmaddr.c196 static void print_maddr(FILE *fp, struct ma_info *list) argument
200 if (list->addr.family == AF_PACKET) {
202 fprintf(fp, "link %s", ll_addr_n2a((unsigned char*)list->addr.data,
203 list->addr.bytelen, 0,
207 switch(list->addr.family) {
215 fprintf(fp, "family %d ", list->addr.family);
219 format_host(list->addr.family,
221 list->addr.data,
224 if (list->users != 1)
225 fprintf(fp, " users %d", list
231 print_mlist(FILE *fp, struct ma_info *list) argument
249 struct ma_info *list = NULL; local
[all...]
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java145 ArrayList list = equivalences;
147 if (list == list2)
153 add(list, tn);
154 tn.equivalences = list;
158 private static void add(ArrayList list, TypeData td) { argument
159 int n = list.size();
161 if (list.get(i) == td)
164 list.add(td);
/external/javassist/src/main/javassist/expr/
H A DExpr.java109 /* getDeclaredBehaviors() returns a list of methods/constructors.
110 * Although the list is cached in a CtClass object, it might be
126 * Returns the list of exceptions that the expression may throw. This list
134 LinkedList list = new LinkedList();
145 addClass(list, pool.get(cp.getClassInfo(t)));
161 addClass(list, pool.get(exceptions[i]));
168 return (CtClass[])list.toArray(new CtClass[list.size()]);
171 private static void addClass(LinkedList list, CtClas argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/servlets/
H A DProxyServlet.java85 * <li>whiteList - comma-separated list of allowed proxy destinations
86 * <li>blackList - comma-separated list of forbidden proxy destinations
276 * Helper function to process a parameter value containing a list of new entries and initialize the specified host map.
278 * @param list
279 * comma-separated list of new entries
283 private void parseList(String list, HostMap<PathMap> hostMap) argument
285 if (list != null && list.length() > 0)
290 StringTokenizer entries = new StringTokenizer(list,",");

Completed in 794 milliseconds

<<11121314151617181920>>