| /external/chromium_org/chrome/test/chromedriver/ | 
| commands_unittest.cc | 87   base::MessageLoop loop;  local 138   base::MessageLoop loop;  local
 221   base::MessageLoop loop;  local
 622   base::MessageLoop loop;  local
 714   base::MessageLoop loop;  local
 
 | 
| /external/chromium_org/components/dom_distiller/core/ | 
| distiller_unittest.cc | 331   base::MessageLoopForUI loop;  local 346   base::MessageLoopForUI loop;  local
 360   base::MessageLoopForUI loop;  local
 383   base::MessageLoopForUI loop;  local
 412   base::MessageLoopForUI loop;  local
 413   // Create a loop, the next page is same as the current page. This could
 426   base::MessageLoopForUI loop;  local
 460   base::MessageLoopForUI loop;  local
 481   base::MessageLoopForUI loop;  local
 494   base::MessageLoopForUI loop;  local
 520  base::MessageLoopForUI loop;  local
 539  base::MessageLoopForUI loop;  local
 562  base::MessageLoopForUI loop;  local
 584  base::MessageLoopForUI loop;  local
 608  base::MessageLoopForUI loop;  local
 631  base::MessageLoopForUI loop;  local
 [all...]
 | 
| /external/chromium_org/content/browser/ | 
| browser_thread_impl.cc | 135   // The goal is to make it impossible for chrome to 'infinite loop' during 314   // Note: since the array is so small, ok to loop instead of creating a map,
 523   base::MessageLoop* loop = thread->message_loop();  local
 524   return loop;
 
 | 
| /external/chromium_org/content/browser/gpu/ | 
| browser_gpu_channel_host_factory.cc | 107   scoped_refptr<base::MessageLoopProxy> loop =  local 110   loop->PostTask(
 
 | 
| /external/chromium_org/media/audio/win/ | 
| audio_low_latency_input_win_unittest.cc | 33 ACTION_P3(CheckCountAndPostQuitTask, count, limit, loop) { 35     loop->PostTask(FROM_HERE, base::MessageLoop::QuitClosure());
 372   base::MessageLoopForUI loop;  local
 393       .WillRepeatedly(CheckCountAndPostQuitTask(&count, 10, &loop));
 395   loop.Run();
 413       .WillRepeatedly(CheckCountAndPostQuitTask(&count, 10, &loop));
 415   loop.Run();
 429       .WillRepeatedly(CheckCountAndPostQuitTask(&count, 10, &loop));
 431   loop.Run();
 
 | 
| /external/chromium_org/mojo/apps/js/test/ | 
| js_to_cpp_unittest.cc | 414   base::MessageLoop loop;  member in class:mojo::js::JsToCppTest 
 | 
| /external/chromium_org/net/tools/gdig/ | 
| gdig.cc | 266   base::MessageLoopForIO loop;  local 
 | 
| /external/chromium_org/net/udp/ | 
| udp_socket_libevent.cc | 545       u_char loop = 0;  local 547                       &loop, sizeof(loop));
 549       u_int loop = 0;  local
 551                       &loop, sizeof(loop));
 
 | 
