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

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DNoViableAltException.as48 return "NoViableAltException('"+String.fromCharCode(unexpectedType)+"'@["+grammarDecisionDescription+"])";
51 return "NoViableAltException("+unexpectedType+"@["+grammarDecisionDescription+"])";
H A DMismatchedRangeException.as40 return "MismatchedNotSetException("+unexpectedType+" not in ["+a+","+b+"])";
H A DMismatchedSetException.as39 return "MismatchedSetException("+unexpectedType+"!="+expecting+")";
H A DMismatchedTokenException.as40 return "MismatchedTokenException("+unexpectedType+"!="+expecting+")";
H A DMismatchedTreeNodeException.as13 return "MismatchedTreeNodeException("+unexpectedType+"!="+expecting+")";
H A DRecognitionException.as167 public function get unexpectedType():int {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMismatchedTokenException.cs133 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/
H A Dt012lexerXML.py72 assert exc.unexpectedType == '>', repr(exc.unexpectedType)
96 assert exc.unexpectedType == 't', repr(exc.unexpectedType)
120 assert exc.unexpectedType == 'a', repr(exc.unexpectedType)
H A Dt005lexer.py59 assert exc.unexpectedType == '2', repr(exc.unexpectedType)
71 assert exc.unexpectedType == antlr3.EOF, repr(exc.unexpectedType)
H A Dt006lexer.py55 assert exc.unexpectedType == '2', repr(exc.unexpectedType)
H A Dt007lexer.py52 assert exc.unexpectedType == 'o', repr(exc.unexpectedType)
H A Dt008lexer.py60 assert exc.unexpectedType == 'b', repr(exc.unexpectedType)
H A Dt009lexer.py61 assert exc.unexpectedType == 'a', repr(exc.unexpectedType)
H A Dt010lexer.py71 assert exc.unexpectedType == '-', repr(exc.unexpectedType)
H A Dt011lexer.py71 assert exc.unexpectedType == '-', repr(exc.unexpectedType)
H A Dt001lexer.py53 self.failUnlessEqual(exc.unexpectedType, '1')
H A Dt002lexer.py46 self.failUnlessEqual(exc.unexpectedType, '2')
H A Dt003lexer.py49 self.failUnlessEqual(exc.unexpectedType, '2')
H A Dt004lexer.py65 self.failUnlessEqual(exc.unexpectedType, '2')
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedTokenException.cs128 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/
H A DANTLRRecognitionException.h55 - (NSInteger) unexpectedType;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRecognitionException.h55 - (NSInteger) unexpectedType;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRecognitionException.h55 - (NSInteger) unexpectedType;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRecognitionException.h59 - (NSInteger) unexpectedType;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dexceptions.py193 unexpectedType = property(getUnexpectedType) variable in class:RecognitionException
317 self.unexpectedType, self.grammarDecisionDescription

Completed in 280 milliseconds