OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TokenIndex
(Results
1 - 25
of
42
) sorted by null
1
2
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IToken.cs
79
int
TokenIndex
{
ClassicToken.cs
139
public int
TokenIndex
{
171
return "[@" +
TokenIndex
+ ",'" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
CommonToken.cs
89
index = oldToken.
TokenIndex
;
178
public int
TokenIndex
{
211
return "[@" +
TokenIndex
+ "," + start + ":" + stop + "='" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
UnbufferedTokenStream.cs
57
protected int
tokenIndex
; // simple counter to set token index in tokens
80
t.
TokenIndex
= this.
tokenIndex
++;
BufferedTokenStream.cs
198
t.
TokenIndex
= _tokens.Count;
352
return ToString(start.
TokenIndex
, stop.
TokenIndex
);
LegacyCommonTokenStream.cs
156
t.
TokenIndex
= index;
448
return ToString(start.
TokenIndex
, stop.
TokenIndex
);
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs
47
(stop.
TokenIndex
< start.
TokenIndex
&&
71
int i = ((IToken)start).
TokenIndex
;
72
int j = ((IToken)stop).
TokenIndex
;
CommonTree.cs
153
return token.
TokenIndex
;
164
return token.
TokenIndex
;
197
startIndex = stopIndex = token.
TokenIndex
;
CommonTreeAdaptor.cs
124
start = startToken.
TokenIndex
;
127
stop = stopToken.
TokenIndex
;
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
IToken.cs
88
int
TokenIndex
CommonToken.cs
96
index = oldToken.
TokenIndex
;
206
public int
TokenIndex
250
return "[@" +
TokenIndex
+ "," + start + ":" + stop + "='" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
ClassicToken.cs
166
public int
TokenIndex
209
return "[@" +
TokenIndex
+ ",'" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
UnbufferedTokenStream.cs
59
protected int
tokenIndex
; // simple counter to set token index in tokens
143
t.
TokenIndex
= this.
tokenIndex
++;
BufferedTokenStream.cs
229
t.
TokenIndex
= _tokens.Count;
403
return ToString(start.
TokenIndex
, stop.
TokenIndex
);
LegacyCommonTokenStream.cs
168
t.
TokenIndex
= index;
521
return ToString( start.
TokenIndex
, stop.
TokenIndex
);
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs
50
( stop.
TokenIndex
< start.
TokenIndex
&&
80
int i = ( (IToken)start ).
TokenIndex
;
81
int j = ( (IToken)stop ).
TokenIndex
;
CommonTree.cs
195
return Token.
TokenIndex
;
212
return Token.
TokenIndex
;
256
startIndex = stopIndex = Token.
TokenIndex
;
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs
136
int IToken.
TokenIndex
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
ST.stg
109
((IToken)retval.Start).
TokenIndex
,
110
input.LT(-1).
TokenIndex
,
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
ST.stg
86
retval.Start.
TokenIndex
,
87
input.LT(-1).
TokenIndex
,
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs
62
if (payload.
TokenIndex
< 0) {
188
t, startToken.
TokenIndex
,
189
stopToken.
TokenIndex
);
Profiler.cs
191
int lastTokenIndex = lastRealTokenTouchedInDecision.
TokenIndex
;
215
lastRealTokenTouchedInDecision.
TokenIndex
< token.
TokenIndex
) {
220
int thisRefIndex = token.
TokenIndex
;
251
Console.WriteLine("LT(" + i + ")=" + t + " index " + t.
TokenIndex
+ " relative to " + d.decision.ruleName + "-" +
256
lastRealTokenTouchedInDecision.
TokenIndex
< t.
TokenIndex
) {
466
//for (int i = 0; i < input.Count && lastRealTokenTouchedInDecision != null && i <= lastRealTokenTouchedInDecision.
TokenIndex
; i++)
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs
205
int lastTokenIndex = lastRealTokenTouchedInDecision.
TokenIndex
;
232
lastRealTokenTouchedInDecision.
TokenIndex
< token.
TokenIndex
)
238
int thisRefIndex = token.
TokenIndex
;
276
Console.WriteLine("LT(" + i + ")=" + t + " index " + t.
TokenIndex
+ " relative to " + d.decision.ruleName + "-" +
281
lastRealTokenTouchedInDecision.
TokenIndex
< t.
TokenIndex
)
513
//for (int i = 0; i < input.Count && lastRealTokenTouchedInDecision != null && i <= lastRealTokenTouchedInDecision.
TokenIndex
; i++)
DebugTreeAdaptor.cs
66
if ( payload.
TokenIndex
< 0 )
245
t, startToken.
TokenIndex
,
246
stopToken.
TokenIndex
);
/external/libtextclassifier/annotator/
types.h
41
using
TokenIndex
= int;
96
using TokenSpan = std::pair<
TokenIndex
,
TokenIndex
>;
Completed in 1457 milliseconds
1
2