Searched defs:kill (Results 1 - 25 of 74) sorted by relevance

123

/external/clang/test/Analysis/
H A DNewDelete-path-notes.cpp18 void kill() { function in struct:Odd
24 odd->kill(); // expected-note{{Calling 'Odd::kill'}}
303 // CHECK-NEXT: <string>Calling &apos;Odd::kill&apos;</string>
305 // CHECK-NEXT: <string>Calling &apos;Odd::kill&apos;</string>
/external/deqp/framework/delibs/decpp/
H A DdeProcess.cpp61 void Process::kill (void) function in class:de::Process
/external/python/cpython2/Demo/threads/
H A DGenerator.py57 def kill(self): member in class:Generator
59 raise TypeError, 'kill() called on killed generator'
82 g.kill()
87 g.kill()
H A DCoroutine.py59 # the .detach'er, or .kill the whole thing.
61 # .kill()
64 # .kill(). An EarlyExit exception does a .kill() automatically. It's
65 # a good idea to .kill() coroutines you're done with, since the
124 self.kill()
126 def kill(self): member in class:Coroutine
128 raise TypeError, 'kill() called on dead coroutines'
/external/python/cpython2/Demo/tkinter/guido/
H A Dkill.py2 # Tkinter interface to Linux `kill' command.
27 def kill(self, selected): member in class:Kill
30 os.system('kill -9 ' + pid)
49 self.kill(e.widget.get(e.widget.nearest(e.y)))
95 kill = Kill(None, borderwidth=5) variable in class:Kill
96 kill.winfo_toplevel().title('Tkinter Process Killer')
97 kill.winfo_toplevel().minsize(1, 1)
98 kill.mainloop()
H A Dsvkill.py3 # Tkinter interface to SYSV `ps' and `kill' commands.
41 def kill(self, selected): member in class:Kill
44 os.system('kill -9 ' + pid)
62 self.kill(e.widget.get(e.widget.nearest(e.y)))
125 kill = Kill(None, borderwidth=5) variable in class:Kill
126 kill.winfo_toplevel().title('Tkinter Process Killer (SYSV)')
127 kill.winfo_toplevel().minsize(1, 1)
128 kill.mainloop()
H A DManPage.py41 def kill(self): member in class:EditableManPage
/external/swiftshader/src/Shader/
H A DPixelShader.hpp58 bool kill; member in class:sw::PixelShader
/external/python/cpython2/PC/VS9.0/
H A Dbuild.bat12 rem -k Attempt to kill any running Pythons before building
20 set kill= variable
35 if '%1'=='-k' (set kill=true) & shift & goto CheckOpts variable
53 if '%kill%'=='true' (
/external/python/cpython2/PCbuild/
H A Dbuild.bat25 echo. -k Attempt to kill any running Pythons before building (usually done
56 set kill= variable
74 if "%~1"=="-k" (set kill=true) & shift & goto CheckOpts variable
110 if "%kill%"=="true" call :Kill
/external/autotest/client/site_tests/platform_TLSDate/
H A Dplatform_TLSDate.py56 def kill(self): member in class:TLSDate
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
H A DRemoteAPI.java110 public boolean kill () { method in class:RemoteAPI
/external/llvm/lib/CodeGen/
H A DLiveRangeCalc.h94 LiveInBlock(LiveRange &LR, MachineDomTreeNode *node, SlotIndex kill) argument
95 : LR(LR), DomNode(node), Kill(kill), Value(nullptr) {}
/external/ltp/testcases/kernel/syscalls/signal/
H A Dsignal01.c65 int kill; member in struct:tcase
120 if (tcases[tc].kill) {
168 if (tcases[tcase].kill)
/external/python/cpython3/PCbuild/
H A Dbuild.bat26 echo. -k Attempt to kill any running Pythons before building (usually done
57 set kill= variable
75 if "%~1"=="-k" (set kill=true) & shift & goto CheckOpts variable
115 if "%kill%"=="true" call :Kill
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowRemoteCallbackList.java73 public void kill() { method in class:ShadowRemoteCallbackList
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowRemoteCallbackList.java71 public void kill() { method in class:ShadowRemoteCallbackList
/external/skia/platform_tools/android/skp_gen/
H A Dandroid_skp_capture.py76 def kill(self): member in class:App
174 app.kill()
/external/skqp/platform_tools/android/skp_gen/
H A Dandroid_skp_capture.py76 def kill(self): member in class:App
174 app.kill()
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/interpreter/
H A DInterpreterProcess.java112 public void kill() { method in class:InterpreterProcess
113 super.kill();
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLiveRangeCalc.h88 LiveInBlock(LiveInterval *li, MachineDomTreeNode *node, SlotIndex kill) argument
89 : LI(li), DomNode(node), Kill(kill), Value(0) {}
/external/syslinux/gpxe/src/include/gpxe/
H A Djob.h48 void ( * kill ) ( struct job_interface *job ); member in struct:job_interface_operations
/external/autotest/scheduler/
H A Dpidfile_monitor.py87 def kill(self): member in class:PidfileRunMonitor
/external/mesa3d/src/compiler/glsl/
H A Dopt_copy_propagation.cpp86 void kill(ir_variable *ir);
138 kill(ir->lhs->variable_referenced());
204 kill(ir->return_deref->var);
213 kill(var);
252 kill(k->var);
302 kill(k->var);
326 ir_copy_propagation_visitor::kill(ir_variable *var) function in class:ir_copy_propagation_visitor
330 /* Remove any entries currently in the ACP for this kill. */
/external/python/cpython3/Lib/asyncio/
H A Dbase_subprocess.py115 logger.warning('Close running child process: kill %r', self)
118 self._proc.kill()
158 def kill(self): member in class:BaseSubprocessTransport
160 self._proc.kill()

Completed in 894 milliseconds

123