Searched defs:list (Results 26 - 46 of 46) sorted by relevance

12

/dalvik/dx/src/com/android/dx/rop/type/
H A DStdTypeList.java29 /** {@code non-null;} the list {@code [int]} */
32 /** {@code non-null;} the list {@code [long]} */
35 /** {@code non-null;} the list {@code [float]} */
38 /** {@code non-null;} the list {@code [double]} */
41 /** {@code non-null;} the list {@code [Object]} */
44 /** {@code non-null;} the list {@code [ReturnAddress]} */
48 /** {@code non-null;} the list {@code [Throwable]} */
52 /** {@code non-null;} the list {@code [int, int]} */
56 /** {@code non-null;} the list {@code [long, long]} */
60 /** {@code non-null;} the list {
233 toHuman(TypeList list) argument
260 hashContents(TypeList list) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DAbstractList.java34 * A counter for changes to the list.
159 SubAbstractListRandomAccess(AbstractList<E> list, int start, int end) { argument
160 super(list, start, end);
182 SubAbstractList<E> list, int offset, int length) {
185 subList = list;
241 SubAbstractList(AbstractList<E> list, int start, int end) { argument
243 fullList = list;
447 * if adding to this list is not supported.
449 * if the class of an object is inappropriate for this list.
451 * if an object cannot be added to this list
181 SubAbstractListIterator(ListIterator<E> it, SubAbstractList<E> list, int offset, int length) argument
[all...]
H A DLinkedList.java27 * LinkedList is an implementation of {@link List}, backed by a doubly-linked list.
33 * as a list if you expect your lists to contain zero or one element, but still require the
63 final LinkedList<ET> list; field in class:LinkedList.LinkIterator
68 list = object;
69 expectedModCount = list.modCount;
70 if (0 <= location && location <= list.size) {
71 // pos ends up as -1 if list is empty, it ranges from -1 to
72 // list.size - 1
74 link = list.voidLink;
75 if (location < list
[all...]
H A DProperties.java57 * {@code Properties} list which specifies the default
197 public void list(PrintStream out) { method in class:Properties
233 public void list(PrintWriter writer) { method in class:Properties
H A DCollections.java526 return new SynchronizedRandomAccessList<E>(list.subList(start,
543 return new SynchronizedList<E>(list);
551 final List<E> list; field in class:Collections.SynchronizedList
555 list = l;
560 list = l;
565 list.add(location, object);
571 return list.addAll(location, collection);
578 return list.equals(object);
584 return list.get(location);
591 return list
1088 final List<E> list; field in class:Collections.UnmodifiableList
1486 binarySearch( List<? extends Comparable<? super T>> list, T object) argument
1548 binarySearch(List<? extends T> list, T object, Comparator<? super T> comparator) argument
1649 fill(List<? super T> list, T object) argument
1795 reverse(List<?> list) argument
1855 shuffle(List<?> list) argument
1870 shuffle(List<?> list, Random random) argument
1946 sort(List<T> list) argument
1970 sort(List<T> list, Comparator<? super T> comparator) argument
1998 swap(List<?> list, int index1, int index2) argument
2030 replaceAll(List<T> list, T obj, T obj2) argument
2112 indexOfSubList(List<?> list, List<?> sublist) argument
2179 lastIndexOfSubList(List<?> list, List<?> sublist) argument
2239 public static <T> ArrayList<T> list(Enumeration<T> enumeration) { method in class:Collections
2271 synchronizedList(List<T> list) argument
2370 unmodifiableList(List<? extends E> list) argument
2565 checkedList(List<E> list, Class<E> type) argument
[all...]
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DClassCache.java59 /** null-ok; list of all declared methods */
62 /** null-ok; list of all public declared methods */
65 /** null-ok; list of all methods, both direct and inherited */
68 /** null-ok; list of all public methods, both direct and inherited */
71 /** null-ok; list of all declared fields */
74 /** null-ok; list of all public declared fields */
77 /** null-ok; list of all fields, both direct and inherited */
80 /** null-ok; list of all public fields, both direct and inherited */
147 * Gets the list of all declared methods.
149 * @return non-null; the list o
294 findMethodByName(Method[] list, String name, Class<?>[] parameterTypes) argument
498 findFieldByName(Field[] list, String name) argument
[all...]
H A DThreadGroup.java164 // Lock the children thread list
550 public void list() { method in class:ThreadGroup
553 list(0);
564 private void list(int levels) { method in class:ThreadGroup
584 this.childrenGroups[i].list(levels + 1);
H A DClass.java292 Annotation[] list = getAnnotations();
293 for (int i = 0; i < list.length; i++) {
294 if (annotationClass.isInstance(list[i])) {
295 return (A)list[i];
537 * Returns the list of member classes without performing any security checks
542 * @return the list of classes
562 * Returns the list of member classes of the given class. No security checks
619 * Returns the list of constructors without performing any security checks
624 * @return the list of constructors
631 * @param list th
636 getMatchingConstructor( Constructor<T>[] list, Class<?>[] parameterTypes) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
H A DElementImpl.java178 NodeListImpl list = new NodeListImpl();
179 getElementsByTagName(list, name);
180 return list;
183 void getElementsByTagName(NodeListImpl list, String name) { argument
185 list.add(this);
190 ((ElementImpl) node).getElementsByTagName(list, name);
196 NodeListImpl list = new NodeListImpl();
197 getElementsByTagNameNS(list, namespaceURI, localName);
198 return list;
201 void getElementsByTagNameNS(NodeListImpl list, Strin argument
[all...]
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DCopyOnWriteArrayList.java38 * created. They are not updated to reflect subsequent changes to the list. In
172 * collection that are not yet part of the list.
177 * @return the number of elements actually added to this list.
207 * element is not yet part of the list.
307 * position in the list.
335 * a given position in the list and going backwards.
483 * Removes from the specified range of this list
520 * Retains only the elements in the specified range of this list
564 * Removes specified range from this list
705 * is out of the list bound
825 private final CopyOnWriteArrayList list; field in class:CopyOnWriteArrayList.SubList
838 SubList(CopyOnWriteArrayList list, int fromIdx, int toIdx) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/io/
H A DFile.java61 * (from the various {@code list} methods) are converted to Java strings by
938 * directory are not returned as part of the list.
947 public String[] list() { method in class:File
961 * Gets a list of the files in the directory represented by this file. This
962 * list is then filtered through a FilenameFilter and the names of files
968 * directories are not returned as part of the list.
980 public String[] list(FilenameFilter filter) { method in class:File
981 String[] filenames = list();
1004 * @see #list
1008 return filenamesToFiles(list());
[all...]
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DCollectionsTest.java103 // ensure the list either contains the numbers from 0 to size-1 or
141 // answer true iff the list is filled with a counting sequence
143 // else the list with be filled starting at 0 to size - 1
153 // answer the number of checks that have been performed on the list
183 // ensure the list either contains the numbers from 0 to size-1 or
228 // answer true iff the list is filled with a counting sequence
230 // else the list with be filled starting at 0 to size - 1
240 // answer the number of checks that have been performed on the list
287 // Ensure a NPE is thrown if the list is NULL
290 fail("Expected NullPointerException for null list paramete
826 testShuffle(List list, String type, boolean random) argument
1245 testRotate(List list, String type) argument
1292 getString(List list) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
H A DElemNumber.java219 * that matches the count pattern, and constructs a list of length one containing
221 * pattern. If there is no such ancestor, it constructs an empty list. If the from
226 * When level="multiple", it constructs a list of all ancestors of the current node
227 * in document order followed by the element itself; it then selects from the list
228 * those nodes that match the count pattern; it then maps each node in the list to
234 * When level="any", it constructs a list of length one containing the number of
306 * The "format" attribute is used to control conversion of a list of
315 * The "format" attribute is used to control conversion of a list of
328 * The "format" attribute is used to control conversion of a list of
575 * Add a child to the child list
1157 formatNumberList( TransformerImpl transformer, long[] list, int contextNode) argument
[all...]
H A DElemTemplateElement.java242 * Add a child to the child list.
249 * @param newChild Child to be added to child list
251 * @return Child just added to the child list
281 * Add a child to the child list.
288 * @param elem Child to be added to child list
290 * @return Child just added to the child list
809 * The list of namespace declarations for this element only.
966 void setPrefixTable(List list) { argument
967 m_prefixTable = list;
1125 * Add or replace this namespace declaration in list
[all...]
/dalvik/libcore/icu/src/main/native/
H A DResources.cpp523 const jchar* list = ures_getStringByIndex(rootElems, 2, &listL, &status); local
541 u_strncat(patternChars, list, 1);
/dalvik/vm/
H A DSync.c53 * Unsorted, expanding list of objects.
62 Object** list; member in struct:ExpandingObjectList
130 * minimize allocations. Deletions from the list, expected to be
170 /* replace the head of the list with the new monitor */
180 * Free the monitor list. Only used when shutting the VM down.
224 LOGD("%s: monitor list has %d entries (%d live)\n",
265 * The caller must lock the thread list before calling here.
386 /* Emit the event list length, 1 byte. */
531 * Checks the wait set for circular structure. Returns 0 if the list
1024 * monitor list, s
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java86 * at the start, and the list of element handles following.
339 * Find the first index that occurs in the list that is greater than or
342 * @param list A list of integers.
348 * @return The index in the list of the slot that is higher or identical
351 protected int findGTE(int[] list, int start, int len, int value) argument
361 int c = list[mid];
371 return (low <= end && list[low] > value) ? low : -1;
414 * Get the next node identity value in the list, and call the iterator
1299 // Base the size of a new namespace list o
[all...]
/dalvik/libdex/
H A DDexSwapVerify.c158 * Make sure a list of items fits entirely within the file.
396 DexMapItem* item = pMap->list;
528 LOGE("Multiple map list items");
1325 pType = pTypeList->list;
1339 DexAnnotationSetRefList* list = ptr; local
1343 CHECK_PTR_RANGE(list, list + 1);
1344 SWAP_FIELD4(list->size);
1345 count = list->size;
1346 item = list
1360 const DexAnnotationSetRefList* list = ptr; local
[all...]
H A DDexFile.h234 u4 size; /* #of entries in list */
235 DexMapItem list[1]; /* entries */ member in struct:DexMapList
249 u4 descriptorIdx; /* index into stringIds list for type descriptor */
256 u2 classIdx; /* index into typeIds list for defining class */
265 u2 classIdx; /* index into typeIds list for defining class */
275 u4 returnTypeIdx; /* index into typeIds list for return type */
304 u4 size; /* #of entries in list */
305 DexTypeItem list[1]; /* entries */ member in struct:DexTypeList
395 DexAnnotationSetRefItem list[1]; member in struct:DexAnnotationSetRefList
661 * Get the parameter list fro
[all...]
/dalvik/tools/dmtracedump/
H A DTraceDump.c44 /* thread list in key file is not reliable, so just max out */
138 * Entry from the thread list.
158 struct MethodEntry **methods; /* list of methods in this class */
165 struct MethodEntry **methods; /* list of methods with same name */
170 * Entry from the method list.
977 * Sort the thread list entries.
992 * Sort the method list entries.
1073 * Dump list of threads.
1085 * Dump list of methods.
1406 /* Add it to the front of the list */
1445 sortTimedMethodList(TimedMethod *list, int *num) argument
1478 printInclusiveMethod(MethodEntry *method, TimedMethod *list, int numCalls, int flags) argument
[all...]
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 408 milliseconds

12