HomeSort by relevance Sort by last modified time
    Searched defs:exit (Results 151 - 175 of 937) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/python/cpython2/Lib/unittest/test/
test_program.py 50 program = unittest.TestProgram(testRunner=runner, exit=False, verbosity=2)
70 program = unittest.main(exit=False,
83 exit=True,
97 exit = False variable in class:InitialisableProgram
138 program.exit = True
142 program.exit = False
144 self.assertTrue(program.exit)
148 self.assertTrue(program.exit)
  /external/python/cpython2/Tools/pybench/
CommandLine.py 388 process is terminated with the return value as exit code.
393 def exit(self, rc=0): member in class:Application
395 """ Exit the program.
397 rc is used as exit code and passed back to the calling
438 sys.exit(1)
443 sys.exit(rc)
476 sys.exit(rc)
486 process is terminated with the return value as exit code.
548 # and the return value is passed to sys.exit() as argument.
606 The return value is passed to sys.exit() as argument. I
    [all...]
  /external/python/cpython3/Lib/idlelib/
run.py 84 # completion, exit and interruptable (the main thread) flags:
132 exit()
159 exit()
268 def exit(): function
269 """Exit subprocess, possibly after first clearing exit functions.
280 sys.exit(0)
288 Interrupt the MainThread and exit server if link is dropped.
422 # Keep a reference to stdin so that it won't try to exit IDLE if
434 "Override SocketIO method - terminate wait on callback and exit thread
    [all...]
  /external/python/cpython3/Lib/unittest/test/
test_discovery.py 16 exit = True variable in class:TestableTestProgram
    [all...]
test_program.py 51 program = unittest.TestProgram(testRunner=runner, exit=False, verbosity=2)
82 program = unittest.TestProgram(testRunner=runner, exit=False,
98 testRunner=runner, exit=False,
106 program = unittest.main(exit=False,
119 exit=True,
133 exit = False variable in class:InitialisableProgram
  /external/python/cpython3/Tools/pybench/
CommandLine.py 392 process is terminated with the return value as exit code.
397 def exit(self, rc=0): member in class:Application
399 """ Exit the program.
401 rc is used as exit code and passed back to the calling
442 sys.exit(1)
447 sys.exit(rc)
480 sys.exit(rc)
490 process is terminated with the return value as exit code.
553 # and the return value is passed to sys.exit() as argument.
614 The return value is passed to sys.exit() as argument. I
    [all...]
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/dummyExt/
XLoggerTest.java 94 logger.exit();
95 assertEquals(Integer.valueOf(0), logger.exit(0));
96 assertEquals(Boolean.FALSE, logger.exit(false));
99 verify((LoggingEvent) listAppender.list.get(0), "exit");
100 verify((LoggingEvent) listAppender.list.get(1), "exit with (0)");
101 verify((LoggingEvent) listAppender.list.get(2), "exit with (false)");
135 logger.exit();
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
RegionInfo.h 10 // Calculate a program structure tree built out of single entry single exit
143 /// @brief A single entry single exit Region.
154 /// BasicBlocks that merge several entry or exit edges so that after the merge
155 /// just one entry and one exit edge exists.
161 /// The \e Exit of a Region is the first BasicBlock that is passed after
162 /// leaving the Region. It is not an element of the Region. The exit BasicBlock,
215 // The exit BasicBlock of this region.
217 BasicBlock *exit; member in class:llvm::Region
246 /// @param Exit The exit basic block of the region
    [all...]
  /external/v8/src/compiler/
code-generator-impl.h 178 // Eager deoptimization exit.
203 Label* exit() { return &exit_; } function in class:v8::internal::compiler::OutOfLineCode
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.h 369 void SetExit(Label* exit) { external_exit_ = exit; }
371 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.h 117 Label* exit,
398 void SetExit(Label* exit) { external_exit_ = exit; }
400 Label* exit() { return (external_exit_ != NULL) ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.h 368 void SetExit(Label* exit) { external_exit_ = exit; }
370 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
371 Label* done() { return codegen_->NeedsDeferredFrame() ? &done_ : exit(); }
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.h 388 void SetExit(Label* exit) { external_exit_ = exit; }
390 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.h 391 void SetExit(Label* exit) { external_exit_ = exit; }
393 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.h 325 void SetExit(Label* exit) { external_exit_ = exit; }
327 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.h 323 void SetExit(Label* exit) { external_exit_ = exit; }
325 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.h 363 void SetExit(Label* exit) { external_exit_ = exit; }
365 Label* exit() { return external_exit_ != NULL ? external_exit_ : &exit_; } function in class:v8::internal::LDeferredCode
366 Label* done() { return codegen_->NeedsDeferredFrame() ? &done_ : exit(); }
  /external/valgrind/exp-bbv/tests/amd64-linux/
ll.S 71 je done_logo # ! if so, exit
368 # Exit
370 exit: label
371 push $SYSCALL_EXIT # Put exit syscall in rax
  /external/valgrind/exp-bbv/tests/arm-linux/
ll.S 63 bge done_logo @ if so, exit
249 @ Exit
251 exit: label
254 swi 0x0 @ and exit
  /external/valgrind/exp-bbv/tests/x86-linux/
ll.S 63 je done_logo # if so, exit
367 # Exit
369 exit: label
372 inc %eax # put exit syscall number (1) in eax
373 int $0x80 # and exit
  /frameworks/base/media/jni/
android_media_VolumeShaper.h 100 void exit(JNIEnv *env) { function in struct:android::VolumeShaperHelper::fields_t
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64LDBackend.cpp 445 Fragment* exit = &*(*island).end(); local
446 if (exit == &*(*island).begin()->getParent()->end()) {
450 if (((*island).offset() + (*island).size()) > exit->getOffset()) {
453 invalid_frags.push_back(exit);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
Binding.java 113 Scope.exit();
114 Scope.exit();
BindingTarget.java 154 Scope.exit();
165 Scope.exit();
176 Scope.exit();
200 Scope.exit();
DataBinder.java 87 Scope.exit();
105 Scope.exit();

Completed in 526 milliseconds

1 2 3 4 5 67 8 91011>>