HomeSort by relevance Sort by last modified time
    Searched refs:unexpectedType (Results 1 - 25 of 29) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
NoViableAltException.as 48 return "NoViableAltException('"+String.fromCharCode(unexpectedType)+"'@["+grammarDecisionDescription+"])";
51 return "NoViableAltException("+unexpectedType+"@["+grammarDecisionDescription+"])";
MismatchedRangeException.as 40 return "MismatchedNotSetException("+unexpectedType+" not in ["+a+","+b+"])";
MismatchedSetException.as 39 return "MismatchedSetException("+unexpectedType+"!="+expecting+")";
MismatchedTokenException.as 40 return "MismatchedTokenException("+unexpectedType+"!="+expecting+")";
MismatchedTreeNodeException.as 13 return "MismatchedTreeNodeException("+unexpectedType+"!="+expecting+")";
RecognitionException.as 167 public function get unexpectedType():int {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedTokenException.cs 133 int unexpectedType = UnexpectedType;
134 string unexpected = ( TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Count ) ? TokenNames[unexpectedType] : unexpectedType.ToString();
  /external/antlr/antlr-3.4/runtime/Python/tests/
t012lexerXML.py 72 assert exc.unexpectedType == '>', repr(exc.unexpectedType)
96 assert exc.unexpectedType == 't', repr(exc.unexpectedType)
120 assert exc.unexpectedType == 'a', repr(exc.unexpectedType)
t005lexer.py 59 assert exc.unexpectedType == '2', repr(exc.unexpectedType)
71 assert exc.unexpectedType == antlr3.EOF, repr(exc.unexpectedType)
t006lexer.py 55 assert exc.unexpectedType == '2', repr(exc.unexpectedType)
t007lexer.py 52 assert exc.unexpectedType == 'o', repr(exc.unexpectedType)
t008lexer.py 60 assert exc.unexpectedType == 'b', repr(exc.unexpectedType)
t009lexer.py 61 assert exc.unexpectedType == 'a', repr(exc.unexpectedType)
t010lexer.py 71 assert exc.unexpectedType == '-', repr(exc.unexpectedType)
t011lexer.py 71 assert exc.unexpectedType == '-', repr(exc.unexpectedType)
t001lexer.py 53 self.failUnlessEqual(exc.unexpectedType, '1')
t002lexer.py 46 self.failUnlessEqual(exc.unexpectedType, '2')
t003lexer.py 49 self.failUnlessEqual(exc.unexpectedType, '2')
t004lexer.py 65 self.failUnlessEqual(exc.unexpectedType, '2')
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MismatchedTokenException.cs 128 int unexpectedType = UnexpectedType;
129 string unexpected = (TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Count) ? TokenNames[unexpectedType] : unexpectedType.ToString();
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRecognitionException.h 55 - (NSInteger) unexpectedType;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRecognitionException.h 55 - (NSInteger) unexpectedType;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRecognitionException.h 55 - (NSInteger) unexpectedType;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRecognitionException.h 59 - (NSInteger) unexpectedType;
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
exceptions.py 193 unexpectedType = property(getUnexpectedType)
317 self.unexpectedType, self.grammarDecisionDescription

Completed in 1098 milliseconds

1 2