Searched refs:Kill (Results 1 - 25 of 137) sorted by relevance

123456

/external/chromium_org/tools/cr/cr/actions/
H A Ddebugger.py33 Defaults to a Kill Invoke sequence.
35 self.Kill(targets, [])
39 def Kill(self, targets, arguments): member in class:Debugger
40 """Kill the running debugger."""
41 cr.Runner.Kill(targets, arguments)
H A Drunner.py13 Runner implementations must implement the Kill, Run and Test methods.
35 def Kill(self, targets, arguments): member in class:Runner
65 Default implementation is to do a Kill Invoke sequence.
68 self.Kill(targets, [])
79 def Kill(self, targets, arguments): member in class:SkipRunner
H A Dlinux.py20 def Kill(self, targets, arguments): member in class:LinuxRunner
22 print '**WARNING** Kill not yet implemented on linux'
H A Dadb.py49 def Kill(cls, target, _): member in class:Adb
50 """Kill all running processes for a target."""
111 def Kill(self, targets, arguments): member in class:AdbRunner
113 Adb.Kill(target, arguments)
/external/llvm/lib/CodeGen/
H A DLiveRangeCalc.h88 // determined, the range from the block start to Kill will be added to LI.
89 SlotIndex Kill; member in struct:llvm::LiveRangeCalc::LiveInBlock
95 : LR(LR), DomNode(node), Kill(kill), Value(nullptr) {}
104 /// Assuming that LI is live-in to KillMBB and killed at Kill, find the set
107 /// If only one def can reach Kill, all paths from the def to kill are added
110 /// If multiple values can reach Kill, the blocks that need LI to be live in
115 SlotIndex Kill, unsigned PhysReg);
155 /// extend - Extend the live range of LI to reach Kill.
157 /// The existing values in LI must be live so they jointly dominate Kill. If
158 /// Kill i
[all...]
H A DLiveRangeCalc.cpp118 if (I->Kill.isValid())
120 End = I->Kill;
134 void LiveRangeCalc::extend(LiveRange &LR, SlotIndex Kill, unsigned PhysReg) { argument
135 assert(Kill.isValid() && "Invalid SlotIndex");
139 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill.getPrevSlot());
140 assert(KillMBB && "No MBB at Kill");
143 if (LR.extendInBlock(Indexes->getMBBStartIdx(KillMBB), Kill))
146 // Find the single reaching def, or determine if Kill is jointly dominated by
150 if (findReachingDefs(LR, *KillMBB, Kill, PhysReg))
170 SlotIndex Kill, unsigne
169 findReachingDefs(LiveRange &LR, MachineBasicBlock &KillMBB, SlotIndex Kill, unsigned PhysReg) argument
[all...]
/external/chromium_org/chrome/test/chromedriver/server/
H A Dserver.py44 atexit.register(self.Kill)
65 def Kill(self): member in class:Server
/external/chromium_org/storage/browser/blob/
H A Dview_blob_internals_job.h39 virtual void Kill() OVERRIDE;
/external/chromium_org/tools/android/forwarder2/
H A Ddaemon.h61 bool Kill();
/external/chromium_org/v8/src/compiler/
H A Dgraph-reducer.cc53 node->Kill();
63 node->Kill();
H A Dnode.cc13 void Node::Kill() { function in class:v8::internal::compiler::Node
/external/lldb/examples/python/
H A Ddisasm.py104 process.Kill()
115 process.Kill()
/external/valgrind/main/gdbserver_tests/
H A Dnlvgdbsigqueue.stdoutB.exp16 Kill the program being debugged? (y or n) [answered Y; input not from terminal]
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h89 const bool Kill; member in class:llvm::LiveQueryResult
93 bool Kill)
94 : EarlyVal(EarlyVal), LateVal(LateVal), EndPoint(EndPoint), Kill(Kill)
108 return Kill;
407 /// extendInBlock - If this range is live before Kill in the basic block
408 /// that starts at StartIdx, extend it to be live up to Kill, and return
409 /// the value. If there is no segment before Kill, return NULL.
410 VNInfo *extendInBlock(SlotIndex StartIdx, SlotIndex Kill);
454 bool Kill
92 LiveQueryResult(VNInfo *EarlyVal, VNInfo *LateVal, SlotIndex EndPoint, bool Kill) argument
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreRegisterInfo.cpp108 .addReg(ScratchOffset, RegState::Kill)
115 .addReg(ScratchOffset, RegState::Kill)
121 .addReg(ScratchOffset, RegState::Kill);
184 .addReg(ScratchBase, RegState::Kill)
185 .addReg(ScratchOffset, RegState::Kill)
191 .addReg(ScratchBase, RegState::Kill)
192 .addReg(ScratchOffset, RegState::Kill)
197 .addReg(ScratchBase, RegState::Kill)
198 .addReg(ScratchOffset, RegState::Kill);
/external/chromium_org/content/browser/net/
H A Dview_http_cache_job_factory.cc38 virtual void Kill() OVERRIDE;
105 void ViewHttpCacheJob::Kill() { function in class:content::__anon7271::ViewHttpCacheJob
111 net::URLRequestJob::Kill();
/external/chromium_org/net/url_request/
H A Durl_request_file_dir_job.cc54 void URLRequestFileDirJob::Kill() { function in class:net::URLRequestFileDirJob
63 URLRequestJob::Kill();
H A Durl_request_file_dir_job.h31 virtual void Kill() OVERRIDE;
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_read_from_cache_job.h39 virtual void Kill() OVERRIDE;
/external/chromium_org/content/browser/streams/
H A Dstream_url_request_job.h31 virtual void Kill() OVERRIDE;
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
H A Dbrowserprocess.py37 def Kill(self): member in class:BrowserProcessBase
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_dir_url_request_job.h36 virtual void Kill() OVERRIDE;
H A Dfile_system_url_request_job.h44 virtual void Kill() OVERRIDE;
/external/chromium_org/tools/cr/cr/commands/
H A Ddebug.py38 cr.Debugger.Kill(targets, [])
H A Drun.py47 cr.Runner.Kill(run_targets, [])

Completed in 615 milliseconds

123456