Searched refs:list (Results 201 - 225 of 4308) sorted by path

1234567891011>>

/external/chromium_org/base/process/
H A Dprocess_iterator.h10 #include <list>
108 // This class provides a way to iterate through a list of processes on the
114 typedef std::list<ProcessEntry> ProcessEntries;
135 // left in the list of all processes. Returns true and sets entry_ to
158 // This class provides a way to iterate through the list of processes
/external/chromium_org/base/synchronization/
H A Dwaitable_event.h16 #include <list>
112 // of the wait-list
120 // the wake-list before resetting. However, if those two waiters happen to
122 // to dequeue the waiter from the other wait-list in time), two auto-resets
164 std::list<Waiter*> waiters_;
H A Dwaitable_event_posix.cc15 // A WaitableEvent on POSIX is implemented as a wait-list. Currently we don't
20 // The WaitableEvent maintains a list of waiters, protected by a lock. Each
25 // Waiting involves grabbing the lock and adding oneself to the wait list. Async
27 // from the list.
30 // the wait-list of many events. An event passes a pointer to itself when
134 // unlocking it and removing it from the wait-list. Called with lock held.
288 // remove our SyncWaiter from the wait-list
313 // been enqueued in the wait-list of each. None of the WaitableEvents are
366 for (std::list<Waiter*>::iterator
393 // Add a waiter to the list o
[all...]
/external/chromium_org/base/threading/
H A Dsequenced_worker_pool.cc7 #include <list>
451 // Number of tasks in the pending_tasks_ list that are marked as blocking
922 // list of pending but currently blocked SequencedTasks for that ID.
930 // we would pop the head element off of that tasks pending list and add it
1106 // The worker is assigned to the list when the thread actually starts, which
/external/chromium_org/base/
H A Dvalues.cc30 const ListValue* list = static_cast<const ListValue*>(node); local
32 for (ListValue::const_iterator it = list->begin(); it != list->end();
H A Dvalues_unittest.cc31 // Test storing a dictionary in a list.
97 // Try searching in the mixed list.
192 ListValue list; local
193 list.Append(new DeletionTestValue(&deletion_flag));
199 ListValue list; local
200 list.Append(new DeletionTestValue(&deletion_flag));
202 list.Clear();
207 ListValue list; local
208 list.Append(new DeletionTestValue(&deletion_flag));
210 EXPECT_TRUE(list
220 ListValue list; local
236 ListValue list; local
245 ListValue list; local
526 ListValue* list = new ListValue; local
[all...]
/external/chromium_org/base/win/
H A Devent_trace_consumer_unittest.cc8 #include <list>
31 typedef std::list<EVENT_TRACE> EventQueue;
/external/chromium_org/build/android/
H A Dasan_symbolize.py58 libraries = collections.defaultdict(list)
H A Dinstall_emulator_deps.py71 [android_binary, 'list'])
73 raise Exception('\'android list\' command failed')
79 logging.exception('Unable to execute \'android list\'')
202 [android_binary, 'list', 'sdk'])
204 raise Exception('\'android list sdk\' command return %d' % exit_code)
/external/chromium_org/build/android/buildbot/
H A Dbb_device_status_check.py117 adb_online_devs: A list of serial numbers of the currently visible
143 missing_devs = list(set(last_devices) - set(adb_online_devs))
144 new_missing_devs = list(set(missing_devs) - set(last_missing_devices))
163 all_known_devices = list(set(adb_online_devs) | set(last_devices))
200 'regularly scheduled program.' % list(new_devs))
225 print ('Error: Could not get list of USB ports (i.e. lsusb).')
336 unique_types = list(set(types))
337 unique_builds = list(set(builds))
H A Dbb_device_steps.py406 """Flatten the trie of failures into a list."""
723 return sys.exit('Unknown tests %s' % list(unknown_tests))
H A Dbb_utils.py95 print >> sys.stderr, 'FATAL: Unknown steps %s' % list(unknown_steps)
/external/chromium_org/build/android/gyp/
H A Dgenerate_v14_compatible_resources.py97 list(root_node.getElementsByTagName('style')))
127 for name, value in list(element.attributes.items()):
H A Djava_cpp_enum.py211 need_to_add = list(actual - expected)
212 need_to_remove = list(expected - actual)
213 raise Exception('Output files list does not match expectations. Please '
H A Dproguard.py19 classpath = list(set(classpath))
/external/chromium_org/build/android/gyp/util/
H A Dbuild_utils.py262 """Gets the list of all transitive dependencies in sorted order.
267 top: a list of the top level nodes
270 A list of all transitive dependencies of nodes in top, in order (a node will
271 appear in the list at a higher index than all of its dependencies).
277 unchecked_deps = list(top)
343 Note: This intentionally does not return the list of files that appear in such
348 new_args = list(args)
/external/chromium_org/build/android/pylib/base/
H A Dtest_dispatcher.py136 """Return a list of the names of the tests currently in the collection."""
138 return list(t.test for t in self._tests)
145 Adds TestRunResults objects to the out_results list and may add tests to the
146 out_retry list.
151 out_results: A list to add TestRunResults to.
237 runners: A list of TestRunner objects.
295 included in the returned list.
304 A list of TestRunner objects.
323 runners: A list of TestRunner objects.
341 A list o
[all...]
/external/chromium_org/build/android/pylib/
H A Dchrome_test_server_spawner.py199 if not isinstance(values, list):
/external/chromium_org/build/android/pylib/device/
H A Ddevice_blacklist.py23 A list containing bad devices.
37 blacklist: list of bad devices to write to the _BLACKLIST_JSON file.
41 json.dump(list(set(blacklist)), f)
48 devices: list of bad devices to be added to the _BLACKLIST_JSON file.
H A Ddevice_utils.py29 """Returns a list of Android Virtual Devices.
32 A list containing the configured AVDs.
292 cmd: A list containing the command to run on the device and any arguments.
333 if isinstance(cmd, list):
405 single_category = (intent.category[0] if isinstance(intent.category, list)
594 The contents of the file at |device_path| as a list of lines.
601 # TODO(jbudorick) Evaluate whether we awant to return a list of lines after
669 to list.
850 """Creates a Parallelizer to operate over the provided list of devices.
852 If |devices| is either |None| or an empty list, th
[all...]
H A Dintent.py22 category: A string or list containing any categories.
33 if isinstance(category, list) or category is None:
/external/chromium_org/build/android/pylib/host_driven/
H A Dtest_info_collection.py62 # Master list of all valid tests.
72 test_infos: a list of TestInfos representing test functions/methods.
80 annotations: List of annotations. Each test in the returned list is
83 list are not annotated with any of these annotations.
108 available_tests = list(set(available_tests) - set(excluded_tests))
124 annotation_filter_list: list of annotation filters to match (e.g. Smoke)
/external/chromium_org/build/android/pylib/instrumentation/
H A Dtest_jar.py196 """Returns a list of all annotations for the given |test|. May be empty."""
219 """Returns a list of all tests that match the given annotation filters."""
232 """Get a list of test methods with no known annotations."""
249 """Get a list of tests matching any of the annotations and the filter.
273 available_tests = list(set(available_tests) - set(excluded_tests))
/external/chromium_org/build/android/pylib/linker/
H A Dtest_case.py207 class AddressList(list):
208 """A helper class to pretty-print a list of load addresses."""
245 lib_map_list: a list of dictionaries that map library names (string)
246 to load addresses (int). Each item in the list corresponds to a
254 # Collect, for each library, its list of load addresses.
270 # the list, then randomization is broken.
/external/chromium_org/build/android/pylib/utils/
H A Dparallelizer.py7 This class wraps a list of objects of the same type, emulates their
11 This means that, given a list of objects:
22 we can take a sequential operation on that list of objects:
69 "Passed empty list to 'Parallelizer'")
150 A list of the results, in order of the provided devices.
178 f, args=tuple([o] + list(args)), kwargs=kwargs,

Completed in 4967 milliseconds

1234567891011>>