/external/antlr/runtime/Python/tests/ |
D | 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)
|
D | t005lexer.py | 59 assert exc.unexpectedType == '2', repr(exc.unexpectedType) 71 assert exc.unexpectedType == antlr3.EOF, repr(exc.unexpectedType)
|
D | t007lexer.py | 52 assert exc.unexpectedType == 'o', repr(exc.unexpectedType)
|
D | t006lexer.py | 55 assert exc.unexpectedType == '2', repr(exc.unexpectedType)
|
D | t009lexer.py | 61 assert exc.unexpectedType == 'a', repr(exc.unexpectedType)
|
D | t008lexer.py | 60 assert exc.unexpectedType == 'b', repr(exc.unexpectedType)
|
D | t011lexer.py | 71 assert exc.unexpectedType == '-', repr(exc.unexpectedType)
|
D | t010lexer.py | 71 assert exc.unexpectedType == '-', repr(exc.unexpectedType)
|
D | t002lexer.py | 46 self.failUnlessEqual(exc.unexpectedType, '2')
|
D | t003lexer.py | 49 self.failUnlessEqual(exc.unexpectedType, '2')
|
D | t001lexer.py | 53 self.failUnlessEqual(exc.unexpectedType, '1')
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | MismatchedTokenException.cs | 133 int unexpectedType = UnexpectedType; in ToString() 134 …( TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Count ) ? TokenNames[un… in ToString()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | MismatchedTokenException.cs | 128 int unexpectedType = UnexpectedType; in ToString() 129 …= (TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Count) ? TokenNames[un… in ToString()
|
/external/antlr/runtime/Python3/tests/ |
D | t012lexerXML.py | 68 self.assertEqual(exc.unexpectedType, '>') 91 self.assertEqual(exc.unexpectedType, 't') 114 self.assertEqual(exc.unexpectedType, 'a')
|
D | t005lexer.py | 59 self.assertEqual(exc.unexpectedType, '2') 71 self.assertEqual(exc.unexpectedType, antlr3.EOF)
|
D | t002lexer.py | 46 self.assertEqual(exc.unexpectedType, '2')
|
D | t001lexer.py | 53 self.assertEqual(exc.unexpectedType, '1')
|
D | t003lexer.py | 49 self.assertEqual(exc.unexpectedType, '2')
|
D | t007lexer.py | 52 self.assertEqual(exc.unexpectedType, 'o')
|
D | t006lexer.py | 55 self.assertEqual(exc.unexpectedType, '2')
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | NoViableAltException.as | 48 …return "NoViableAltException('"+String.fromCharCode(unexpectedType)+"'@["+grammarDecisionDescripti… 51 return "NoViableAltException("+unexpectedType+"@["+grammarDecisionDescription+"])";
|
D | MismatchedTreeNodeException.as | 13 return "MismatchedTreeNodeException("+unexpectedType+"!="+expecting+")";
|
/external/antlr/runtime/Python/antlr3/ |
D | exceptions.py | 193 unexpectedType = property(getUnexpectedType) variable in RecognitionException 317 self.unexpectedType, self.grammarDecisionDescription
|
/external/antlr/runtime/Python3/antlr3/ |
D | exceptions.py | 193 unexpectedType = property(getUnexpectedType) variable in RecognitionException 316 self.unexpectedType, self.grammarDecisionDescription
|
/external/antlr/runtime/ObjC/Framework/ |
D | RecognitionException.h | 63 - (NSInteger) unexpectedType;
|