Searched refs:stop (Results 1 - 25 of 940) sorted by relevance

1234567891011>>

/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...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonErrorNode.java36 public Token stop; field in class:CommonErrorNode
39 public CommonErrorNode(TokenStream input, Token start, Token stop, argument
42 //System.out.println("start: "+start+", stop: "+stop);
43 if ( stop==null ||
44 (stop.getTokenIndex() < start.getTokenIndex() &&
45 stop.getType()!=Token.EOF) )
48 // in follow set. So, stop will be 1 to left to start. adjust.
51 stop = start;
55 this.stop
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonErrorNode.js1 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
[all...]
/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
H A DCommonToken.cs50 * 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) { argument
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 indexe
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DITokenStream.cs77 * Return the text of all tokens from start to stop, inclusive.
83 string ToString( int start, int stop );
93 string ToString( IToken start, IToken stop );
H A DCommonToken.cs52 * start/stop are not affected by changing this.
64 int stop; field in class:Antlr.Runtime.CommonToken
75 public CommonToken( ICharStream input, int type, int channel, int start, int stop )
81 this.stop = stop;
103 stop = ( (CommonToken)oldToken ).stop;
117 if (start <= stop && stop < input.Count)
118 return input.Substring( start, stop
[all...]
/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; }
H A DTokenStream.java61 /** Return the text of all tokens from start to stop, inclusive.
66 public String toString(int start, int stop); argument
74 public String toString(Token start, Token stop); argument
H A DCommonToken.java41 * start/stop are not affected by changing this.
52 protected int stop; field in class:CommonToken
58 public CommonToken(CharStream input, int type, int channel, int start, int stop) { argument
63 this.stop = stop;
82 stop = ((CommonToken)oldToken).stop;
102 if ( start<n && stop<n) {
103 return input.substring(start,stop);
112 * that start/stop indexe
155 setStopIndex(int stop) argument
[all...]
H A DCharStream.java38 public String substring(int start, int stop); argument
H A DBufferedTokenStream.java148 /** Get all tokens from start..stop inclusively */
149 public List get(int start, int stop) { argument
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) { argument
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, BitSe argument
223 getTokens(int start, int stop, List types) argument
227 getTokens(int start, int stop, int ttype) argument
240 toString(int start, int stop) argument
253 toString(Token start, Token stop) argument
[all...]
H A DLegacyCommonTokenStream.java191 public List getTokens(int start, int stop) { argument
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) { argument
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, Lis argument
231 getTokens(int start, int stop, int ttype) argument
304 get(int start, int stop) argument
370 toString(int start, int stop) argument
388 toString(Token start, Token stop) argument
[all...]
/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/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/chromium-trace/trace-viewer/third_party/WebOb/webob/
H A Dbyterange.py32 stop = min(end, length)
33 return (start, stop)
94 This header is ``start-stop/length``, where start-stop and length
98 def __init__(self, start, stop, length):
99 if not _is_content_range_valid(start, stop, length):
101 "Bad start:stop/length: %r-%r/%r" % (start, stop, length))
103 self.stop = stop # thi
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenStream.as54 /** Return the text of all tokens from start to stop, inclusive.
59 function toStringWithRange(start:int, stop:int):String;
67 function toStringWithTokenRange(start:Token, stop:Token):String;
/external/javasqlite/src/main/java/SQLite/
H A DVm.java61 public native void stop() throws SQLite.Exception; method in class:Vm
/external/parameter-framework/remote-processor/
H A DRemoteProcessorServerInterface.h39 virtual void stop() = 0;
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
H A DTimeInstrument.java57 TimeInstrument stop(); method in interface:TimeInstrument
60 * Time elapsed between start and stop, in nanoseconds.
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt004lexer.py30 assert token.stop == 0, token.stop
36 assert token.stop == 2, token.stop
42 assert token.stop == 5, token.stop
48 assert token.stop == 9, token.stop
H A Dt010lexer.py30 assert token.stop == 5, token.stop
36 assert token.stop == 6, token.stop
42 assert token.stop == 11, token.stop
48 assert token.stop == 14, token.stop
54 assert token.stop == 20, token.stop
[all...]
H A Dt011lexer.py30 assert token.stop == 5, token.stop
36 assert token.stop == 6, token.stop
42 assert token.stop == 11, token.stop
48 assert token.stop == 14, token.stop
54 assert token.stop == 20, token.stop
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DCommonToken.js21 this.stop = oldToken.stop;
33 this.stop = arguments[4];
55 this.text = this.input.substring(this.start,this.stop);
61 * that start/stop indexes are not valid. It means that that input
101 return this.stop;
104 setStopIndex: function(stop) {
105 this.stop = stop;
138 return "[@"+this.getTokenIndex()+","+this.start+":"+this.stop
[all...]

Completed in 929 milliseconds

1234567891011>>