Searched refs:list (Results 151 - 175 of 4308) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_helper_browsertest.h10 #include <list>
26 const std::list<T>& result() {
32 void callback(const std::list<T>& info) {
40 std::list<T> result_;
H A Dmock_browsing_data_indexed_db_helper.h8 #include <list>
18 // Use AddIndexedDBSamples() or add directly to response_ list, then
40 const base::Callback<void(const std::list<content::IndexedDBInfo>&)>&
47 base::Callback<void(const std::list<content::IndexedDBInfo>&)> callback_;
49 std::list<content::IndexedDBInfo> response_;
H A Dmock_browsing_data_local_storage_helper.h8 #include <list>
16 // Use AddLocalStorageSamples() or add directly to response_ list, then
25 const base::Callback<void(const std::list<LocalStorageInfo>&)>& callback)
47 base::Callback<void(const std::list<LocalStorageInfo>&)> callback_;
51 std::list<LocalStorageInfo> response_;
H A Dmock_browsing_data_service_worker_helper.h8 #include <list>
18 // Use AddServiceWorkerSamples() or add directly to response_ list, then
40 const std::list<content::ServiceWorkerUsageInfo>&)>& callback) OVERRIDE;
46 base::Callback<void(const std::list<content::ServiceWorkerUsageInfo>&)>
49 std::list<content::ServiceWorkerUsageInfo> response_;
/external/clang/test/Analysis/inlining/
H A Dstl.cpp31 void testList_pop_front(std::list<int> list) { argument
32 while(!list.empty())
33 list.pop_front(); // no-warning
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dgenerate-cmdlist.sh12 sed -n -e 's/^perf-\([^ ]*\)[ ].* common.*/\1/p' command-list.txt |
26 sed -n -e 's/^perf-\([^ ]*\)[ ].* full.*/\1/p' command-list.txt |
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dlist.pxd9 # Return a new list of length len on success, or NULL on failure.
11 # Note: If length is greater than zero, the returned list object's
18 # Return true if p is a list object or an instance of a subtype of
19 # the list type.
22 # Return true if p is a list object, but not an instance of a
23 # subtype of the list type.
25 Py_ssize_t PyList_Size(object list) except -1
26 # Return the length of the list object in list; this is equivalent
27 # to "len(list)" o
[all...]
/external/chromium_org/v8/src/
H A Dsmall-pointer-list.h15 // SmallPointerList is a list optimized for storing no or just a
18 // The interface tries to be as close to List from list.h as possible.
31 if (list()->capacity() >= capacity) return;
32 int old_length = list()->length();
33 list()->AddBlock(NULL, capacity - list()->capacity(), zone);
34 list()->Rewind(old_length);
37 PointerList* list = new(zone) PointerList(capacity, zone); local
39 list->Add(single_value(), zone);
41 DCHECK(IsAligned(reinterpret_cast<intptr_t>(list), kPointerAlignmen
70 PointerList* list = new(zone) PointerList(2, zone); local
163 PointerList* list() const { function in class:v8::internal::SmallPointerList
[all...]
/external/eigen/Eigen/src/StlSupport/
H A DStdList.h17 #define EIGEN_EXPLICIT_STL_LIST_INSTANTIATION(...) template class std::list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> >;
24 * std::list such that for data types with alignment issues the correct allocator
32 class list<__VA_ARGS__, _Ay> \
33 : public list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > \
35 typedef list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > list_base; \
41 explicit list(const allocator_type& a = allocator_type()) : list_base(a) {} \
43 list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : list_base(first, last, a) {} \
44 list(const list& c) : list_base(c) {} \
45 explicit list(size_typ
80 class list<T,EIGEN_ALIGNED_ALLOCATOR<T> > class in namespace:std
[all...]
/external/chromium-trace/trace-viewer/src/ui/
H A Dlist_and_associated_view_test.js30 var list = [
37 lav.list = list;
59 var list = [
66 lav.list = list;
78 var list = [
85 lav.list = list;
91 assertEquals(list[
[all...]
/external/chromium_org/net/dns/
H A Daddress_sorter_win.cc33 virtual void Sort(const AddressList& list,
35 DCHECK(!list.empty());
36 scoped_refptr<Job> job = new Job(list, callback);
44 Job(const AddressList& list, const CallbackType& callback) argument
47 list.size() * (sizeof(SOCKET_ADDRESS) +
54 input_buffer_->iAddressCount = list.size();
58 for (size_t i = 0; i < list.size(); ++i) {
59 IPEndPoint ipe = list[i];
107 AddressList list; local
109 list
147 AddressList list; local
[all...]
H A Daddress_sorter.h20 // AddressSorter does not necessarily preserve port numbers on the sorted list.
24 const AddressList& list)> CallbackType;
28 // Sorts |list|, which must include at least one IPv6 address.
31 virtual void Sort(const AddressList& list,
/external/proguard/src/proguard/util/
H A DListUtil.java37 public static String commaSeparatedString(List list, boolean quoteStrings) argument
39 if (list == null)
46 for (int index = 0; index < list.size(); index++)
53 String string = (String)list.get(index);
77 List list = new ArrayList();
93 list.add(string.substring(index + 1, nextIndex));
107 list.add(substring);
114 return list;
157 List list = commaSeparatedList(args[0]);
159 System.out.println("Resulting list
[all...]
/external/qemu/include/qemu/
H A Doption.h62 * The following functions take a parameter list as input. This is a pointer to
67 QEMUOptionParameter *get_option_parameter(QEMUOptionParameter *list,
69 int set_option_parameter(QEMUOptionParameter *list, const char *name,
71 int set_option_parameter_int(QEMUOptionParameter *list, const char *name,
74 QEMUOptionParameter *list);
76 QEMUOptionParameter *list, QEMUOptionParameter *dest);
77 void free_option_parameters(QEMUOptionParameter *list);
78 void print_option_parameters(QEMUOptionParameter *list);
79 void print_option_help(QEMUOptionParameter *list);
116 QemuOpts *qemu_opts_find(QemuOptsList *list, cons
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSignerInformationStore.java25 List list = (ArrayList)table.get(sid);
26 if (list == null)
28 list = new ArrayList(1);
29 table.put(sid, list);
32 list.add(signer);
48 Collection list = getSigners(selector);
50 return list.size() == 0 ? null : (SignerInformation) list.iterator().next();
104 List list = (ArrayList)table.get(selector);
106 return list
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_mutex_consistent.c15 * The current list of contributors is contained
17 * code distribution. The list can also be seen at the
106 * Any mutex currently in the thread's robust mutex list is held
118 ptw32_robust_node_t** list; local
123 list = &tp->robustMxList;
125 if (NULL == *list)
129 *list = robust;
134 robust->next = *list;
135 (*list)->prev = robust;
136 *list
144 ptw32_robust_node_t** list; local
[all...]
/external/libcxx/test/containers/sequences/list/list.capacity/
H A Dresize_size.pass.cpp10 // <list>
14 #include <list>
22 std::list<int> l(5, 2);
26 assert(l == std::list<int>(2, 2));
29 std::list<int> l(5, 2);
38 std::list<DefaultOnly> l(10);
44 std::list<DefaultOnly> l(10);
52 std::list<int, min_allocator<int>> l(5, 2);
56 assert((l == std::list<int, min_allocator<int>>(2, 2)));
59 std::list<in
[all...]
/external/libcxx/test/containers/sequences/list/list.cons/
H A Dsize_value_alloc.pass.cpp10 // <list>
12 // list(size_type n, const T& value, const Allocator& = Allocator());
14 #include <list>
23 std::list<int> l(3, 2);
26 std::list<int>::const_iterator i = l.begin();
34 std::list<int> l(3, 2, std::allocator<int>());
37 std::list<int>::const_iterator i = l.begin();
45 std::list<int, stack_allocator<int, 3> > l(3, 2);
48 std::list<int>::const_iterator i = l.begin();
57 std::list<in
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListSubListTester.java37 * A generic JUnit test which tests {@code subList()} operations on a list.
84 assertEquals("subList(0, size) should be equal to the original list",
120 assertEquals("A set() call to a list after a sublist has been created "
158 assertEquals("A set() call to a list after a sublist has been created "
165 assertEquals("subList(0, 0).subList(0, 0) should be an empty list",
173 + "should be a single-element list of the element at index 1",
179 List<E> list = getList();
181 assertEquals(list.subList(0, size).size(),
183 assertEquals(list.subList(0, size - 1).size(),
185 assertEquals(list
[all...]
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dl10n_util_unittest.cc47 void VerifyOnlyUILanguages(const base::ListValue& list) { argument
48 for (size_t i = 0; i < list.GetSize(); ++i) {
50 ASSERT_TRUE(list.GetDictionary(i, &dict));
59 void VerifyLanguageCode(const base::ListValue& list, argument
63 ASSERT_TRUE(list.GetDictionary(index, &dict));
127 scoped_ptr<base::ListValue> list(GetUILanguageList(NULL, std::string()));
129 VerifyOnlyUILanguages(*list);
191 scoped_ptr<base::ListValue> list(GetUILanguageList(NULL, std::string()));
193 VerifyOnlyUILanguages(*list);
196 ASSERT_LE(5u, list
[all...]
/external/libcxx/test/containers/sequences/list/list.modifiers/
H A Derase_iter_iter.pass.cpp10 // <list>
14 #include <list>
23 std::list<int> l1(a1, a1+3);
24 std::list<int>::iterator i = l1.erase(l1.cbegin(), l1.cbegin());
30 std::list<int> l1(a1, a1+3);
31 std::list<int>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin()));
35 assert(l1 == std::list<int>(a1+1, a1+3));
38 std::list<int> l1(a1, a1+3);
39 std::list<int>::iterator i = l1.erase(l1.cbegin(), next(l1.cbegin(), 2));
43 assert(l1 == std::list<in
[all...]
/external/qemu/util/
H A Dqemu-option.c156 * Searches an option list for an option with the given name
158 QEMUOptionParameter *get_option_parameter(QEMUOptionParameter *list, argument
161 while (list && list->name) {
162 if (!strcmp(list->name, name)) {
163 return list;
165 list++;
242 * Sets the value of a parameter in a given option list. The parsing of the
258 int set_option_parameter(QEMUOptionParameter *list, const char *name, argument
264 list
306 set_option_parameter_int(QEMUOptionParameter *list, const char *name, uint64_t value) argument
334 free_option_parameters(QEMUOptionParameter *list) argument
351 count_option_parameters(QEMUOptionParameter *list) argument
370 append_option_parameters(QEMUOptionParameter *dest, QEMUOptionParameter *list) argument
411 parse_option_parameters(const char *param, QEMUOptionParameter *list, QEMUOptionParameter *dest) argument
466 print_option_parameters(QEMUOptionParameter *list) argument
493 print_option_help(QEMUOptionParameter *list) argument
521 QemuOptsList *list; member in struct:QemuOpts
653 qemu_opts_find(QemuOptsList *list, const char *id) argument
684 qemu_opts_create(QemuOptsList *list, const char *id, int fail_if_exists) argument
715 qemu_opts_reset(QemuOptsList *list) argument
729 qemu_opts_set(QemuOptsList *list, const char *id, const char *name, const char *value) argument
820 qemu_opts_parse(QemuOptsList *list, const char *params, int permit_abbrev) argument
893 qemu_opts_from_qdict(QemuOptsList *list, const QDict *qdict) argument
961 qemu_opts_foreach(QemuOptsList *list, qemu_opts_loopfunc func, void *opaque, int abort_on_failure) argument
[all...]
/external/chromium_org/ash/
H A Dgpu_support.h8 #include <list>
20 typedef base::Callback<void(const std::list<base::ProcessHandle>&)>
/external/chromium_org/courgette/
H A Dbase_test_unittest.h8 #include <list>
18 // Pass a list of strings, and get back the concatenated contents
20 std::string FilesContents(std::list<std::string> file_names) const;
/external/chromium_org/media/audio/
H A Daudio_device_name.h8 #include <list>
23 typedef std::list<AudioDeviceName> AudioDeviceNames;

Completed in 659 milliseconds

1234567891011>>