HomeSort by relevance Sort by last modified time
    Searched defs:list (Results 1 - 25 of 1570) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/curl/lib/
fileinfo.h 30 struct curl_llist_element list; member in struct:fileinfo
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
ParentModule.java 6 import java.util.List;
11 List<A> list = new ArrayList<>(); local
12 list.add(a);
14 list.add(elt);
16 return list;
ChildDoubleModule.java 6 import java.util.List;
9 class ChildDoubleModule extends ParentModule<Double, String, List<Double>> {
15 @Provides List<Double> provideListOfDouble() {
16 List<Double> list = new ArrayList<>(); local
17 list.add(4d);
18 return list;
ChildIntegerModule.java 6 import java.util.List;
9 class ChildIntegerModule extends ParentModule<Integer, String, List<Integer>> {
15 @Provides List<Integer> provideListOfInteger() {
16 List<Integer> list = new ArrayList<>(); local
17 list.add(2);
18 return list;
  /external/elfutils/libelf/
elf_nextscn.c 44 Elf_ScnList *list; local
59 list = &elf->state.elf32.scns;
61 list = &elf->state.elf64.scns;
63 scn = &list->data[0];
66 list = scn->list;
68 if (scn + 1 < &list->data[list->cnt])
70 else if (scn + 1 == &list->data[list->max
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
LinearLayout9.java 36 ListView list = (ListView) findViewById(R.id.list); local
37 list.setAdapter(new ArrayAdapter<String>(this,
  /external/testng/src/test/java/test/testng387/
FailedDPTest.java 6 import java.util.List;
15 * The test will throw exception when numbers are prime, so getFailedInvocationNumbers() should be a list of prime numbers.
20 static final List<Integer> primes = Arrays.asList(2, 3, 5, 7);
27 List<Integer[]> list = new ArrayList<>(); local
29 list.add(new Integer[] { i });
31 return list.iterator();
  /art/test/714-invoke-custom-lambda-metafactory/src/
Main.java 18 import java.util.List;
24 List<String> list = Arrays.asList("A", "B", "C", "D", "EEE"); local
25 Optional<String> result = list.stream().filter(x -> x.length() >= requiredLength).findAny();
  /external/libbrillo/brillo/
value_conversion.cc 24 const base::ListValue* list = nullptr; local
25 if (!in_value.GetAsList(&list))
27 *out_value = list->CreateDeepCopy();
value_conversion.h 71 const base::ListValue* list = nullptr; local
72 if (!in_value.GetAsList(&list))
75 out_value->reserve(list->GetSize());
76 for (const auto& item : *list) {
119 std::unique_ptr<base::Value> ToValue(const std::vector<T, Alloc>& list) {
121 for (const auto& value : list)
  /external/libcxxabi/src/
abort_message.cpp 39 va_list list; local
40 va_start(list, format);
41 vfprintf(stderr, format, list);
42 va_end(list);
  /external/toybox/toys/other/
which.c 25 struct string_list *list; local
43 list = find_in_path(getenv("PATH"), filename);
44 if (!list) return 1;
47 while (list) {
48 if (!access(list->str, X_OK)) {
49 puts(list->str);
52 llist_traverse(list, free);
56 free(llist_pop(&list));
  /external/wpa_supplicant_8/src/common/
cli.h 12 #include "utils/list.h"
18 struct dl_list list; member in struct:cli_txt_entry
23 void cli_txt_list_flush(struct dl_list *list);
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/visitor/
ModifierVisitorTest.java 40 NodeList<StringLiteralExpr> list = new NodeList<>(); local
41 list.add(new StringLiteralExpr("t"));
42 list.add(new StringLiteralExpr("a"));
43 list.add(new StringLiteralExpr("b"));
44 list.add(new StringLiteralExpr("c"));
46 list.accept(new ModifierVisitor<Void>() {
51 list.addFirst(new StringLiteralExpr("extra " + v));
52 list.remove(new StringLiteralExpr("t"));
65 assertEquals("extra c", list.get(0).getValue());
66 assertEquals("extra b", list.get(1).getValue())
    [all...]
  /development/vndk/tools/sourcedr/ninja/
list_installed_module_under_source.py 21 def list(self, installed_filter=None, module_definition_filter=None): member in class:ModuleInfo
73 module_info.list(installed_filter, module_definition_filter):
  /external/autotest/client/tools/
avgtime 21 list = [] variable
30 list.append((user, system, elapsed, cpu))
32 print " user: %0.2fs (%0.2f%%)" % avg_deviation([x[0] for x in list])
33 print " system: %0.2fs (%0.2f%%)" % avg_deviation([x[1] for x in list])
34 print "elapsed: %0.2fs (%0.2f%%)" % avg_deviation([x[2] for x in list])
35 print " cpu: %d%% (%0.2f%%)" % avg_deviation([x[3] for x in list])
  /external/autotest/frontend/client/src/autotest/afe/
HostTable.java 10 import java.util.List;
23 ArrayList<String[]> list = new ArrayList<String[]>(Arrays.asList(HOST_COLUMNS)); external variable declarations
24 list.add(0, new String[] {CLICKABLE_WIDGET_COLUMN, "Select"});
25 HOST_COLUMNS_SELECT = list.toArray(new String[0][0]);
37 public void handlePage(List<JSONObject> data) {
  /external/clang/test/CodeGen/
2002-08-19-RecursiveLocals.c 5 struct list { struct
7 struct list *Next;
10 static struct list B; /* Forward declare static */
11 static struct list A = { 7, &B };
12 static struct list B = { 8, &A };
14 extern struct list D; /* forward declare normal var */
16 struct list C = { 7, &D };
17 struct list D = { 8, &C };
  /external/curl/docs/examples/
sslbackend.c 46 if(!strcmp("list", name)) {
47 const curl_ssl_backend **list; local
50 result = curl_global_sslset(-1, NULL, &list);
53 for(i = 0; list[i]; i++)
55 i, list[i]->name, list[i]->id);
  /external/libcap/libcap/
_makenames.c 19 } const list[] = { variable
20 #include "cap_names.list.h"
31 for ( i=0; list[i].index >= 0 && list[i].name; ++i ) {
32 if (maxcaps <= list[i].index) {
33 maxcaps = list[i].index + 1;
35 pointers[list[i].index] = list[i].name;
  /external/libunwind/src/mi/
Gfind_dynamic_proc_info.c 43 unw_dyn_info_list_t *list; local
52 list = (unw_dyn_info_list_t *) (uintptr_t) _U_dyn_info_list_addr ();
53 for (di = list->first; di; di = di->next)
  /external/mesa3d/src/gallium/drivers/r300/
r300_chipset.c 39 static const char *list[] = { local
56 for (i = 0; i < ARRAY_SIZE(list); i++) {
57 if (strcmp(list[i], proc_name) == 0) {
  /external/selinux/libsemanage/src/
utilities.h 37 typedef struct list { struct
39 struct list *next;
87 /* linked list string functions
89 * either semanage_list_pop until list == NULL or semanage_list_destroy()
91 int semanage_list_push(semanage_list_t ** list, const char *data) WARN_UNUSED;
92 char *semanage_list_pop(semanage_list_t ** list);
93 void semanage_list_destroy(semanage_list_t ** list);
140 * @return a list of lines from the file (empty lines become
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
EmptyRuleSet.java 29 import java.util.List;
33 List<ConversionRule> list = new ArrayList<ConversionRule>(); field in class:EmptyRuleSet
36 return list.iterator();
  /external/tensorflow/tensorflow/python/framework/
registry.py 75 def list(self): member in class:Registry
79 A list of names of registered objects.

Completed in 1497 milliseconds

1 2 3 4 5 6 7 8 91011>>