Searched defs:stop (Results 1 - 25 of 572) sorted by relevance

1234567891011>>

/external/opencv3/3rdparty/libjasper/jasper/
H A Djas_tmr.h79 struct timeval stop; member in struct:__anon14728
86 struct rusage stop; member in struct:__anon14729
/external/autotest/utils/
H A Dautotest-rh.init66 stop() function
92 stop
104 stop)
105 stop
116 stop
132 echo $"Usage: $0 {start|stop|restart|reload|condrestart|try-restart|status}"
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonErrorNode.as10 public var stop:Token; variable
13 public function CommonErrorNode(input:TokenStream, start:Token, stop:Token,
16 //System.out.println("start: "+start+", stop: "+stop);
17 if ( stop==null ||
18 (stop.tokenIndex < start.tokenIndex &&
19 stop.type!=TokenConstants.EOF) )
22 // in follow set. So, stop will be 1 to left to start. adjust.
25 stop = start;
29 this.stop
[all...]
/external/guice/extensions/persist/src/com/google/inject/persist/
H A DPersistService.java20 * startup and stop of the persistence module(s).
43 void stop(); method in interface:PersistService
/external/slf4j/integration/src/test/java/integrator/
H A DActivator.java48 public void stop(BundleContext context) { method in class:Activator
51 logger.info("Activator.stop");
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DVideoSource.java32 * Java version of VideoSourceInterface, extended with stop/restart
45 public void stop() { method in class:VideoSource
46 stop(nativeSource);
49 // Restart capture feeding this source. stop() must have been called since
61 private static native void stop(long nativeSource); method in class:VideoSource
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DParserRuleReturnScope.java40 * from start and stop using the input stream's toString() method. I
51 public Token start, stop; field in class:ParserRuleReturnScope
53 public Object getStop() { return stop; }
/external/autotest/client/bin/
H A Dprofiler.py20 def stop(self, test): member in class:profiler
/external/autotest/client/cros/
H A Dtcpdump.py37 def stop(self, timeout=10.): member in class:Tcpdump
78 self.stop()
/external/autotest/client/profilers/catprofile/
H A Dcatprofile.py43 def stop(self, test): member in class:catprofile
/external/autotest/client/profilers/cpistat/
H A Dcpistat.py27 def stop(self, test): member in class:cpistat
/external/autotest/client/profilers/lockmeter/
H A Dlockmeter.py48 def stop(self, test): member in class:lockmeter
/external/autotest/client/profilers/mpstat/
H A Dmpstat.py24 def stop(self, test): member in class:mpstat
/external/autotest/client/profilers/vmstat/
H A Dvmstat.py26 def stop(self, test): member in class:vmstat
/external/autotest/site_utils/tester_feedback/
H A Dservice.py56 def stop(self): member in class:FeedbackService
67 self._multiplexer.stop()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/installers/
H A D__init__.py47 def stop(self, service_name): member in class:Installer
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DMain.java45 * @see org.eclipse.equinox.app.IApplication#stop()
47 public void stop() { method in class:Main
/external/javasqlite/src/main/java/SQLite/
H A DVm.java61 public native void stop() throws SQLite.Exception; method in class:Vm
/external/libunwind/src/unwind/
H A DForcedUnwind.c31 _Unwind_Stop_Fn stop, void *stop_parameter)
38 /* We check "stop" here to tell the compiler's inliner that
41 if (!stop)
50 exception_object->private_1 = (unsigned long) stop;
30 _Unwind_ForcedUnwind(struct _Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
/external/opencv3/modules/flann/include/opencv2/flann/
H A Dtimer.h42 * A start-stop timer class.
76 void stop() function in class:cvflann::StartStopTimer
/external/parameter-framework/upstream/remote-processor/
H A DBackgroundRemoteProcessorServer.cpp55 bool BackgroundRemoteProcessorServer::stop() function in class:BackgroundRemoteProcessorServer
57 _server->stop();
63 stop();
/external/slf4j/osgi-over-slf4j/src/main/java/org/slf4j/osgi/logservice/impl/
H A DActivator.java68 * Implements <code>BundleActivator.stop()</code>.
73 public void stop(BundleContext bundleContext) throws Exception { method in class:Activator
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DITokenStream.cs73 * Return the text of all tokens from start to stop, inclusive.
79 string ToString(int start, int stop); argument
89 string ToString(IToken start, IToken stop); argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonErrorNode.cs40 public IToken stop; field in class:Antlr.Runtime.Tree.CommonErrorNode
43 public CommonErrorNode(ITokenStream input, IToken start, IToken stop, argument
45 //System.out.println("start: "+start+", stop: "+stop);
46 if (stop == null ||
47 (stop.TokenIndex < start.TokenIndex &&
48 stop.Type != TokenTypes.EndOfFile)) {
50 // in follow set. So, stop will be 1 to left to start. adjust.
53 stop = start;
57 this.stop
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonErrorNode.cs42 public IToken stop; field in class:Antlr.Runtime.Tree.CommonErrorNode
45 public CommonErrorNode( ITokenStream input, IToken start, IToken stop, argument
48 //System.out.println("start: "+start+", stop: "+stop);
49 if ( stop == null ||
50 ( stop.TokenIndex < start.TokenIndex &&
51 stop.Type != TokenTypes.EndOfFile ) )
54 // in follow set. So, stop will be 1 to left to start. adjust.
57 stop = start;
61 this.stop
[all...]

Completed in 1075 milliseconds

1234567891011>>