Home
last modified time | relevance | path

Searched refs:args_iterator (Results 1 – 3 of 3) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/gslib/
Dcommand.py1090 def Apply(self, func, args_iterator, exception_handler, argument
1167 self._ParallelApply(func, args_iterator, exception_handler, caller_id,
1171 self._SequentialApply(func, args_iterator, exception_handler, caller_id,
1198 def _SequentialApply(self, func, args_iterator, exception_handler, caller_id, argument
1210 args_iterator = iter(args_iterator)
1218 args = args_iterator.next()
1254 def _ParallelApply(self, func, args_iterator, exception_handler, caller_id, argument
1360 producer_thread = ProducerThread(copy.copy(self), args_iterator, caller_id,
1540 def __init__(self, cls, args_iterator, caller_id, func, task_queue, argument
1567 self.args_iterator = args_iterator
[all …]
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
Dtest_parallelism_framework.py251 def _RunApply(self, func, args_iterator, process_count, thread_count, argument
257 return command_inst.Apply(func, args_iterator, exception_handler,
/external/clang/lib/StaticAnalyzer/Checkers/
DMallocChecker.cpp1053 OwnershipAttr::args_iterator I = Att->args_begin(), E = Att->args_end(); in MallocMemReturnsAttr()