Home | History | Annotate | Download | only in Framework

Lines Matching full:astate

61 + (ANTLRRecognizerSharedState *) newANTLRRecognizerSharedState:(ANTLRRecognizerSharedState *)aState
63 return [[[ANTLRRecognizerSharedState alloc] initWithState:aState] retain];
127 - (id) initWithState:(ANTLRRecognizerSharedState *)aState
130 if ( [following count] < [aState.following count] ) {
133 [following setArray:aState.following];
134 _fsp = aState._fsp;
135 errorRecovery = aState.errorRecovery;
136 lastErrorIndex = aState.lastErrorIndex;
137 failed = aState.failed;
138 syntaxErrors = aState.syntaxErrors;
139 backtracking = aState.backtracking;
140 if ( aState.ruleMemo == nil ) {
149 ruleMemo = aState.ruleMemo;
157 [ruleMemo addObjectsFromArray:aState.ruleMemo];
160 token = aState.token;
161 tokenStartCharIndex = aState.tokenStartCharIndex;
162 tokenStartCharPositionInLine = aState.tokenStartCharPositionInLine;
163 tokenStartLine = aState.tokenStartLine;
164 channel = aState.channel;
165 type = aState.type;
166 text = aState.text;