HomeSort by relevance Sort by last modified time
    Searched defs:loop (Results 251 - 275 of 789) sorted by null

<<11121314151617181920>>

  /external/owasp/sanitizer/tools/findbugs/bin/
findbugs.bat 37 goto loop
48 :loop label
  /external/python/cpython2/Demo/tix/
tixwidgets.py 138 def loop(self): member in class:Demo
181 demo.loop()
    [all...]
  /external/python/cpython2/Lib/
asyncore.py 205 def loop(timeout=30.0, use_poll=False, map=None, count=None): function
  /external/python/cpython3/Lib/asyncio/
proactor_events.py 1 """Event loop using a proactor and related classes.
25 def __init__(self, loop, sock, protocol, waiter=None,
27 super().__init__(extra, loop)
155 def __init__(self, loop, sock, protocol, waiter=None,
157 super().__init__(loop, sock, protocol, waiter, extra, server)
400 raise NotImplementedError("Proactor event loop requires Python 3.5"
427 raise RuntimeError("Cannot close a running event loop")
431 # Call these methods before closing the event loop (before calling
433 # call_soon(), which is forbidden when the event loop is closed.
440 # Close the event loop
500 def loop(f=None): function in function:BaseProactorEventLoop._start_serving
    [all...]
  /external/python/cpython3/Lib/
asyncore.py 192 def loop(timeout=30.0, use_poll=False, map=None, count=None): function
  /external/python/cpython3/Modules/clinic/
_asynciomodule.c.h 6 "Future(*, loop=None)\n"
17 " via the event loop\'s call_soon_threadsafe().\n"
23 _asyncio_Future___init___impl(FutureObj *self, PyObject *loop);
29 static const char * const _keywords[] = {"loop", NULL};
31 PyObject *loop = NULL; local
34 &loop)) {
37 return_value = _asyncio_Future___init___impl((FutureObj *)self, loop);
232 "Task(coro, *, loop=None)\n"
238 _asyncio_Task___init___impl(TaskObj *self, PyObject *coro, PyObject *loop);
244 static const char * const _keywords[] = {"coro", "loop", NULL}
247 PyObject *loop = NULL; local
281 PyObject *loop = Py_None; local
313 PyObject *loop = Py_None; local
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowLooper.java 96 public static void loop() { method in class:ShadowLooper
  /external/skia/src/pathops/
SkPathOpsCommon.cpp 47 bool loop = false; local
56 if ((computeWinding = unorderable || (angle == firstAngle && loop))) {
57 break; // if we get here, there's no winding, loop is unorderable
59 loop |= angle == firstAngle;
63 // if the angle loop contains an unorderable span, the angle order may be useless
  /external/skqp/src/pathops/
SkPathOpsCommon.cpp 47 bool loop = false; local
56 if ((computeWinding = unorderable || (angle == firstAngle && loop))) {
57 break; // if we get here, there's no winding, loop is unorderable
59 loop |= angle == firstAngle;
63 // if the angle loop contains an unorderable span, the angle order may be useless
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
InterpreterInstaller.java 226 Looper.loop();
  /external/swiftshader/third_party/LLVM/examples/BrainF/
BrainF.cpp 21 // [ while(*h) { Start loop
22 // ] } End loop
190 int loop; local
293 // Make part of PHI instruction now, wait until end of loop to finish
314 // Reading stdin loop
315 loop = (cursym == SYM_NONE)
318 while(loop) {
326 loop = 0;
337 // loop = 1
342 // loop =
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
params_test.cc 337 // Test large number of parameters flowing into a while-loop.
372 // Add bool parameter for the loop condition. Use a parameter HLO instead of a
414 auto loop = builder.While(condition, body, init); local
418 outputs.push_back(builder.GetTupleElement(loop, i));
  /external/tensorflow/tensorflow/python/training/
supervisor.py 77 the training loop should also stop. This is why the training loop has to
155 every 60 seconds, so we launch it with `sv.loop()`.
161 sv.loop(60, print_loss, (sess, ))
775 def loop(self, timer_interval_secs, target, args=None, kwargs=None): member in class:Supervisor
811 `loop()` method. To wait on additional threads, pass the
    [all...]
  /external/toybox/toys/other/
vmstat.c 80 unsigned loop, rows = (toys.optflags & FLAG_n) ? 0 : 25, local
89 for (loop = 0; !loop_max || loop <= loop_max; loop++) {
90 unsigned idx = loop&1, offset = 0, expected = 0;
94 if (loop && loop_delay) sleep(loop_delay);
97 if (rows>3 && !(loop % (rows-3))) {
118 // Collect unit adjustments (outside the inner loop to save time)
120 if (!loop) {
  /external/v8/src/compiler/
verifier.cc 305 // Terminates take one loop and effect.
451 Node* loop = NodeProperties::GetControlInput(node, 1); local
452 CHECK_EQ(IrOpcode::kLoop, loop->opcode());
    [all...]
  /external/v8/src/regexp/ia32/
regexp-macro-assembler-ia32.cc 230 Label loop; local
231 __ bind(&loop);
260 // Compare to end of match, and loop if not done.
262 __ j(below, &loop);
391 Label loop; local
392 __ bind(&loop);
407 __ j(below, &loop);
760 } else { // Unroll the loop.
    [all...]
  /external/v8/src/regexp/mips/
regexp-macro-assembler-mips.cc 257 Label loop;
258 __ bind(&loop);
280 __ Branch(&loop, lt, a0, Operand(a1));
402 Label loop; local
403 __ bind(&loop);
417 __ Branch(&loop, lt, a0, Operand(a1));
753 // unroll the loop once to add an operation between a load of a register
    [all...]
  /external/v8/src/regexp/mips64/
regexp-macro-assembler-mips64.cc 293 Label loop;
294 __ bind(&loop);
316 __ Branch(&loop, lt, a0, Operand(a1));
432 Label loop; local
433 __ bind(&loop);
447 __ Branch(&loop, lt, a0, Operand(a1));
789 // unroll the loop once to add an operation between a load of a register
    [all...]
  /external/v8/src/regexp/x87/
regexp-macro-assembler-x87.cc 229 Label loop; local
230 __ bind(&loop);
259 // Compare to end of match, and loop if not done.
261 __ j(below, &loop);
390 Label loop; local
391 __ bind(&loop);
406 __ j(below, &loop);
759 } else { // Unroll the loop.
    [all...]
  /external/vixl/test/aarch32/
test-simulator-cond-dt-drt-drd-drn-drm-float-f64-a32.cc 147 // It used to generate a loop over an instruction.
366 // A loop will be generated for each element of this array.
1416 Label loop; local
    [all...]
test-simulator-cond-dt-drt-drd-drn-drm-float-f64-t32.cc 147 // It used to generate a loop over an instruction.
366 // A loop will be generated for each element of this array.
1416 Label loop; local
    [all...]
test-simulator-cond-rd-memop-immediate-512-a32.cc 150 // It used to generate a loop over an instruction.
251 // A loop will be generated for each element of this array.
3378 Label loop; local
    [all...]
test-simulator-cond-rd-memop-immediate-8192-a32.cc 150 // It used to generate a loop over an instruction.
251 // A loop will be generated for each element of this array.
3378 Label loop; local
    [all...]
test-simulator-cond-rd-memop-rs-a32.cc 155 // It used to generate a loop over an instruction.
258 // A loop will be generated for each element of this array.
3389 Label loop; local
    [all...]
test-simulator-cond-rd-memop-rs-shift-amount-1to31-a32.cc 153 // It used to generate a loop over an instruction.
256 // A loop will be generated for each element of this array.
3383 Label loop; local
    [all...]

Completed in 754 milliseconds

<<11121314151617181920>>