Searched defs:loop (Results 201 - 225 of 344) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/password_manager/
H A Dnative_backend_gnome_x_unittest.cc320 // to be posted), which posts a message to the UI thread to quit the loop.
321 // That way we can run both loops and be sure that the UI thread loop will
328 static void PostQuitTask(base::MessageLoop* loop) { argument
329 loop->PostTask(FROM_HERE, base::MessageLoop::QuitClosure());
/external/chromium_org/chrome/browser/predictors/
H A Dresource_prefetch_predictor_unittest.cc127 base::RunLoop loop; local
128 loop.RunUntilIdle(); // Runs the DB lookup.
/external/chromium_org/chrome/common/
H A Dservice_process_util_unittest.cc51 void ShutdownTask(base::MessageLoop* loop) { argument
52 // Quit the main message loop.
55 loop->PostTask(FROM_HERE, base::MessageLoop::QuitClosure());
/external/chromium_org/cloud_print/service/win/
H A Dcloud_print_service_config.cc443 base::MessageLoopForUI loop; local
449 loop.SetMessageFilter(filter.Pass());
451 loop.Run();
/external/chromium_org/content/browser/
H A Dbrowser_thread_impl.cc79 // The goal is to make it impossible for chrome to 'infinite loop' during
248 // Note: since the array is so small, ok to loop instead of creating a map,
465 base::MessageLoop* loop = thread->message_loop(); local
466 return loop;
/external/chromium_org/content/browser/gpu/
H A Dbrowser_gpu_channel_host_factory.cc45 scoped_refptr<base::MessageLoopProxy> loop = local
47 loop->PostTask(
/external/chromium_org/content/child/fileapi/
H A Dwebfilesystem_impl.cc84 base::MessageLoopProxy* loop,
88 if (!loop->RunsTasksOnCurrentThread()) {
89 loop->PostTask(FROM_HERE,
91 make_scoped_refptr(loop), method, params,
83 CallDispatcherOnMainThread( base::MessageLoopProxy* loop, Method method, const Params& params, scoped_ptr<WaitableCallbackResults> waitable_results) argument
/external/chromium_org/content/common/gpu/client/
H A Dgpu_channel_host.cc340 scoped_refptr<MessageLoopProxy> loop) {
344 info.loop = loop;
367 info.loop->PostTask(
393 info.loop->PostTask(
337 AddRoute( int route_id, base::WeakPtr<IPC::Listener> listener, scoped_refptr<MessageLoopProxy> loop) argument
/external/chromium_org/content/test/
H A Dwebrtc_audio_device_test.cc397 // Posts a final task to the IO message loop and waits for completion.
409 base::MessageLoopProxy* loop) {
411 loop->PostTask(FROM_HERE, base::Bind(&base::WaitableEvent::Signal,
418 ADD_FAILURE() << "Failed to wait for message loop";
408 WaitForMessageLoopCompletion( base::MessageLoopProxy* loop) argument
/external/chromium_org/media/audio/win/
H A Daudio_low_latency_input_win_unittest.cc33 ACTION_P3(CheckCountAndPostQuitTask, count, limit, loop) {
35 loop->PostTask(FROM_HERE, base::MessageLoop::QuitClosure());
379 base::MessageLoopForUI loop; local
401 .WillRepeatedly(CheckCountAndPostQuitTask(&count, 10, &loop));
403 loop.Run();
424 .WillRepeatedly(CheckCountAndPostQuitTask(&count, 10, &loop));
426 loop.Run();
444 .WillRepeatedly(CheckCountAndPostQuitTask(&count, 10, &loop));
446 loop.Run();
/external/chromium_org/net/udp/
H A Dudp_socket_libevent.cc543 u_char loop = 0; local
545 &loop, sizeof(loop));
547 u_int loop = 0; local
549 &loop, sizeof(loop));
/external/chromium_org/third_party/angle/src/compiler/depgraph/
H A DDependencyGraph.h197 virtual void visitLoop(TGraphLoop* loop) {}; argument
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddtfmtrtts.cpp26 // Warning -- makes test run infinite loop!!!
163 // Special infinite loop test mode for finding hard to reproduce errors
328 // We go through this loop until we achieve a match or until
329 // the maximum loop count is reached. We record the points at
332 int loop; local
335 for(loop = 0; loop < DEPTH; ++loop) {
336 if (loop > 0) {
337 d[loop]
[all...]
/external/chromium_org/third_party/jinja2/
H A Druntime.py281 """A loop context for dynamic iteration."""
300 """Cycles among the arguments with the current loop index."""
325 def loop(self, iterable): member in class:LoopContext
327 raise TypeError('Tried to call non recursive loop. Maybe you '
332 # the the loop without or with too many arguments.
333 __call__ = loop
334 del loop
340 # the loop context was created (ie: iterating over a generator)
358 """The iterator for a loop context."""
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dtestutils.cc165 // Which loop and which index in the loop are we reading now.
166 size_t loop = i / GetTestPacketCount(); local
190 loop * GetTestPacketCount()),
192 loop * kRtpTimestampIncrease),
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnvfx_vertprog.c467 struct nvfx_loop_entry loop; local
753 loop.cont_target = idx;
754 loop.brk_target = finst->Label.Label + 1;
755 util_dynarray_append(&vpc->loop_stack, struct nvfx_loop_entry, loop);
758 loop = util_dynarray_pop(&vpc->loop_stack, struct nvfx_loop_entry);
761 reloc.target = loop.cont_target;
767 loop = util_dynarray_top(&vpc->loop_stack, struct nvfx_loop_entry);
770 reloc.target = loop.cont_target;
776 loop = util_dynarray_top(&vpc->loop_stack, struct nvfx_loop_entry);
779 reloc.target = loop
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow_deadcode.c93 struct loopinfo * loop = &s->LoopStack[s->LoopStackSize - 1]; local
95 loop->Breaks, loop->BreakCount, loop->BreaksReserved, 1);
97 memcpy(&loop->Breaks[loop->BreakCount++], &s->R, sizeof(s->R));
236 /* Mark all sources in the loop body as used before doing
275 struct loopinfo * loop = &s.LoopStack[s.LoopStackSize-1]; local
276 for(i = 0; i < loop->BreakCount; i++) {
277 or_updatemasks(&s.R, &s.R, &loop
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_jumps.cpp32 * 3. Replace all "break" with a single conditional one at the end of the loop
42 * Continues are lowered by adding a per-loop "execute flag", initialized to
43 * true, that when cleared inhibits all execution until the end of the loop.
46 * at the end of the loop, and trigger the unique "break".
54 * a dummy loop and using break.
86 * - It assumes it is always possible for control to flow from a loop
88 * is not true (since all execution paths through the loop might
101 * continue to the top of the innermost enclosing loop, break out
109 * continue to the top of the innermost enclosing loop, break out
116 * continue to the top of the innermost enclosing loop, brea
162 ir_loop* loop; member in struct:loop_record
272 struct loop_record loop; member in struct:ir_lower_jumps_visitor
[all...]
/external/chromium_org/ui/views/widget/
H A Dwidget_interactive_uitest.cc34 // A View that closes the Widget and exits the current message-loop when it
119 // initiates a nested message-loop when it receives a mouse-press event.
128 // Start a nested loop.
133 base::MessageLoopForUI* loop = base::MessageLoopForUI::current(); variable
134 base::MessageLoop::ScopedNestableTaskAllower allow(loop);
306 // a nested loop (like a menu does). The View in |second| terminates the
307 // nested loop and closes the widget.
310 // dispatched after the nested loop starts.
/external/chromium_org/v8/src/arm/
H A Dcodegen-arm.cc137 Label loop, less_256, less_128, less_64, less_32, _16_or_less, _8_or_less;
168 __ bind(&loop);
178 __ b(ge, &loop);
240 Label loop;
246 __ bind(&loop);
250 __ b(&loop, ne);
293 Label loop;
299 __ bind(&loop);
304 __ b(&loop, ne);
319 Label loop;
431 Label loop, entry, convert_hole, gc_required, only_change_map, done; local
557 Label entry, loop, convert_hole, gc_required, only_change_map; local
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-bch.cc36 * It is used to check if, inside one loop, all execution paths contain
38 * The reason is that if there is a path that stays in the loop without
39 * executing a check then the check cannot be hoisted out of the loop (it
41 * We also check is there are paths that exit the loop early, and if yes we
66 * Initializes the table element for a given loop (identified by its
71 HLoopInformation* loop = data->phi()->block()->current_loop(); local
72 is_start_ = (block() == loop->loop_header());
74 is_in_loop_ = loop->IsNestedInThisLoop(block()->current_loop());
116 * Initializes the table for a given loop (identified by its induction
135 * induction variable out of the loop
[all...]
/external/chromium_org/v8/src/mips/
H A Dcodegen-mips.cc185 Label loop, entry, convert_hole, gc_required, only_change_map, done; local
238 // Prepare for conversion loop.
270 __ bind(&loop);
298 __ Branch(&loop, lt, t3, Operand(t2));
315 Label entry, loop, convert_hole, gc_required, only_change_map; local
343 // Prepare for conversion loop.
366 __ bind(&loop);
397 __ Branch(&loop, lt, a3, Operand(t1));
/external/chromium_org/v8/src/x64/
H A Dcodegen-x64.cc340 Label loop, entry, convert_hole; local
379 // Conversion loop.
380 __ bind(&loop);
401 __ j(not_sign, &loop);
416 Label loop, entry, convert_hole, gc_required, only_change_map; local
442 // Prepare for conversion loop.
456 __ bind(&loop);
494 __ j(not_sign, &loop);
/external/clang/test/CodeGenCXX/
H A Dcxx0x-initializer-stdinitializerlist.cpp196 // Only one destroy loop, since only one inner init list is directly inited.
211 // Only one destroy loop, since only one inner init list is directly inited.
289 void loop(X &x1, X &x2) { function in namespace:rdar13325066
317 // Destruction loop for underlying array.
334 // Destruction loop for underlying array.
356 // Destruction loop for underlying array.
/external/dnsmasq/src/
H A Dutil.c70 int r; int i; int loop; local
75 for (loop = 0;loop < 2;++loop) {

Completed in 650 milliseconds

1234567891011>>