HomeSort by relevance Sort by last modified time
    Searched defs:list (Results 101 - 125 of 4851) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/syslinux/gpxe/src/include/gpxe/
process.h 12 #include <gpxe/list.h>
18 /** List of processes */
19 struct list_head list; member in struct:process
41 * Initialise process without adding to process list
50 INIT_LIST_HEAD ( &process->list );
56 * Initialise process and add to process list
75 * Permanent processes will be automatically added to the process list
  /external/tensorflow/tensorflow/contrib/input_pipeline/kernels/
input_pipeline_kernels.cc 22 // This Op takes in a list of strings and a counter (ref). It increments the
23 // counter by 1 and returns the element at that position in the list (circling
30 const Tensor* list; variable
31 OP_REQUIRES_OK(ctx, ctx->input("list", &list));
32 int64 num_elements = list->NumElements();
33 auto list_flat = list->flat<string>();
  /external/wpa_supplicant_8/src/wps/
wps_upnp.h 14 #include "utils/list.h"
21 struct dl_list list; member in struct:upnp_wps_peer
  /frameworks/base/cmds/incidentd/tests/
section_list.cpp 13 Privacy* list[] = {&sub_field_1, &sub_field_2, NULL}; member in namespace:android::os::incidentd
15 Privacy field_0{0, 11, list, DEST_EXPLICIT, NULL};
  /frameworks/base/core/java/com/google/android/collect/
Lists.java 23 * Provides static methods for creating {@code List} instances easily, and other
31 * <p><b>Note:</b> if you only need an <i>immutable</i> empty List, use
47 * <p>{@code List<Base> list = Lists.newArrayList(sub1, sub2);}
53 * <p>{@code List<Base> list = Lists.<Base>newArrayList(sub1, sub2);}
55 * @param elements the elements that the list should contain, in order
60 ArrayList<E> list = new ArrayList<E>(capacity); local
61 Collections.addAll(list, elements);
62 return list;
    [all...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
GenericAdapterTest.java 23 import java.util.List;
36 List<String> list = Arrays.asList(arr); local
37 getBinder().setList(list);
44 assertEquals(list, getBinder().view5.getList());
45 assertEquals(list, getBinder().view6.getList());
  /frameworks/support/compat/src/main/java/androidx/core/content/
MimeTypeFilter.java 132 * @return The list of matching MIME types, or empty array if nothing matches.
141 final ArrayList<String> list = new ArrayList<>(); local
146 list.add(mimeType);
150 return list.toArray(new String[list.size()]);
  /libcore/benchmarks/src/benchmarks/
ArrayListIterationBenchmark.java 32 ArrayList<Foo> list = mList; local
33 int len = list.size();
35 sum += list.get(i).mSplat;
  /packages/apps/Car/libs/car-list/src/com/android/car/list/
SimpleTextLineItem.java 17 package com.android.car.list;
  /packages/apps/Contacts/src/com/android/contacts/list/
OnContactBrowserActionListener.java 16 package com.android.contacts.list;
21 * Action callbacks that can be sent by a contact list.
50 * Invoked if the requested selected contact is not found in the list.
OnContactPickerActionListener.java 16 package com.android.contacts.list;
OnPhoneNumberPickerActionListener.java 16 package com.android.contacts.list;
  /packages/apps/Dialer/java/com/android/contacts/common/list/
OnPhoneNumberPickerActionListener.java 16 package com.android.contacts.common.list;
  /packages/apps/Dialer/java/com/android/dialer/app/list/
OnDragDropListener.java 17 package com.android.dialer.app.list;
OnListFragmentScrolledListener.java 17 package com.android.dialer.app.list;
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/list/
HeaderViewHolder.java 17 package com.android.dialer.searchfragment.list;
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
CollectionUtils.java 51 final ArrayList<E> list = new ArrayList<>(end - start); local
53 list.add(array[i]);
55 return list;
  /dalvik/dx/src/com/android/dx/rop/cst/
CstCallSite.java 43 List list = new List(3 + optionalArguments.size()); local
44 list.set(0, bootstrapHandle);
45 list.set(1, nat.getName());
46 list.set(2, new CstProtoRef(Prototype.fromDescriptor(nat.getDescriptor().getString())));
49 list.set(i + 3, optionalArguments.get(i));
52 list.setImmutable();
53 return new CstCallSite(list);
59 * @param list {@code non-null;} the actual list of content
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
SortedListsTest.java 23 import java.util.List;
37 void assertModelAgrees(List<Integer> list, Integer key, int answer,
41 if (list.contains(key)) {
42 assertEquals(list.indexOf(key), answer);
47 if (list.contains(key)) {
48 assertEquals(list.lastIndexOf(key), answer);
53 if (list.contains(key)) {
54 assertEquals(key, list.get(answer));
59 if (list.contains(key))
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
ExecutionListBenchmark.java 63 final ExecutionList list = new ExecutionList();
65 list.add(runnable, executor);
69 list.execute();
73 return list;
81 final ExecutionListCAS list = new ExecutionListCAS();
83 list.add(runnable, executor);
87 list.execute();
91 return list;
99 final NewExecutionListQueue list = new NewExecutionListQueue();
101 list.add(runnable, executor)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
SortedListsTest.java 25 import java.util.List;
39 void assertModelAgrees(List<Integer> list, Integer key, int answer,
43 if (list.contains(key)) {
44 assertEquals(list.indexOf(key), answer);
49 if (list.contains(key)) {
50 assertEquals(list.lastIndexOf(key), answer);
55 if (list.contains(key)) {
56 assertEquals(key, list.get(answer));
61 if (list.contains(key))
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
ModuleTest.java 14 import java.util.List;
69 public static List<TestDataPair> getTestData(String moduleLocation, String moduleName) throws Exception {
70 List<TestDataPair> list = new ArrayList<TestDataPair>(); local
78 list.add(new TestDataPair(t, settings));
81 return list;
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
ModuleTest.java 13 import java.util.List;
66 public static List<TestDataPair> getTestData(String moduleLocation, String moduleName) throws Exception {
67 List<TestDataPair> list = new ArrayList<TestDataPair>(); local
75 list.add(new TestDataPair(t, settings));
78 return list;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/tokens/
DirectiveTokenTest.java 19 import java.util.List;
36 List<Integer> list = new ArrayList<Integer>(); local
37 list.add(new Integer(1));
39 new DirectiveToken<Integer>("YAML", list, mark, mark);
40 fail("List must have 2 values.");
48 List<String> list = new ArrayList<String>(); local
49 list.add("!foo");
50 list.add("!bar")
57 List<Integer> list = new ArrayList<Integer>(); local
    [all...]
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
LoggingTestCase.java 28 import java.util.List;
53 List<Object> list = new ArrayList<>(); local
54 Collections.addAll(list, result.getParameters());
55 list.add(context.toString());
56 result.setParameters(list.toArray(new Object[list.size()]));

Completed in 782 milliseconds

1 2 3 45 6 7 8 91011>>