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

12 3 4 5 6 7 8 91011>>

  /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/ltp/testcases/kernel/fs/acls/
acl_link_test.c 14 char list[1024]; local
22 if (-1 == (s = listxattr(argv[1], list, 1024))) {
31 tok = strtok(list, "\0");
  /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/strace/
xlate.el 8 ;; notice, this list of conditions and the following disclaimer.
10 ;; notice, this list of conditions and the following disclaimer in the
35 (defvar xlate-list nil
39 "Grab all of the defined names in the region and save them in xlate-list."
42 (setq xlate-list nil)
47 (setq xlate-list (cons (buffer-substring (match-beginning 1)
49 xlate-list)))
53 (setq xlate-list (nreverse xlate-list)))
55 (defun build-xlate (&optional list)
    [all...]
  /external/syslinux/com32/include/
cli.h 9 struct list_head list; member in struct:cli_command
  /external/tensorflow/tensorflow/python/framework/
registry.py 70 def list(self): member in class:Registry
74 A list of names of registered objects.
  /external/toybox/toys/other/
tac.c 20 struct arg_list *list = NULL; local
31 temp->next = list;
33 list = temp;
37 while (list) {
38 struct arg_list *temp = list->next;
39 xprintf("%s", list->arg);
40 free(list->arg);
41 free(list);
42 list = temp;
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
test11-expected.cc 16 FooList list; local
17 list.push_back(new Foo);
18 list.push_back(new Foo);
19 for (FooList::const_iterator it = list.begin(); it != list.end(); ++it) {
test11-original.cc 16 FooList list; local
17 list.push_back(new Foo);
18 list.push_back(new Foo);
19 for (FooList::const_iterator it = list.begin(); it != list.end(); ++it) {
  /external/wpa_supplicant_8/src/common/
ctrl_iface_common.h 12 #include "utils/list.h"
21 struct dl_list list; member in struct:wpa_ctrl_dst
  /packages/apps/Car/libs/car-list/src/com/android/car/list/
InterceptTouchRelativeLayout.java 17 package com.android.car.list;
26 * make the line item in a list view clickable and control the logic and update the sub view.
  /packages/apps/Contacts/src/com/android/contacts/list/
OnEmailAddressPickerActionListener.java 16 package com.android.contacts.list;
OnMultiplePhoneNumberPickerActionListener.java 16 package com.android.contacts.list;
OnPostalAddressPickerActionListener.java 16 package com.android.contacts.list;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/
JcaCertStore.java 9 import java.util.List;
37 List list = new ArrayList(collection.size()); local
49 list.add(new X509CertificateHolder(cert.getEncoded()));
58 list.add((X509CertificateHolder)o);
62 return list;
  /external/guava/guava-testlib/src/com/google/common/testing/
TestLogHandler.java 23 import java.util.List;
58 /** We will keep a private list of all logged records */
59 private final List<LogRecord> list = field in class:TestLogHandler
63 * Adds the most recently logged record to our list.
67 list.add(record);
77 list.clear();
81 * Fetch the list of logged records
82 * @return unmodifiable LogRecord list of all logged records
84 public List<LogRecord> getStoredLogRecords()
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AnimationSetTest.java 3 import java.util.List;
38 List<Animation> list = shadow.getAnimations(); local
39 assertThat(list.size(), equalTo(3));
40 assertThat(list.get(0), sameInstance(alpha));
41 assertThat(list.get(1), sameInstance(translate));
42 assertThat(list.get(2), sameInstance(rotate));
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/
OperandsTest.java 22 import java.util.List;
39 List<Output<Integer>> list = local
41 Output<?>[] array = Operands.asOutputs(list);
42 assertEquals(list.size(), array.length);
43 assertSame(array[0], list.get(0));
44 assertSame(array[1], list.get(1));
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
BasicTest.java 27 /** List all algorithms known to the security manager. */
33 TreeSet<String> list = new TreeSet<String>(); local
35 list.add((String) key);
37 for (String algorithm : list) {
  /test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/util/
UniqueModuleCountUtilTest.java 30 import java.util.List;
39 List<IModuleDef> emptyList = new ArrayList<>();
45 List<IModuleDef> list = new ArrayList<>(); local
46 list.add(new ModuleDef("moduleA", new Abi("arm64", "64"), new TestStub(),
48 list.add(new ModuleDef("moduleA", new Abi("arm32", "32"), new TestStub(),
50 assertEquals(2, UniqueModuleCountUtil.countUniqueModules(list));
55 List<IModuleDef> list = new ArrayList<>(); local
56 list.add(new ModuleDef("moduleA", new Abi("arm32", "32"), new TestStub()
65 List<IModuleDef> list = new ArrayList<>(); local
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
DoubleArrayListTest.java 10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
52 private DoubleArrayList list; field in class:DoubleArrayListTest
56 list = new DoubleArrayList();
68 list.addDouble(2);
69 list.addDouble(4);
70 list.addDouble(6);
71 list.addDouble(8);
72 list.makeImmutable();
73 assertImmutable(list);
282 assertEquals(asList(), list); local
452 DoubleArrayList list = new DoubleArrayList(); local
    [all...]
FloatArrayListTest.java 10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
52 private FloatArrayList list; field in class:FloatArrayListTest
56 list = new FloatArrayList();
68 list.addFloat(2);
69 list.addFloat(4);
70 list.addFloat(6);
71 list.addFloat(8);
72 list.makeImmutable();
73 assertImmutable(list);
282 assertEquals(asList(), list); local
452 FloatArrayList list = new FloatArrayList(); local
    [all...]
IntArrayListTest.java 10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
52 private IntArrayList list; field in class:IntArrayListTest
56 list = new IntArrayList();
68 list.addInt(2);
69 list.addInt(4);
70 list.addInt(6);
71 list.addInt(8);
72 list.makeImmutable();
73 assertImmutable(list);
282 assertEquals(asList(), list); local
452 IntArrayList list = new IntArrayList(); local
    [all...]

Completed in 672 milliseconds

12 3 4 5 6 7 8 91011>>