| /external/chromium_org/third_party/jinja2/ | 
| runtime.py | 281     """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/mesa/src/src/gallium/drivers/nv30/ | 
| nvfx_vertprog.c | 467    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.brk_target
 [all...]
 | 
| /external/chromium_org/third_party/mesa/src/src/glsl/ | 
| lower_jumps.cpp | 32  * 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, break ou
 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/third_party/skia/third_party/lua/src/ | 
| lvm.c | 77         ci->u.l.savedpc <= L->oldpc ||  /* when jump back (loop), or when */ 111   int loop;  local
 112   for (loop = 0; loop < MAXTAGLOOP; loop++) {
 132   luaG_runerror(L, "loop in gettable");
 137   int loop;  local
 138   for (loop = 0; loop < MAXTAGLOOP; loop++)
 [all...]
 | 
| /external/chromium_org/ui/events/platform/ | 
| platform_event_source_unittest.cc | 496 // Provides mechanism for running tests from inside an active message-loop. 604 // Tests that resetting an overridden dispatcher causes the nested message-loop
 620     // the current iteration of the message-loop.
 638     // Terminate the message-loop.
 662     base::MessageLoopForUI* loop = base::MessageLoopForUI::current();  variable
 663     base::MessageLoopForUI::ScopedNestableTaskAllower allow_nested(loop);
 664     loop->PostTask(
 686 // overridden dispatcher before the nested message-loop completely unwinds
 725     base::MessageLoopForUI* loop = base::MessageLoopForUI::current();  local
 726     base::MessageLoopForUI::ScopedNestableTaskAllower allow_nested(loop);
 764  base::MessageLoopForUI* loop = base::MessageLoopForUI::current();  variable
 [all...]
 | 
| /external/chromium_org/v8/src/arm/ | 
| codegen-arm.cc | 101     Label loop, less_256, less_128, less_64, less_32, _16_or_less, _8_or_less; 132     __ bind(&loop);
 142     __ b(ge, &loop);
 204     Label loop;
 210     __ bind(&loop);
 214     __ b(&loop, ne);
 256     Label loop;
 262     __ bind(&loop);
 267     __ b(&loop, ne);
 282     Label loop;
 416  Label loop, entry, convert_hole, gc_required, only_change_map, done;  local
 558  Label entry, loop, convert_hole, gc_required, only_change_map;  local
 [all...]
 | 
| /external/chromium_org/v8/src/ | 
| hydrogen-bch.cc | 13  * It is used to check if, inside one loop, all execution paths contain 15  * The reason is that if there is a path that stays in the loop without
 16  * executing a check then the check cannot be hoisted out of the loop (it
 18  * We also check is there are paths that exit the loop early, and if yes we
 43      * Initializes the table element for a given loop (identified by its
 48       HLoopInformation* loop = data->phi()->block()->current_loop();  local
 49       is_start_ = (block() == loop->loop_header());
 51       is_in_loop_ = loop->IsNestedInThisLoop(block()->current_loop());
 93    * Initializes the table for a given loop (identified by its induction
 112    * induction variable out of the loop
 [all...]
 | 
| /external/chromium_org/v8/src/ia32/ | 
| regexp-macro-assembler-ia32.cc | 236     Label loop;  local 237     __ bind(&loop);
 266     // Compare to end of match, and loop if not done.
 268     __ j(below, &loop);
 367   Label loop;  local
 368   __ bind(&loop);
 383   __ j(below, &loop);
 730     } else {  // Unroll the loop.
 [all...]
 | 
| /external/chromium_org/v8/src/mips/ | 
| codegen-mips.cc | 151     // copied. We will loop, incrementing a0 and a1 until a0 equals a3. 156     __ addu(a3, a0, a3);  // Now a3 is the final dst after loop.
 158     // When in the loop we prefetch with kPrefHintPrepareForStore hint,
 258     // Here we have less than 32 bytes to copy. Set up for a loop to copy
 261     // all the word chunks have been copied. We will loop, incrementing a0
 318     // loop, incrementing a0 and a1 until a0 equals a3.
 558     // Less than 32 bytes to copy. Set up for a loop to
 698   Label loop, entry, convert_hole, gc_required, only_change_map, done;  local
 764   // Prepare for conversion loop.
 803   __ bind(&loop);
 848  Label entry, loop, convert_hole, gc_required, only_change_map;  local
 [all...]
 | 
| regexp-macro-assembler-mips.cc | 259     Label loop; 260     __ bind(&loop);
 282     __ Branch(&loop, lt, a0, Operand(a1));
 366   Label loop;  local
 367   __ bind(&loop);
 381   __ Branch(&loop, lt, a0, Operand(a1));
 711         // unroll the loop once to add an operation between a load of a register
 [all...]
 | 
| /external/chromium_org/v8/src/mips64/ | 
| codegen-mips64.cc | 152     // copied. We will loop, incrementing a0 and a1 until a0 equals a3. 157     __ addu(a3, a0, a3);  // Now a3 is the final dst after loop.
 159     // When in the loop we prefetch with kPrefHintPrepareForStore hint,
 259     // Here we have less than 32 bytes to copy. Set up for a loop to copy
 262     // all the word chunks have been copied. We will loop, incrementing a0
 310     // loop, incrementing a0 and a1 until a0 equals a3.
 459     // Less than 32 bytes to copy. Set up for a loop to
 592   Label loop, entry, convert_hole, gc_required, only_change_map, done;  local
 657   // Prepare for conversion loop.
 695   __ bind(&loop);
 740  Label entry, loop, convert_hole, gc_required, only_change_map;  local
 [all...]
 | 
| regexp-macro-assembler-mips64.cc | 295     Label loop; 296     __ bind(&loop);
 318     __ Branch(&loop, lt, a0, Operand(a1));
 402   Label loop;  local
 403   __ bind(&loop);
 417   __ Branch(&loop, lt, a0, Operand(a1));
 756         // unroll the loop once to add an operation between a load of a register
 [all...]
 | 
| /external/chromium_org/v8/src/x87/ | 
| codegen-x87.cc | 239   Label loop, entry, convert_hole, gc_required, only_change_map;  local 279   // Prepare for conversion loop.
 294   __ bind(&loop);
 321   __ j(not_sign, &loop);
 353   Label loop, entry, convert_hole, gc_required, only_change_map, success;  local
 405   __ bind(&loop);
 431   __ j(not_sign, &loop);
 
 | 
| deoptimizer-x87.cc | 246   Label loop, done;  local 258   __ bind(&loop);
 266   __ j(not_zero, &loop, Label::kNear);
 375   // Outer loop state: eax = current FrameDescription**, edx = one past the
 382   // Inner loop state: ebx = current FrameDescription*, ecx = loop index.
 
 | 
| regexp-macro-assembler-x87.cc | 235     Label loop;  local 236     __ bind(&loop);
 265     // Compare to end of match, and loop if not done.
 267     __ j(below, &loop);
 366   Label loop;  local
 367   __ bind(&loop);
 382   __ j(below, &loop);
 729     } else {  // Unroll the loop.
 [all...]
 | 
| /external/libhevc/common/x86/ | 
| ihevc_16x16_itrans_recon_sse42_intr.c | 171     WORD32  loop = 0;  local 190         loop = 1;
 193         loop = 2;
 197     for(i = 0; i < loop; i++)
 [all...]
 | 
| ihevc_itrans_recon_16x16_ssse3_intr.c | 175     WORD32  loop = 0;  local 196         loop = 1;
 199         loop = 2;
 203     for(i = 0; i < loop; i++)
 [all...]
 |