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

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
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...]
CommonToken.cs 50 * start/stop are not affected by changing this.
62 int stop; field in class:Antlr.Runtime.CommonToken
71 public CommonToken(ICharStream input, int type, int channel, int start, int stop) {
76 this.stop = stop;
95 stop = ((CommonToken)oldToken).stop;
107 if (start < input.Count && stop < input.Count)
108 text = input.Substring(start, stop - start + 1);
117 * that start/stop indexes are not valid. It means that that inpu
    [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...]
  /frameworks/av/media/libmediaplayerservice/
RemoteDisplay.cpp 57 mSource->stop();
60 mLooper->stop();
61 mNetSession->stop();
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerKlaxon.java 35 public static void stop(Context context) { method in class:TimerKlaxon
37 LogUtils.i("TimerKlaxon.stop()");
39 getAsyncRingtonePlayer(context).stop();
45 stop(context);
  /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++;
  /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);
129 // If stop() or stopForApp() are called between mQueue.take()
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CharStream.as 36 function substring(start:int, stop:int):String;
  /external/opencv3/modules/cudacodec/src/
video_source.hpp 63 virtual void stop() = 0;
83 void stop();
  /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) {
105 SkASSERT(src <= stop);
  /frameworks/base/media/java/android/media/projection/
IMediaProjection.aidl 24 void stop();
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
subsym1.s 5 ; recursion should stop at x
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
ParserRuleReturnScope.js 9 * from start and stop using the input stream's toString() method. I
26 getStop: function() { return this.stop; }
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
DebuggeeWrapper.java 60 * An implementation of this method must cause the debuggee to stop.
62 public abstract void stop(); method in class:DebuggeeWrapper
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
SyncDebuggee.java 60 synchronizer.stop();
  /external/clang/test/CodeCompletion/
templates.cpp 12 void stop();
26 // CHECK-CC2: stop
  /external/deqp/execserver/
xsPosixFileReader.hpp 42 void stop (void);
  /external/dhcpcd-6.8.2/
dev.h 37 void (*stop)(void); member in struct:dev
  /external/guice/extensions/service/src/com/google/inject/service/
Service.java 24 * {@link #stop()} lifecycle methods to transition in and out of this state.
54 Future<State> stop(); method in interface:Service
  /external/libunwind/tests/
forker.c 36 struct timeval start, stop; local
69 gettimeofday (&stop, NULL);
71 secs = ((stop.tv_sec + 1e-6 * stop.tv_usec)
  /external/llvm/test/MC/AsmParser/
directive_abort.s 4 # CHECK: error: .abort 'please stop assembing'
6 .abort please stop assembing

Completed in 1365 milliseconds

1 23 4 5 6 7 8 91011>>