Searched defs:Stop (Results 1 - 25 of 373) sorted by last modified time

1234567891011>>

/external/webrtc/src/system_wrappers/source/
H A Dcpu_linux.h32 virtual void Stop() {return;} function in class:webrtc::CpuLinux
H A Dcpu_mac.h35 virtual void Stop() {} function in class:webrtc::CpuWrapperMac
H A Dcpu_win.h40 virtual void Stop() {} function in class:webrtc::CpuWindows
H A Dthread_posix.cc15 // other threads, using SetNotAlive() and Stop().
18 // (except at init). It is read only by the Stop() method.
21 // This protects against premature Stop() calls from the creator thread, but
31 // false any Stop Stop waits for _dead to become true.
39 // Stop(false)
41 // _dead Constructor(true) Stop.loop
189 // race condition if Stop() is called too quickly after start.
299 bool ThreadPosix::Stop() function in class:webrtc::ThreadPosix
H A Dthread_win.cc147 bool ThreadWindows::Stop() function in class:webrtc::ThreadWindows
/external/qemu/distrib/sdl-1.2.15/src/audio/symbian/
H A Dstreamplayer.cpp132 void CStreamPlayer::Stop() function in class:CStreamPlayer
160 iStream->Stop();
242 iStream->Stop();
/external/qemu/distrib/sdl-1.2.15/src/cdrom/
H A DSDL_syscdrom.h54 /* Stop play */
55 int (*Stop)(SDL_CD *cdrom); member in struct:CDcaps
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A Ddsa.cpp242 void Stop();
330 Stop();
343 void CDsaBase::Stop() function in class:CDsaBase
345 CDsa::Stop();
1111 Stop();
1115 void CDsa::Stop() function in class:CDsa
H A Ddsa_new.cpp1046 Stop();
1049 void CDsa::Stop() function in class:CDsa
1059 Stop();
H A Ddsa_old.cpp807 Stop();
810 void CDsa::Stop() function in class:CDsa
820 Stop();
/external/opencv/cv/src/
H A Dcvoptflowhs.cpp117 int Stop; local
339 Stop = 0;
341 while( !Stop )
460 Stop = 1;
462 Stop = 1;
/external/opencv/cvaux/src/
H A Dcvcalibfilter.cpp100 Stop();
213 Stop();
247 void CvCalibFilter::Stop( bool calibrate ) function in class:CvCalibFilter
478 Stop( true );
629 Stop();
/external/llvm/include/llvm/CodeGen/
H A DPasses.h145 /// added until the starting pass is seen. If the Stop pass ID is zero,
147 void setStartStopPasses(AnalysisID Start, AnalysisID Stop) { argument
149 StopAfter = Stop;
/external/llvm/lib/CodeGen/
H A DInterferenceCache.cpp124 SlotIndex Start, Stop; local
125 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
160 if (StartI >= Stop)
173 if (StartI >= Stop)
182 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop;
191 PrevPos = Stop;
202 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
208 if (!I.valid() || I.start() >= Stop)
210 I.advanceTo(Stop);
211 bool Backup = !I.valid() || I.start() >= Stop;
[all...]
H A DLiveDebugVariables.cpp221 /// dominator tree. Stop when meeting an existing def or when leaving the live
511 SlotIndex Stop = LIS.getMBBEndIdx(MBB); local
523 if (Segment->end < Stop)
524 Stop = Segment->end, ToEnd = false;
529 // Stop when meeting a different location or an already extended interval.
538 if (I.valid() && I.start() < Stop)
539 Stop = I.start(), ToEnd = false;
542 Kills->push_back(Stop);
544 if (Start >= Stop)
547 I.insert(Start, Stop, LocN
951 SlotIndex Stop = I.stop(); local
[all...]
H A DLiveIntervalAnalysis.cpp390 SlotIndex Stop = getMBBEndIdx(*PI); local
392 if (VNInfo *PVNI = li->getVNInfoBefore(Stop))
393 WorkList.push_back(std::make_pair(Stop, PVNI));
407 SlotIndex Stop = getMBBEndIdx(*PI); local
408 assert(li->getVNInfoBefore(Stop) == VNI &&
410 WorkList.push_back(std::make_pair(Stop, VNI));
605 SlotIndex Stop = LI.endIndex();
606 if (Stop.isBlock())
612 MachineBasicBlock *MBB2 = Indexes->getMBBFromIndex(Stop);
1027 // Stop searchin
[all...]
H A DSplitKit.cpp189 SlotIndex Start, Stop; local
190 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
195 if (UseI == UseE || *UseI >= Stop) {
200 if (LVI->end < Stop)
207 while (UseI != UseE && *UseI < Stop);
209 assert(BI.LastInstr < Stop);
223 while (LVI->end < Stop) {
225 if (++LVI == LVE || LVI->start >= Stop) {
255 // LVI is now at LVE or LVI->end >= Stop.
260 // Live segment ends exactly at Stop
285 SlotIndex Stop = LIS.getMBBEndIdx(MFI); local
1184 SlotIndex Start, Stop; local
1287 SlotIndex Start, Stop; local
1379 SlotIndex Start, Stop; local
[all...]
/external/llvm/lib/IR/
H A DUse.cpp57 Use *Use::initTags(Use *const Start, Use *Stop) { argument
60 if (Start == Stop--)
67 new (Stop) Use(tags[Done++]);
71 while (Start != Stop) {
72 --Stop;
74 new (Stop) Use(stopTag);
78 new (Stop) Use(PrevPtrTag(Count & 1));
87 void Use::zap(Use *Start, const Use *Stop, bool del) { argument
88 while (Start != Stop)
89 (--Stop)
[all...]
/external/lldb/source/API/
H A DSBProcess.cpp733 SBProcess::Stop () function in class:SBProcess
750 log->Printf ("SBProcess(%p)::Stop () => SBError (%p): %s",
/external/lldb/test/unittest2/test/
H A Dtest_discovery.py218 class Stop(Exception): class in function:TestDiscovery.test_command_line_handling_do_discovery_too_many_arguments
221 raise Stop
226 self.assertRaises(Stop,
/external/lldb/tools/driver/
H A DIOChannel.cpp512 IOChannel::Stop () function in class:IOChannel
/external/lldb/tools/lldb-perf/lib/
H A DMeasurement.h59 m_metric.Append (m_gauge.Stop());
87 Stop () function in class:lldb_perf::Measurement
89 auto value = m_gauge.Stop();
H A DMemoryGauge.cpp129 MemoryGauge::Stop () function in class:MemoryGauge
H A DTimer.cpp35 TimeGauge::Stop () function in class:TimeGauge
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 520 milliseconds

1234567891011>>