Home
last modified time | relevance | path

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

12

/external/antlr/runtime/Python/tests/
Dt012lexerXML.py72 assert exc.unexpectedType == '>', repr(exc.unexpectedType)
96 assert exc.unexpectedType == 't', repr(exc.unexpectedType)
120 assert exc.unexpectedType == 'a', repr(exc.unexpectedType)
Dt005lexer.py59 assert exc.unexpectedType == '2', repr(exc.unexpectedType)
71 assert exc.unexpectedType == antlr3.EOF, repr(exc.unexpectedType)
Dt007lexer.py52 assert exc.unexpectedType == 'o', repr(exc.unexpectedType)
Dt006lexer.py55 assert exc.unexpectedType == '2', repr(exc.unexpectedType)
Dt009lexer.py61 assert exc.unexpectedType == 'a', repr(exc.unexpectedType)
Dt008lexer.py60 assert exc.unexpectedType == 'b', repr(exc.unexpectedType)
Dt011lexer.py71 assert exc.unexpectedType == '-', repr(exc.unexpectedType)
Dt010lexer.py71 assert exc.unexpectedType == '-', repr(exc.unexpectedType)
Dt002lexer.py46 self.failUnlessEqual(exc.unexpectedType, '2')
Dt003lexer.py49 self.failUnlessEqual(exc.unexpectedType, '2')
Dt001lexer.py53 self.failUnlessEqual(exc.unexpectedType, '1')
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DMismatchedTokenException.cs133 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/
DMismatchedTokenException.cs128 int unexpectedType = UnexpectedType; in ToString()
129 …= (TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Count) ? TokenNames[un… in ToString()
/external/antlr/runtime/Python3/tests/
Dt012lexerXML.py68 self.assertEqual(exc.unexpectedType, '>')
91 self.assertEqual(exc.unexpectedType, 't')
114 self.assertEqual(exc.unexpectedType, 'a')
Dt005lexer.py59 self.assertEqual(exc.unexpectedType, '2')
71 self.assertEqual(exc.unexpectedType, antlr3.EOF)
Dt002lexer.py46 self.assertEqual(exc.unexpectedType, '2')
Dt001lexer.py53 self.assertEqual(exc.unexpectedType, '1')
Dt003lexer.py49 self.assertEqual(exc.unexpectedType, '2')
Dt007lexer.py52 self.assertEqual(exc.unexpectedType, 'o')
Dt006lexer.py55 self.assertEqual(exc.unexpectedType, '2')
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DNoViableAltException.as48 …return "NoViableAltException('"+String.fromCharCode(unexpectedType)+"'@["+grammarDecisionDescripti…
51 return "NoViableAltException("+unexpectedType+"@["+grammarDecisionDescription+"])";
DMismatchedTreeNodeException.as13 return "MismatchedTreeNodeException("+unexpectedType+"!="+expecting+")";
/external/antlr/runtime/Python/antlr3/
Dexceptions.py193 unexpectedType = property(getUnexpectedType) variable in RecognitionException
317 self.unexpectedType, self.grammarDecisionDescription
/external/antlr/runtime/Python3/antlr3/
Dexceptions.py193 unexpectedType = property(getUnexpectedType) variable in RecognitionException
316 self.unexpectedType, self.grammarDecisionDescription
/external/antlr/runtime/ObjC/Framework/
DRecognitionException.h63 - (NSInteger) unexpectedType;

12