Home
last modified time | relevance | path

Searched defs:stop (Results 1 – 25 of 364) sorted by relevance

12345678910>>...15

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DBufferedTokenStream.java149 public List get(int start, int stop) { in get()
195 public List getTokens(int start, int stop) { in getTokens()
203 public List getTokens(int start, int stop, BitSet types) { in getTokens()
223 public List getTokens(int start, int stop, List types) { in getTokens()
227 public List getTokens(int start, int stop, int ttype) { in getTokens()
240 public String toString(int start, int stop) { in toString()
253 public String toString(Token start, Token stop) { in toString()
DLegacyCommonTokenStream.java191 public List getTokens(int start, int stop) { in getTokens()
199 public List getTokens(int start, int stop, BitSet types) { in getTokens()
227 public List getTokens(int start, int stop, List types) { in getTokens()
231 public List getTokens(int start, int stop, int ttype) { in getTokens()
304 public List get(int start, int stop) { in get()
370 public String toString(int start, int stop) { in toString()
388 public String toString(Token start, Token stop) { in toString()
DTokenStream.java66 public String toString(int start, int stop); in toString()
74 public String toString(Token start, Token stop); in toString()
DUnbufferedTokenStream.java71 public String toString(int start, int stop) { return "n/a"; } in toString()
73 public String toString(Token start, Token stop) { return "n/a"; } in toString()
DCommonToken.java52 protected int stop; field in CommonToken
58 public CommonToken(CharStream input, int type, int channel, int start, int stop) { in CommonToken()
155 public void setStopIndex(int stop) { in setStopIndex()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
DSlimTokenStream.cs182 public IList<SlimToken> GetTokens( int start, int stop ) in GetTokens()
193 public IList<SlimToken> GetTokens( int start, int stop, BitSet types ) in GetTokens()
229 public IList<SlimToken> GetTokens( int start, int stop, IList<int> types ) in GetTokens()
234 public IList<SlimToken> GetTokens( int start, int stop, int ttype ) in GetTokens()
397 public virtual string ToString( int start, int stop ) in ToString()
429 public virtual string ToString( IToken start, IToken stop ) in ToString()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DBufferedTokenStream.cs283 public virtual List<IToken> GetTokens(int start, int stop) { in GetTokens()
291 public virtual List<IToken> GetTokens(int start, int stop, BitSet types) { in GetTokens()
315 public virtual List<IToken> GetTokens(int start, int stop, IEnumerable<int> types) { in GetTokens()
319 public virtual List<IToken> GetTokens(int start, int stop, int ttype) { in GetTokens()
331 public virtual string ToString(int start, int stop) { in ToString()
350 public virtual string ToString(IToken start, IToken stop) { in ToString()
DLegacyCommonTokenStream.cs234 public virtual IList<IToken> GetTokens(int start, int stop) { in GetTokens()
244 public virtual IList<IToken> GetTokens(int start, int stop, BitSet types) { in GetTokens()
272 public virtual IList<IToken> GetTokens(int start, int stop, IList<int> types) { in GetTokens()
276 public virtual IList<IToken> GetTokens(int start, int stop, int ttype) { in GetTokens()
428 public virtual string ToString(int start, int stop) { in ToString()
446 public virtual string ToString(IToken start, IToken stop) { in ToString()
DITokenStream.cs79 string ToString(int start, int stop); in ToString()
89 string ToString(IToken start, IToken stop); in ToString()
DUnbufferedTokenStream.cs96 public string ToString(int start, int stop) { in ToString()
100 public string ToString(IToken start, IToken stop) { in ToString()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DBufferedTokenStream.cs322 public virtual List<IToken> GetTokens(int start, int stop) in GetTokens()
331 public virtual List<IToken> GetTokens(int start, int stop, BitSet types) in GetTokens()
359 public virtual List<IToken> GetTokens(int start, int stop, IEnumerable<int> types) in GetTokens()
364 public virtual List<IToken> GetTokens(int start, int stop, int ttype) in GetTokens()
378 public virtual string ToString(int start, int stop) in ToString()
399 public virtual string ToString(IToken start, IToken stop) in ToString()
DLegacyCommonTokenStream.cs259 public virtual IList<IToken> GetTokens( int start, int stop ) in GetTokens()
270 public virtual IList<IToken> GetTokens( int start, int stop, BitSet types ) in GetTokens()
306 public virtual IList<IToken> GetTokens( int start, int stop, IList<int> types ) in GetTokens()
311 public virtual IList<IToken> GetTokens( int start, int stop, int ttype ) in GetTokens()
494 public virtual string ToString( int start, int stop ) in ToString()
517 public virtual string ToString( IToken start, IToken stop ) in ToString()
DITokenStream.cs83 string ToString( int start, int stop ); in ToString()
93 string ToString( IToken start, IToken stop ); in ToString()
/external/skia/include/core/
DSkTDArray.h217 const T* stop = fArray + fCount; in find() local
229 const T* stop = fArray; in rfind() local
275 T* stop = fArray + fCount; in deleteAll() local
285 T* stop = fArray + fCount; in freeAll() local
295 T* stop = fArray + fCount; in unrefAll() local
305 T* stop = fArray + fCount; in safeUnrefAll() local
314 T* stop = this->end(); in visitAll() local
/external/clang/test/CodeGenObjC/
Dblocks-5.m9 - (void)enumerateKeysAndObjectsUsingBlock:(void (^)(id key, id obj, unsigned char *stop))block ;
35 - (void)enumerateKeysAndObjectsUsingBlock:(void (^)(id key, id obj, unsigned char *stop))block {}
/external/v8/test/cctest/
Dtest-macro-assembler-mips64.cc200 __ stop("invalid"); in TEST() local
201 __ stop("invalid"); in TEST() local
202 __ stop("invalid"); in TEST() local
203 __ stop("invalid"); in TEST() local
204 __ stop("invalid"); in TEST() local
/external/eigen/bench/btl/generic_bench/timers/
Dportable_timer.hh53 LARGE_INTEGER stop; member
66 void stop() { QueryPerformanceCounter(&stopVal); } in stop() function in Portable_Timer
117 void stop() in stop() function in Portable_Timer
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DCommonErrorNode.cs40 public IToken stop; field in Antlr.Runtime.Tree.CommonErrorNode
43 public CommonErrorNode(ITokenStream input, IToken start, IToken stop, in CommonErrorNode()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DCommonErrorNode.cs42 public IToken stop; field in Antlr.Runtime.Tree.CommonErrorNode
45 public CommonErrorNode( ITokenStream input, IToken start, IToken stop, in CommonErrorNode()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DCommonErrorNode.java36 public Token stop; field in CommonErrorNode
39 public CommonErrorNode(TokenStream input, Token start, Token stop, in CommonErrorNode()
/external/protobuf/python/google/protobuf/internal/
Dcontainers.py154 def __getslice__(self, start, stop): argument
158 def __setslice__(self, start, stop, values): argument
171 def __delslice__(self, start, stop): argument
248 def __getslice__(self, start, stop): argument
257 def __delslice__(self, start, stop): argument
/external/nanopb-c/generator/google/protobuf/internal/
Dcontainers.py153 def __getslice__(self, start, stop): argument
157 def __setslice__(self, start, stop, values): argument
171 def __delslice__(self, start, stop): argument
248 def __getslice__(self, start, stop): argument
257 def __delslice__(self, start, stop): argument
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
DStopWatch.java62 public TimeInstrument stop() { in stop() method in StopWatch
69 public StopWatch stop(long stopTime) { in stop() method in StopWatch
/external/jetty/src/java/org/eclipse/jetty/util/
DB64Code.java117 int stop=(bLen/3)*3; in encode() local
181 int stop=(bLen/3)*3; in encode() local
286 int stop=(rLen/3)*3; in decode() local
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DCommonTokenStream.js134 getTokens: function(start, stop, types) { argument
286 toString: function(start, stop) { argument
315 stop = this.tokens.length-1; property

12345678910>>...15