HomeSort by relevance Sort by last modified time
    Searched refs:stop (Results 51 - 75 of 3591) sorted by null

1 23 4 5 6 7 8 91011>>

  /tools/tradefederation/core/src/com/android/tradefed/device/
ILogcatReceiver.java 28 public void stop(); method in interface:ILogcatReceiver
  /external/tensorflow/tensorflow/core/kernels/
fractional_pool_common.h 31 const auto stop = last - 1; local
32 for (auto i = first; i != stop; ++i) {
  /frameworks/base/services/net/java/android/net/util/
Stopwatch.java 52 public long stop() { method in class:Stopwatch
61 // If the Stopwatch is not running, returns the same value as stop(),
67 return stop();
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/
TraceviewPlugin.java 50 * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
53 public void stop(BundleContext context) throws Exception { method in class:TraceviewPlugin
55 super.stop(context);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
dv-war-err.l 2 .*:8: Warning: Use of 'br.wtop.sptk' .* WAR dependency 'PR63' \(stop\)
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 148 /** Get all tokens from start..stop inclusively */
149 public List get(int start, int stop) {
150 if ( start<0 || stop<0 ) return null;
153 if ( stop>=tokens.size() ) stop = tokens.size()-1;
154 for (int i = start; i <= stop; i++) {
195 public List getTokens(int start, int stop) {
196 return getTokens(start, stop, (BitSet)null);
199 /** Given a start and stop index, return a List of all tokens in
203 public List getTokens(int start, int stop, BitSet types)
    [all...]
LegacyCommonTokenStream.java 191 public List getTokens(int start, int stop) {
192 return getTokens(start, stop, (BitSet)null);
195 /** Given a start and stop index, return a List of all tokens in
199 public List getTokens(int start, int stop, BitSet types) {
203 if ( stop>=tokens.size() ) {
204 stop=tokens.size()-1;
209 if ( start>stop ) {
213 // list = tokens[start:stop]:{Token t, t.getType() in types}
215 for (int i=start; i<=stop; i++) {
227 public List getTokens(int start, int stop, List types)
    [all...]
  /external/skia/src/effects/
SkPackBits.cpp 44 const uint8_t* stop = src + srcSize; local
46 for (intptr_t count = stop - src; count > 0; count = stop - src) {
59 if (s == stop) {
66 if (++s == stop) {
69 // only stop if we hit 3 in a row,
85 const uint8_t* stop = src + srcSize; local
87 while (src < stop) {
91 if (dst > (endDst - n) || src >= stop) {
97 if (dst > (endDst - n) || src > (stop - n))
    [all...]
  /external/skqp/src/effects/
SkPackBits.cpp 44 const uint8_t* stop = src + srcSize; local
46 for (intptr_t count = stop - src; count > 0; count = stop - src) {
59 if (s == stop) {
66 if (++s == stop) {
69 // only stop if we hit 3 in a row,
85 const uint8_t* stop = src + srcSize; local
87 while (src < stop) {
91 if (dst > (endDst - n) || src >= stop) {
97 if (dst > (endDst - n) || src > (stop - n))
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonErrorNode.js 1 org.antlr.runtime.tree.CommonErrorNode = function(input, start, stop, e) {
2 if ( !stop ||
3 (stop.getTokenIndex() < start.getTokenIndex() &&
4 stop.getType()!=org.antlr.runtime.Token.EOF) )
7 // in follow set. So, stop will be 1 to left to start. adjust.
10 stop = start;
14 this.stop = stop;
31 var j = this.stop.getTokenIndex();
32 if ( this.stop.getType() === org.antlr.runtime.Token.EOF )
    [all...]
  /frameworks/base/core/java/android/speech/tts/
AudioPlaybackHandler.java 41 private void stop(PlaybackQueueItem item) { method in class:AudioPlaybackHandler
46 item.stop(TextToSpeech.STOPPED);
64 stop(current);
68 public void stop() { method in class:AudioPlaybackHandler
72 stop(mCurrentWorkItem);
88 stop(mCurrentWorkItem);
109 stop(item);
130 // If stop() or stopForApp() are called between mQueue.take()
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonTokenStream.as 176 public function getTokensRange(start:int, stop:int):Array {
177 return getTokensBitSet(start, stop, null);
180 /** Given a start and stop index, return a List of all tokens in
186 public function getTokensBitSet(start:int, stop:int, types:BitSet):Array {
190 if ( stop>=tokens.length ) {
191 stop=tokens.length-1;
196 if ( start>stop ) {
200 // list = tokens[start:stop]:{Token t, t.getType() in types}
202 for (var i:int=start; i<=stop; i++) {
214 public function getTokensArray(start:int, stop:int, types:Array):Array
    [all...]
CharStream.as 36 function substring(start:int, stop:int):String;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 283 public virtual List<IToken> GetTokens(int start, int stop) {
284 return GetTokens(start, stop, default(BitSet));
287 /** Given a start and stop index, return a List of all tokens in
291 public virtual List<IToken> GetTokens(int start, int stop, BitSet types) {
294 if (stop >= _tokens.Count)
295 stop = _tokens.Count - 1;
298 if (start > stop)
301 // list = tokens[start:stop]:{Token t, t.getType() in types}
303 for (int i = start; i <= stop; i++) {
315 public virtual List<IToken> GetTokens(int start, int stop, IEnumerable<int> types)
    [all...]
LegacyCommonTokenStream.cs 234 public virtual IList<IToken> GetTokens(int start, int stop) {
235 return GetTokens(start, stop, (BitSet)null);
239 * Given a start and stop index, return a List of all tokens in
244 public virtual IList<IToken> GetTokens(int start, int stop, BitSet types) {
248 if (stop >= tokens.Count) {
249 stop = tokens.Count - 1;
254 if (start > stop) {
258 // list = tokens[start:stop]:{Token t, t.getType() in types}
260 for (int i = start; i <= stop; i++) {
272 public virtual IList<IToken> GetTokens(int start, int stop, IList<int> types)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 322 public virtual List<IToken> GetTokens(int start, int stop)
324 return GetTokens(start, stop, default(BitSet));
327 /** Given a start and stop index, return a List of all tokens in
331 public virtual List<IToken> GetTokens(int start, int stop, BitSet types)
335 if (stop >= _tokens.Count)
336 stop = _tokens.Count - 1;
339 if (start > stop)
342 // list = tokens[start:stop]:{Token t, t.getType() in types}
344 for (int i = start; i <= stop; i++)
359 public virtual List<IToken> GetTokens(int start, int stop, IEnumerable<int> types
    [all...]
LegacyCommonTokenStream.cs 259 public virtual IList<IToken> GetTokens( int start, int stop )
261 return GetTokens( start, stop, (BitSet)null );
265 * Given a start and stop index, return a List of all tokens in
270 public virtual IList<IToken> GetTokens( int start, int stop, BitSet types )
276 if ( stop >= tokens.Count )
278 stop = tokens.Count - 1;
284 if ( start > stop )
289 // list = tokens[start:stop]:{Token t, t.getType() in types}
291 for ( int i = start; i <= stop; i++ )
306 public virtual IList<IToken> GetTokens( int start, int stop, IList<int> types
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimTokenStream.cs 182 public IList<SlimToken> GetTokens( int start, int stop )
184 return GetTokens( start, stop, (BitSet)null );
188 * Given a start and stop index, return a List of all tokens in
193 public IList<SlimToken> GetTokens( int start, int stop, BitSet types )
199 if ( stop >= tokens.Count )
201 stop = tokens.Count - 1;
207 if ( start > stop )
212 // list = tokens[start:stop]:{Token t, t.getType() in types}
214 for ( int i = start; i <= stop; i++ )
229 public IList<SlimToken> GetTokens( int start, int stop, IList<int> types
    [all...]
  /developers/build/prebuilts/gradle/PermissionRequest/Application/src/main/assets/
sample.js 39 toggle.innerText = 'Stop';
47 track.stop();
49 } else if (stream.stop) {
50 stream.stop();
  /developers/samples/android/content/webview/PermissionRequest/Application/src/main/assets/
sample.js 39 toggle.innerText = 'Stop';
47 track.stop();
49 } else if (stream.stop) {
50 stream.stop();
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Attribute.java 97 int stop=-1; local
103 stop = i;
107 stop = i+1;
112 this.name = decl.substring(start,stop);
116 if ( stop<=rightEdgeOfDeclarator ) {
117 this.type += decl.substring(stop,rightEdgeOfDeclarator+1);
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/server/
AbstractFtpServer_MultipleStartAndStopTest.groovy 33 // Takes ~ 500ms per start/stop
46 ftpServer.stop();
48 assertEquals("shutdown - after stop()", true, ftpServer.isShutdown());
61 ftpServer.stop();
67 ftpServer.stop(); // just to be sure
  /external/toybox/toys/posix/
expand.c 36 int i, len, x=0, stop = 0; local
69 x = stop = 0;
76 } else while (stop < TT.tabcount) {
77 if (TT.tab[stop] > x) {
78 width = TT.tab[stop] - x;
80 } else stop++;
  /device/generic/goldfish/wifi/wifi_hal/
info.cpp 43 void Info::stop(StopHandler stopHandler) { function in class:Info
44 mNetlink.stop(stopHandler);
  /frameworks/av/media/libstagefright/
CallbackMediaSource.cpp 31 status_t CallbackMediaSource::stop() { function in class:android::CallbackMediaSource
32 return mSource->stop();

Completed in 507 milliseconds

1 23 4 5 6 7 8 91011>>