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

1 2 34 5 6 7 8 91011>>

  /art/compiler/optimizing/
code_sinking.cc 29 HBasicBlock* exit = graph_->GetExitBlock(); local
30 if (exit == nullptr) {
36 for (HBasicBlock* exit_predecessor : exit->GetPredecessors()) {
38 // Any predecessor of the exit that does not return, throws an exception.
gvn_test.cc 217 HBasicBlock* exit = new (GetAllocator()) HBasicBlock(graph); local
221 graph->AddBlock(exit);
224 loop_header->AddSuccessor(exit);
264 exit->AddInstruction(new (GetAllocator()) HInstanceFieldGet(parameter,
273 HInstruction* field_get_in_exit = exit->GetLastInstruction();
274 exit->AddInstruction(new (GetAllocator()) HExit());
278 ASSERT_EQ(field_get_in_exit->GetBlock(), exit);
290 // The exit block is dominated by the loop header, whose field get
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
wsgui.py 203 top.wm_protocol('WM_DELETE_WINDOW', self.exit)
208 self.exit_button = Button(top, text="Exit", command=self.exit)
229 def exit(self): member in class:AppArray
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/commons/
AdviceAdapterTest2.class 
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPDebuggeeWrapper.java 113 * Exit target Virtual Machine
116 public void exit(int exitStatus) { method in class:JDWPDebuggeeWrapper
117 vmMirror.exit(exitStatus);
  /external/fio/
helper_thread.c 7 volatile int exit; member in struct:helper_data
55 return helper_data->exit;
63 helper_data->exit = 1;
86 while (!ret && !hd->exit) {
  /external/mdnsresponder/mDNSShared/
dnsextd_parser.y 446 require_action( yyin, exit, err = 0 );
449 require_action( !err, exit, err = 1 );
457 require_action( zone, exit, err = 1 );
466 require_action( ok, exit, err = 1 );
484 require_action( authInfo, exit, err = 1 );
488 if (!ok) { free(authInfo); err = 1; goto exit; }
491 if (keylen < 0) { free(authInfo); err = 1; goto exit; }
503 require_action( found, exit, err = 1 );
518 require_action( authInfo, exit, err = 1 );
522 if (!ok) { free(authInfo); err = 1; goto exit; }
541 exit: label
    [all...]
  /external/mdnsresponder/mDNSWindows/SystemService/
Firewall.cpp 53 require(SUCCEEDED(err) && ( fwMgr != NULL ), exit);
58 require(SUCCEEDED(err) && ( fwPolicy != NULL ), exit);
78 require(SUCCEEDED(err), exit); local
82 exit:
138 require(SUCCEEDED(err) && ( fwApps != NULL ), exit);
141 require_action( ( fwProcessImageFileName != NULL ) && ( SysStringLen(fwBstrProcessImageFileName) > 0 ), exit, err = kNoMemoryErr);
152 require(SUCCEEDED(err), exit); local
164 exit:
210 require_noerr(err, exit);
219 require(SUCCEEDED(err) && ( fwApps != NULL ), exit);
232 require(SUCCEEDED(err), exit); local
240 require(SUCCEEDED(err), exit); local
245 require(SUCCEEDED(err), exit); local
321 require( SUCCEEDED( err ), exit ); local
329 require( SUCCEEDED( err ), exit ); local
337 require( SUCCEEDED( err ), exit ); local
403 require(SUCCEEDED(err), exit); local
456 require(SUCCEEDED(err), exit); local
    [all...]
  /external/mdnsresponder/mDNSWindows/
VPCDetect.cpp 52 require_noerr( err, exit );
56 require_noerr( err, exit );
60 require_noerr( err, exit );
61 require_action( status.dwCurrentState == SERVICE_RUNNING, exit, err = kUnknownErr );
66 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr ); local
72 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr ); local
78 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr ); local
85 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr ); local
91 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr ); local
98 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr ) local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.h 48 * Early exit. Useful to skip to the end of a function or block when
144 LLVMBasicBlockRef exit; member in struct:lp_build_for_loop_state
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_target.cpp 43 0, 0, 0, 0, 0, 0, // BRKPT, JOINAT, JOIN, DISCARD, EXIT, MEMBAR
97 // DISCARD, EXIT
265 Instruction *exit = in->getExit(); local
267 if (exit && exit->op == OP_BRA && exit->asFlow()->target.bb == bb) {
274 in->remove(exit);
  /external/python/cpython2/Tools/webchecker/
wsgui.py 203 top.wm_protocol('WM_DELETE_WINDOW', self.exit)
208 self.exit_button = Button(top, text="Exit", command=self.exit)
229 def exit(self): member in class:AppArray
  /external/syslinux/gpxe/src/arch/i386/drivers/net/
undiisr.S 60 jmp exit
66 exit: /* Restore registers and return */ label
  /external/xmlrpcpp/src/
XmlRpcDispatch.cpp 166 // Exit from work routine. Presumably this will be called from
169 XmlRpcDispatch::exit() function in class:XmlRpcDispatch
XmlRpcServer.cpp 185 XmlRpcServer::exit() function in class:XmlRpcServer
187 _disp.exit();
  /frameworks/base/media/jni/
android_media_PlaybackParams.h 77 void exit(JNIEnv *env) { function in struct:android::PlaybackParams::fields_t
  /frameworks/support/transition/src/androidTest/java/androidx/transition/
TransitionManagerTest.java 70 final CheckCalledRunnable exit = new CheckCalledRunnable(); local
72 mScenes[0].setExitAction(exit);
77 assertThat(exit.wasCalled(), is(false));
80 assertThat(exit.wasCalled(), is(false));
88 assertThat(exit.wasCalled(), is(true));
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
run.py 46 # completion, exit and interruptable (the main thread) flags:
91 exit()
116 exit()
210 def exit(): function
211 """Exit subprocess, possibly after first deleting sys.exitfunc
222 sys.exit(0)
229 Interrupt the MainThread and exit server if link is dropped.
268 # Keep a reference to stdin so that it won't try to exit IDLE if
280 "Override SocketIO method - terminate wait on callback and exit thread"
316 exit()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
run.py 46 # completion, exit and interruptable (the main thread) flags:
91 exit()
116 exit()
210 def exit(): function
211 """Exit subprocess, possibly after first deleting sys.exitfunc
222 sys.exit(0)
229 Interrupt the MainThread and exit server if link is dropped.
268 # Keep a reference to stdin so that it won't try to exit IDLE if
280 "Override SocketIO method - terminate wait on callback and exit thread"
316 exit()
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
exec_solaris.go 32 func exit(code uintptr) func
261 exit(253)
  /prebuilts/go/linux-x86/src/syscall/
exec_solaris.go 32 func exit(code uintptr) func
261 exit(253)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
run.py 46 # completion, exit and interruptable (the main thread) flags:
91 exit()
116 exit()
210 def exit(): function
211 """Exit subprocess, possibly after first deleting sys.exitfunc
222 sys.exit(0)
229 Interrupt the MainThread and exit server if link is dropped.
268 # Keep a reference to stdin so that it won't try to exit IDLE if
280 "Override SocketIO method - terminate wait on callback and exit thread"
316 exit()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
run.py 46 # completion, exit and interruptable (the main thread) flags:
91 exit()
116 exit()
210 def exit(): function
211 """Exit subprocess, possibly after first deleting sys.exitfunc
222 sys.exit(0)
229 Interrupt the MainThread and exit server if link is dropped.
268 # Keep a reference to stdin so that it won't try to exit IDLE if
280 "Override SocketIO method - terminate wait on callback and exit thread"
316 exit()
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/guice/
InvocationScope.java 38 * test invocation to enter/exit the scope, representing an invocation Scope, and seed configuration
83 public void exit() { method in class:InvocationScope
  /tools/tradefederation/core/tests/src/com/android/tradefed/guice/
InvocationScopeTest.java 84 scope.exit();

Completed in 1422 milliseconds

1 2 34 5 6 7 8 91011>>