Searched defs:list (Results 76 - 100 of 895) sorted by relevance

1234567891011>>

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableTryBlock.java10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
85 @Nullable List<? extends TryBlock<? extends ExceptionHandler>> list) {
86 return CONVERTER.toList(list);
84 immutableListOf( @ullable List<? extends TryBlock<? extends ExceptionHandler>> list) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
H A DImmutableDebugItem.java10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
78 public static ImmutableList<ImmutableDebugItem> immutableListOf(@Nullable Iterable<? extends DebugItem> list) { argument
79 return CONVERTER.toList(list);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstruction.java10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
146 public static ImmutableList<ImmutableInstruction> immutableListOf(Iterable<? extends Instruction> list) { argument
147 return CONVERTER.toList(list);
H A DImmutableSwitchElement.java10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
66 public static ImmutableList<ImmutableSwitchElement> immutableListOf(@Nullable List<? extends SwitchElement> list) { argument
67 return CONVERTER.toList(list);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
H A DImmutableTypeReference.java10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
61 public static ImmutableList<ImmutableTypeReference> immutableListOf(@Nullable List<? extends TypeReference> list) { argument
62 return CONVERTER.toList(list);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableEncodedValueFactory.java10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
123 (@Nullable Iterable<? extends EncodedValue> list) {
124 return CONVERTER.toList(list);
122 immutableListOf(@ullable Iterable<? extends EncodedValue> list) argument
/external/v8/test/cctest/
H A Dtest-list.cc7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
55 // Check that we can add (a reference to) an element of the list
58 // Add elements to the list to grow it to its capacity.
59 List<int, ZeroingAllocationPolicy> list(4);
60 list.Add(1);
61 list.Add(2);
62 list.Add(3);
63 list.Add(4);
66 list
159 List<int>* list = new List<int>(0); local
[all...]
/external/webrtc/src/system_wrappers/test/list/
H A Dlist.cc39 void PrintList(ListWrapper& list) argument
41 ListItem* list_item = list.First();
48 list_item = list.Next(list_item);
53 // The list should always be in ascending order
54 void ListSanity(ListWrapper& list)
56 if(list.Empty())
60 ListItem* item_iter = list.First();
68 item_iter = list.Next(item_iter);
147 // Erase the whole list
154 // Test APIs when list i
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dtrace.h17 #include "list.h"
22 struct dl_list list; member in struct:wpa_trace_ref
40 dl_list_del(&(ptr)->wpa_trace_ref_##name.list); \
/external/wpa_supplicant_8/src/utils/
H A Dtrace.h17 #include "list.h"
22 struct dl_list list; member in struct:wpa_trace_ref
40 dl_list_del(&(ptr)->wpa_trace_ref_##name.list); \
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dtrace.h17 #include "list.h"
22 struct dl_list list; member in struct:wpa_trace_ref
40 dl_list_del(&(ptr)->wpa_trace_ref_##name.list); \
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DListOrganizer.java26 private List<ElementType> list; field in class:ListOrganizer
28 public ListOrganizer(List<ElementType> list) { argument
29 this.list = list;
34 if(list.remove(element)) {
35 list.add(list.size(), element);
48 list.remove(objectToMove);
49 int refIndex = list.indexOf(reference);
50 list
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DListExtensions.cs14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
47 public static bool add( this IList list, object value ) argument
49 int count = list.Count;
50 list.Add( value );
51 return list.Count == count + 1;
55 public static void add<T>( this ICollection<T> list, T value ) argument
57 list.Add( value );
61 public static void add<T>( this List<T> list, T value ) argument
63 list
67 add( this IList list, int index, object value ) argument
73 addAll( this List<object> list, IEnumerable items ) argument
79 addAll( this IList list, IEnumerable items ) argument
85 addAll( this ICollection<T> list, IEnumerable<T> items ) argument
93 addElement( this List<object> list, object value ) argument
105 contains( this IList list, object value ) argument
111 contains( this ICollection<T> list, T value ) argument
117 elementAt( this IList<T> list, int index ) argument
123 get( this IList list, int index ) argument
129 get( this IList<T> list, int index ) argument
136 get( this List<T> list, int index ) argument
142 remove( this IList list, int index ) argument
150 remove( this IList<T> list, T item ) argument
156 set( this IList list, int index, object value ) argument
162 set( this IList<T> list, int index, T value ) argument
168 set( this List<T> list, int index, T value ) argument
174 setSize( this List<T> list, int size ) argument
206 subList( this IList list, int fromIndex, int toIndex ) argument
217 subList( this IList<T> list, int fromIndex, int toIndex ) argument
227 subList( this List<T> list, int fromIndex, int toIndex ) argument
[all...]
/external/bison/src/
H A DInadequacyList.c1 /* IELR's inadequacy list.
74 InadequacyList__prependTo (InadequacyList *self, InadequacyList **list) argument
76 InadequacyList *head_old = *list;
77 *list = self;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DStatistics.java56 * Adds the given list of items to the statistics.
58 * @param list {@code non-null;} the list of items to add
60 public void addAll(Section list) { argument
61 Collection<? extends Item> items = list.items();
H A DTypeListItem.java27 * Representation of a list of class references.
39 /** {@code non-null;} the actual list */
40 private final TypeList list; field in class:TypeListItem
45 * @param list {@code non-null;} the actual list
47 public TypeListItem(TypeList list) { argument
48 super(ALIGNMENT, (list.size() * ELEMENT_SIZE) + HEADER_SIZE);
50 this.list = list;
56 return StdTypeList.hashContents(list);
[all...]
/external/e2fsprogs/lib/et/
H A Dcom_right.c18 * notice, this list of conditions and the following disclaimer.
21 * notice, this list of conditions and the following disclaimer in the
48 com_right(struct et_list *list, long code) argument
51 for (p = list; p; p = p->next) {
59 com_right_r(struct et_list *list, long code, char *str, size_t len) argument
62 for (p = list; p; p = p->next) {
86 initialize_error_table_r(struct et_list **list, argument
95 for (end = list, et = *list; et; end = &et->next, et = et->next)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DFetchValidator.java21 * Uses an ElementParser to read a list of feature.xml files and to determine
30 //Comma separated list of features to parse
31 private String list; field in class:FetchValidator
49 validator.list =
51 validator.getListOfFeatures(validator.list);
58 getListOfFeatures(list);
88 private void getListOfFeatures(String list) { argument
90 StringTokenizer tokenizer = new StringTokenizer(list, ",");
105 // collect a list of missing plugins (or fragments), and features
144 * Gets the list
163 setList(String list) argument
[all...]
/external/fio/
H A Dflow.c8 struct flist_head list; member in struct:fio_flow
51 flow = flist_entry(n, struct fio_flow, list);
65 INIT_FLIST_HEAD(&flow->list);
69 flist_add_tail(&flow->list, flow_list);
85 flist_del(&flow->list);
H A Dprofile.h21 struct flist_head list; member in struct:profile_ops
/external/fio/t/
H A Dstest.c16 struct flist_head list; member in struct:elem
20 FLIST_HEAD(list); variable
43 flist_add_tail(&e->list, &list);
49 while (!flist_empty(&list)) {
50 e = flist_entry(list.next, struct elem, list);
53 flist_del(&e->list);
/external/google-breakpad/src/third_party/libdisasm/
H A Dx86_operand_list.c6 x86_oplist_t *list; local
12 list = insn->operands;
13 if (! list ) {
25 /* get to end of list */
26 for ( ; list->next; list = list->next )
31 list->next = op;
49 x86_oplist_t *op, *list; local
55 for ( list
73 x86_oplist_t *list; local
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DExecutionListTest.java40 private final ExecutionList list = new ExecutionList(); field in class:ExecutionListTest
45 list.add(new MockRunnable(countDownLatch), exec);
46 list.add(new MockRunnable(countDownLatch), exec);
47 list.add(new MockRunnable(countDownLatch), exec);
50 list.execute();
58 list.add(new Runnable() {
63 list.execute();
65 list.execute();
72 list.add(new Runnable() {
85 list
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUNotifier.java18 * This queues the listener list on the notification thread, which
19 * eventually dequeues the list and calls notifyListener on each
20 * listener in the list.</p>
127 public void queue(EventListener[] list) { argument
129 queue.add(list);
139 EventListener[] list;
146 list = queue.remove(0);
149 for (int i = 0; i < list.length; ++i) {
150 notifier.notifyListener(list[i]);
/external/jetty/src/java/org/eclipse/jetty/server/handler/
H A DAbstractHandlerContainer.java45 Object list = expandChildren(null,null);
46 return (Handler[])LazyList.toArray(list, Handler.class);
52 Object list = expandChildren(null,byclass);
53 return (Handler[])LazyList.toArray(list, byclass);
60 Object list = expandChildren(null,byclass);
61 if (list==null)
63 return (T)LazyList.get(list, 0);
67 protected Object expandChildren(Object list, Class<?> byClass) argument
69 return list;
73 protected Object expandHandler(Handler handler, Object list, Clas argument
[all...]

Completed in 1902 milliseconds

1234567891011>>