Searched defs:TokenNames (Results 1 - 10 of 10) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DITokenSource.cs73 string[] TokenNames property in interface:Antlr.Runtime.ITokenSource
H A DMismatchedTokenException.cs102 this._tokenNames = new ReadOnlyCollection<string>((string[])info.GetValue("TokenNames", typeof(string[])));
113 public ReadOnlyCollection<string> TokenNames property in class:Antlr.Runtime.MismatchedTokenException
128 info.AddValue("TokenNames", (_tokenNames != null) ? new List<string>(_tokenNames).ToArray() : default(string[]));
134 string unexpected = ( TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Count ) ? TokenNames[unexpectedType] : unexpectedType.ToString();
135 string expected = ( TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count ) ? TokenNames[Expecting] : Expecting.ToString();
H A DBaseRecognizer.cs239 DisplayRecognitionError( this.TokenNames, e );
701 e = new UnwantedTokenException( ttype, input, TokenNames );
725 e = new MismatchedTokenException(ttype, input, TokenNames);
899 public virtual string[] TokenNames property in class:Antlr.Runtime.BaseRecognizer
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedTokenException.cs95 this._tokenNames = new ReadOnlyCollection<string>((string[])info.GetValue("TokenNames", typeof(string[])));
104 public ReadOnlyCollection<string> TokenNames { property in class:Antlr.Runtime.MismatchedTokenException
124 info.AddValue("TokenNames", tokenArray);
129 string unexpected = (TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Count) ? TokenNames[unexpectedType] : unexpectedType.ToString();
130 string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNames[Expecting] : Expecting.ToString();
H A DBaseRecognizer.cs217 DisplayRecognitionError(this.TokenNames, e);
620 e = new UnwantedTokenException(ttype, input, TokenNames);
643 e = new MismatchedTokenException(ttype, input, TokenNames);
798 public virtual string[] TokenNames { property in class:Antlr.Runtime.BaseRecognizer
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugTreeGrammar.cs90 public override string[] TokenNames { get { return DebugTreeGrammar.tokenNames; } } property in class:DebugTreeGrammar
H A DProfileTreeGrammar.cs95 public override string[] TokenNames { get { return ProfileTreeGrammar.tokenNames; } } property in class:ProfileTreeGrammar
H A DDebugGrammarParser.cs118 public override string[] TokenNames { get { return DebugGrammarParser.tokenNames; } } property in class:DebugGrammarParser
H A DProfileGrammarParser.cs122 public override string[] TokenNames { get { return ProfileGrammarParser.tokenNames; } } property in class:ProfileGrammarParser
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DTokenNames.java40 public interface TokenNames interface in inherits:gov.nist.javax.sip.header.ParameterNames,gov.nist.javax.sip.address.ParameterNames
94 * $Log: TokenNames.java,v $

Completed in 157 milliseconds