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

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/
insert_iter_rvalue.pass.cpp 10 // <list>
18 #include <list>
28 std::list<MoveOnly> l1;
40 std::list<int> v1(3);
41 std::list<int> v2(3);
49 std::list<MoveOnly, min_allocator<MoveOnly>> l1;
61 std::list<int, min_allocator<int>> v1(3);
62 std::list<int, min_allocator<int>> v2(3);
emplace.pass.cpp 10 // <list>
18 #include <list>
42 std::list<A> c;
56 std::list<A> c1;
57 std::list<A> c2;
58 std::list<A>::iterator i = c1.emplace(c2.cbegin(), 2, 3.5);
66 std::list<A, min_allocator<A>> c;
80 std::list<A, min_allocator<A>> c1;
81 std::list<A, min_allocator<A>> c2;
82 std::list<A, min_allocator<A>>::iterator i = c1.emplace(c2.cbegin(), 2, 3.5)
    [all...]
  /packages/apps/Camera/src/com/android/camera/
PreferenceGroup.java 29 private ArrayList<CameraPreference> list = field in class:PreferenceGroup
37 list.add(child);
41 list.remove(index);
45 return list.get(index);
49 return list.size();
54 for (CameraPreference pref : list) {
67 for (CameraPreference pref : list) {
  /packages/apps/Camera2/src/com/android/camera/
PreferenceGroup.java 29 private ArrayList<CameraPreference> list = field in class:PreferenceGroup
37 list.add(child);
41 list.remove(index);
45 return list.get(index);
49 return list.size();
54 for (CameraPreference pref : list) {
67 for (CameraPreference pref : list) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
Collapser.java 20 import java.util.List;
25 * function that takes an ArrayList of items and returns a list of the same items collapsed into
51 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed
55 * @param list List of Objects of type <T extends Collapsible<T>> to be collapsed.
57 public static <T extends Collapsible<T>> void collapseList(List<T> list) {
59 int listSize = list.size();
66 T iItem = list.get(i)
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
PreferenceGroup.java 29 private ArrayList<CameraPreference> list = field in class:PreferenceGroup
37 list.add(child);
41 list.remove(index);
45 return list.get(index);
49 return list.size();
54 for (CameraPreference pref : list) {
67 for (CameraPreference pref : list) {
  /external/chromium_org/gpu/config/
gpu_util.cc 24 std::string IntSetToString(const std::set<int>& list) {
26 for (std::set<int>::const_iterator it = list.begin();
27 it != list.end(); ++it) {
35 void StringToIntSet(const std::string& str, std::set<int>* list) {
36 DCHECK(list);
43 list->insert(number);
65 scoped_ptr<GpuDriverBugList> list(GpuDriverBugList::Create());
66 list->LoadList(kGpuDriverBugListJson,
68 std::set<int> workarounds = list->MakeDecision(
  /external/linux-tools-perf/
builtin-buildid-cache.c 27 "file list", "file(s) to add"),
28 OPT_STRING('r', "remove", &remove_name_list_str, "file list",
77 struct strlist *list; local
84 list = strlist__new(true, add_name_list_str);
85 if (list) {
86 strlist__for_each(pos, list)
97 strlist__delete(list);
102 list = strlist__new(true, remove_name_list_str);
103 if (list) {
104 strlist__for_each(pos, list)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ListsTest.java 52 import java.util.List;
80 private static final List<Integer> SOME_LIST
83 private static final List<Integer> SOME_SEQUENTIAL_LIST
86 private static final List<String> SOME_STRING_LIST
107 @Override protected List<String> create(String[] elements) {
119 @Override protected List<String> create(String[] elements) {
139 @Override protected List<String> create(String[] elements) {
140 List<String> fromList = Lists.newArrayList();
154 @Override protected List<String> create(String[] elements) {
155 List<String> fromList = Lists.newLinkedList()
305 ArrayList<Integer> list = Lists.newArrayList(); local
306 assertEquals(Collections.emptyList(), list); local
310 ArrayList<Integer> list = Lists.newArrayListWithCapacity(0); local
311 assertEquals(Collections.emptyList(), list); local
326 ArrayList<Integer> list = Lists.newArrayListWithExpectedSize(0); local
327 assertEquals(Collections.emptyList(), list); local
342 ArrayList<Integer> list = Lists.newArrayList(0, 1, 1); local
356 ArrayList<Integer> list = Lists.newArrayList(SOME_COLLECTION); local
361 ArrayList<Integer> list = Lists.newArrayList(SOME_ITERABLE); local
366 ArrayList<Integer> list = Lists.newArrayList(SOME_COLLECTION.iterator()); local
371 LinkedList<Integer> list = Lists.newLinkedList(); local
372 assertEquals(Collections.emptyList(), list); local
376 LinkedList<Integer> list = Lists.newLinkedList(SOME_COLLECTION); local
381 LinkedList<Integer> list = Lists.newLinkedList(SOME_ITERABLE); local
423 List<String> list = Lists.asList("foo", new String[] { "bar", "baz" }); local
448 List<String> list = Lists.asList("foo", new String[0]); local
465 List<String> list = Lists.asList("foo", "bar", new String[] { "baz" }); local
479 List<String> list = Lists.asList("foo", "bar", new String[0]); local
548 List<String> list = Lists.transform(SOME_LIST, SOME_FUNCTION); local
555 List<String> list = Lists.transform(SOME_SEQUENTIAL_LIST, SOME_FUNCTION); local
561 List<String> list = Lists.transform(SOME_LIST, SOME_FUNCTION); local
566 List<String> list = Lists.transform(SOME_SEQUENTIAL_LIST, SOME_FUNCTION); local
572 List<String> list = Lists.transform(fromList, SOME_FUNCTION); local
578 List<String> list = Lists.transform(fromList, SOME_FUNCTION); local
596 assertEquals(Collections.emptyList(), list); local
633 List<String> list = Lists.transform(SOME_LIST, SOME_FUNCTION); local
638 List<String> list = Lists.transform(SOME_SEQUENTIAL_LIST, SOME_FUNCTION); local
644 List<String> list = Lists.transform(fromList, SOME_FUNCTION); local
650 List<String> list = Lists.transform(fromList, SOME_FUNCTION); local
696 List<String> list = Lists.transform(fromList, SOME_FUNCTION); local
702 List<String> list = Lists.transform(fromList, SOME_FUNCTION); local
827 List<Integer> list = asList(1, 2, 3); local
851 List<Integer> list = asList(1, 2, 3); local
    [all...]
  /hardware/invensense/60xx/libsensors/
MPLSensor.cpp 72 /* Base values for the sensor list, these need to be in the order defined in MPLSensor.h */
167 /* sensor list will be changed based on this variable */
476 /* this variable is used for coming up with sensor list */
1108 /** fill in the sensor list based on which sensors are configured.
1110 * parameter list must point to a memory region of at least 7*sizeof(sensor_t)
1111 * parameter len gives the length of the buffer pointed to by list
1114 int MPLSensor::populateSensorList(struct sensor_t *list, int len)
1119 ALOGE("sensor list too small, not populating.");
1124 memcpy(list, sSensorList, sizeof (struct sensor_t) * 7);
1126 /* first add gyro, accel and compass to the list */
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderSection.java 23 import java.util.List;
29 /** {@code non-null;} the list of the one item in the section */
30 private final List<HeaderItem> list; field in class:HeaderSection
43 this.list = Collections.singletonList(item);
55 return list;
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderSection.java 22 import java.util.List;
28 /** {@code non-null;} the list of the one item in the section */
29 private final List<HeaderItem> list; field in class:HeaderSection
42 this.list = Collections.singletonList(item);
54 return list;
  /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/chromium_org/chrome/browser/devtools/
devtools_embedder_message_dispatcher.cc 12 bool GetValue(const base::ListValue& list, int pos, std::string& value) {
13 return list.GetString(pos, &value);
16 bool GetValue(const base::ListValue& list, int pos, int& value) {
17 return list.GetInteger(pos, &value);
20 bool GetValue(const base::ListValue& list, int pos, bool& value) {
21 return list.GetBoolean(pos, &value);
39 Argument(const base::ListValue& list, int pos) {
40 valid_ = GetValue(list, pos, value_);
52 const base::ListValue& list) {
59 const base::ListValue& list) {
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
autofill_options.css 14 #autofill-options list {
18 .autofill-list-item {
25 .autofill-list-item + img {
34 #autofill-options > div.settings-list > div:last-child {
44 #autofill-options .list-inline-button {
50 .list-inline-button {
  /external/chromium_org/native_client_sdk/src/build_tools/
parse_dsc.py 23 'TOOLS' : (list, VALID_TOOLCHAINS, True),
24 'CONFIGS' : (list, ['Debug', 'Release'], False),
25 'PREREQ' : (list, '', False),
26 'TARGETS' : (list, {
34 'SOURCES': (list, '', True),
35 'CFLAGS': (list, '', False),
36 'CFLAGS_GCC': (list, '', False),
37 'CXXFLAGS': (list, '', False),
38 'DEFINES': (list, '', False),
39 'LDFLAGS': (list, '', False)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
HeaderSection.java 23 import java.util.List;
29 /** {@code non-null;} the list of the one item in the section */
30 private final List<HeaderItem> list; field in class:HeaderSection
43 this.list = Collections.singletonList(item);
55 return list;
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
MotionStatsAggregator.java 27 String [] list = new String[1]; local
28 list[0] = CURRENT_MOTION;
29 return list;
  /libcore/luni/src/main/java/java/util/regex/
Splitter.java 20 import java.util.List;
117 ArrayList<String> list = new ArrayList<String>(); local
120 while (list.size() + 1 != limit && matcher.find()) {
121 list.add(input.substring(begin, matcher.start()));
124 return finishSplit(list, input, begin, limit);
127 private static String[] finishSplit(List<String> list, String input, int begin, int limit) {
130 list.add(input.substring(begin));
132 list.add("");
135 int i = list.size() - 1
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/
db_back.pass.cpp 10 // <list>
18 #include <list>
30 typedef std::list<T> C;
40 typedef std::list<T, min_allocator<T>> C;
db_front.pass.cpp 10 // <list>
18 #include <list>
30 typedef std::list<T> C;
40 typedef std::list<T, min_allocator<T>> C;
db_iterators_1.pass.cpp 10 // <list>
18 #include <list>
30 typedef std::list<T> C;
39 typedef std::list<T, min_allocator<T>> C;
db_iterators_6.pass.cpp 10 // <list>
18 #include <list>
30 typedef std::list<T> C;
41 typedef std::list<T, min_allocator<T>> C;
db_iterators_7.pass.cpp 10 // <list>
18 #include <list>
30 typedef std::list<T> C;
41 typedef std::list<T, min_allocator<T>> C;
db_iterators_8.pass.cpp 10 // <list>
18 #include <list>
30 typedef std::list<T> C;
39 typedef std::list<T, min_allocator<T>> C;

Completed in 625 milliseconds

<<11121314151617181920>>