Home
last modified time | relevance | path

Searched refs:UnexpectedType (Results 1 – 15 of 15) sorted by relevance

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DNoViableAltException.cs123 …return "NoViableAltException('" + (char)UnexpectedType + "'@[" + GrammarDecisionDescription + "])"; in ToString()
125 … return "NoViableAltException(" + UnexpectedType + "@[" + GrammarDecisionDescription + "])"; in ToString()
DMismatchedNotSetException.cs68 return "MismatchedNotSetException(" + UnexpectedType + "!=" + Expecting + ")"; in ToString()
DMismatchedTreeNodeException.cs93 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")"; in ToString()
DMismatchedSetException.cs92 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")"; in ToString()
DMismatchedRangeException.cs104 return "MismatchedRangeException(" + UnexpectedType + " not in [" + A + "," + B + "])"; in ToString()
DMismatchedTokenException.cs128 int unexpectedType = UnexpectedType; in ToString()
DRecognitionException.cs178 public virtual int UnexpectedType { property in Antlr.Runtime.RecognitionException
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DNoViableAltException.cs157 …return "NoViableAltException('" + (char)UnexpectedType + "'@[" + GrammarDecisionDescription + "])"; in ToString()
161 … return "NoViableAltException(" + UnexpectedType + "@[" + GrammarDecisionDescription + "])"; in ToString()
DMismatchedNotSetException.cs78 return "MismatchedNotSetException(" + UnexpectedType + "!=" + Expecting + ")"; in ToString()
DMismatchedSetException.cs105 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")"; in ToString()
DMismatchedTreeNodeException.cs106 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")"; in ToString()
DMismatchedRangeException.cs119 return "MismatchedRangeException(" + UnexpectedType + " not in [" + A + "," + B + "])"; in ToString()
DMismatchedTokenException.cs133 int unexpectedType = UnexpectedType; in ToString()
DRecognitionException.cs232 public virtual int UnexpectedType property in Antlr.Runtime.RecognitionException
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.pas1455 property UnexpectedType: Integer read GetUnexpectedType; property
2962 Result := 'MismatchedTokenException(' + IntToStr(UnexpectedType)
3025 Result := 'MismatchedTreeNodeException(' + IntToStr(UnexpectedType)
3044 Result := 'NoViableAltException(''' + Char(UnexpectedType) + '''@['
3047 Result := 'NoViableAltException(''' + IntToStr(UnexpectedType) + '''@['
3071 Result := 'MismatchedSetException(' + IntToStr(UnexpectedType)
3079 Result := 'MismatchedNotSetException(' + IntToStr(UnexpectedType)
3110 Result := 'MismatchedNotSetException(' + IntToStr(UnexpectedType)