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

<<11121314151617181920>>

  /external/syslinux/gpxe/src/include/gpxe/
retry.h 12 #include <gpxe/list.h>
22 /** List of active timers */
23 struct list_head list; member in struct:retry_timer
  /external/tensorflow/tensorflow/core/lib/gtl/
compactptrset_test.cc 44 for (const auto& list : std::vector<std::vector<const char*>>({{
51 LOG(INFO) << list.size();
56 for (auto p : list) {
62 ASSERT_EQ(set.size(), list.size());
64 ASSERT_EQ(SortedContents(set), list); local
69 ASSERT_EQ(SortedContents(set2), list); local
87 ASSERT_EQ(SortedContents(dst), list); local
93 for (auto p : list) {
  /external/v8/tools/clang/value_cleanup/tests/
list-value-append-expected.cc 27 base::ListValue list; local
28 list.AppendBoolean(1 == 0);
29 list.AppendBoolean(true);
30 list.AppendInteger(static_cast<unsigned char>(1.0));
31 list.AppendDouble(double{3});
32 list.AppendString("abc");
34 list.Append(ReturnsUniquePtr());
36 list.Append(thing.ToValue());
38 list.Append(std::move(unique_ptr_var));
42 base::ListValue list; local
    [all...]
  /external/wpa_supplicant_8/src/utils/
trace.h 17 #include "list.h"
22 struct dl_list list; member in struct:wpa_trace_ref
40 dl_list_del(&(ptr)->wpa_trace_ref_##name.list); \
  /frameworks/native/services/sensorservice/tests/
sensorservicetest.cpp 67 Sensor const* const* list; local
68 ssize_t count = mgr.getSensorList(&list);
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLExtensions.cpp 29 SortedVector<String8> list; local
37 list.add(s);
42 return list;
  /frameworks/support/paging/common/src/main/java/androidx/paging/
TiledDataSource.java 24 import java.util.List;
48 public abstract List<T> loadRange(int startPosition, int count);
64 List<T> list = loadRange(firstLoadPosition, firstLoadSize); local
65 if (list != null && list.size() == firstLoadSize) {
66 callback.onResult(list, firstLoadPosition, totalCount);
68 // null list, or size doesn't match request
77 List<T> list = loadRange(params.startPosition, params.loadSize) local
    [all...]
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
FragmentListArraySupport.java 31 * Demonstration of using ListFragment to show a list of items
40 // Create the list fragment and add it as our sole content.
42 ArrayListFragment list = new ArrayListFragment(); local
43 getSupportFragmentManager().beginTransaction().add(android.R.id.content, list).commit();
  /hardware/intel/common/wrs_omxil_core/utils/inc/
list.h 2 * list.h, list
26 struct list { struct
27 struct list *next;
28 struct list *prev;
33 void __list_init(struct list *);
35 struct list *__list_alloc(void);
36 struct list *list_alloc(void *);
38 void __list_free(struct list *);
39 void list_free_all(struct list *);
    [all...]
  /hardware/libhardware/tests/nusensors/
nusensors.cpp 80 struct sensor_t const* list; local
81 int count = module->get_sensors_list(module, &list);
92 list[i].name,
93 list[i].vendor,
94 list[i].version,
95 list[i].handle,
96 list[i].type,
97 list[i].maxRange,
98 list[i].resolution,
99 list[i].power)
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/stack/common/
cam_queue.h 7 * notice, this list of conditions and the following disclaimer.
9 * copyright notice, this list of conditions and the following
37 struct cam_list list; member in struct:__anon48906
50 cam_list_init(&queue->head.list);
67 cam_list_add_tail_node(&node->list, &queue->head.list);
82 head = &queue->head.list;
85 node = member_of(pos, cam_node_t, list);
86 cam_list_del_node(&node->list);
106 head = &queue->head.list;
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/util/
QCameraQueue.h 7 * notice, this list of conditions and the following disclaimer.
9 * copyright notice, this list of conditions and the following
65 struct cam_list list; member in struct:qcamera::QCameraQueue::__anon49414
  /hardware/qcom/display/msm8909w_3100/sdm/libs/core/
dump_impl.cpp 6 * * Redistributions of source code must retain the above copyright notice, this list of
8 * * Redistributions in binary form must reproduce the above copyright notice, this list of
68 va_list list; local
69 va_start(list, format);
70 vsnprintf(buffer, length - filled -1, format, list);
  /hardware/qcom/display/msm8996/sdm/libs/core/
dump_impl.cpp 6 * * Redistributions of source code must retain the above copyright notice, this list of
8 * * Redistributions in binary form must reproduce the above copyright notice, this list of
68 va_list list; local
69 va_start(list, format);
70 vsnprintf(buffer, length - filled -1, format, list);
  /hardware/qcom/display/msm8998/sdm/libs/core/
dump_impl.cpp 6 * * Redistributions of source code must retain the above copyright notice, this list of
8 * * Redistributions in binary form must reproduce the above copyright notice, this list of
68 va_list list; local
69 va_start(list, format);
70 vsnprintf(buffer, length - filled -1, format, list);
  /libcore/libart/src/main/java/java/lang/
VMClassLoader.java 25 import java.util.List;
78 static List<URL> getResources(String name) {
79 ArrayList<URL> list = new ArrayList<URL>(); local
83 list.add(url);
86 return list;
  /libcore/luni/src/test/java/libcore/java/net/
CookiesMCompatibilityTest.java 26 import java.util.List;
38 Map<String, List<String>> responseHeaders = Collections.singletonMap("Set-Cookie",
44 Map<String, List<String>> cookies = cm.get(
54 List<String> list = new ArrayList<>(); local
55 Map<String, List<String>> responseHeaders = Collections.singletonMap("Set-Cookie",
58 Map<String, List<String>> cookies = cm.get(
62 List<String> cookieList = cookies.values().iterator().next();
  /libcore/ojluni/src/main/java/java/nio/file/attribute/
UserDefinedFileAttributeView.java 29 import java.util.List;
82 * Returns a list containing the names of the user-defined attributes.
84 * @return An unmodifiable list containing the names of the file's
96 List<String> list() throws IOException; method in interface:UserDefinedFileAttributeView
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
ReduceTest.java 32 import java.util.List;
45 List<Integer> list = countTo(10); local
47 assertEquals(55, (int) list.stream().reduce(rPlus).get());
48 assertEquals(55, (int) list.stream().reduce(0, rPlus));
49 assertEquals(10, (int) list.stream().reduce(rMax).get());
50 assertEquals(1, (int) list.stream().reduce(rMin).get());
55 assertEquals(110, (int) list.stream().map(mDoubler).reduce(rPlus).get());
56 assertEquals(20, (int) list.stream().map(mDoubler).reduce(rMax).get());
57 assertEquals(2, (int) list.stream().map(mDoubler).reduce(rMin).get())
    [all...]
  /packages/apps/Car/libs/car-list/src/com/android/car/list/
CheckBoxLineItem.java 17 package com.android.car.list;
26 import com.android.car.list.R;
LaunchAppLineItem.java 17 package com.android.car.list;
PasswordLineItem.java 17 package com.android.car.list;
25 import com.android.car.list.R;
SimpleIconLineItem.java 17 package com.android.car.list;
SingleTextLineItem.java 17 package com.android.car.list;
25 import com.android.car.list.R;
TextLineItem.java 17 package com.android.car.list;
26 import com.android.car.list.R;

Completed in 347 milliseconds

<<11121314151617181920>>