/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | Lexer.java | 99 addKeyword(TokenNames.REGISTER, TokenTypes.REGISTER); in selectLexer() 100 addKeyword(TokenNames.ACK, TokenTypes.ACK); in selectLexer() 101 addKeyword(TokenNames.OPTIONS, TokenTypes.OPTIONS); in selectLexer() 102 addKeyword(TokenNames.BYE, TokenTypes.BYE); in selectLexer() 103 addKeyword(TokenNames.INVITE, TokenTypes.INVITE); in selectLexer() 104 addKeyword(TokenNames.SIP.toUpperCase(), TokenTypes.SIP); in selectLexer() 105 addKeyword(TokenNames.SIPS.toUpperCase(), TokenTypes.SIPS); in selectLexer() 106 addKeyword(TokenNames.SUBSCRIBE, TokenTypes.SUBSCRIBE); in selectLexer() 107 addKeyword(TokenNames.NOTIFY, TokenTypes.NOTIFY); in selectLexer() 108 addKeyword(TokenNames.MESSAGE, TokenTypes.MESSAGE); in selectLexer() [all …]
|
D | HeaderParser.java | 55 if (TokenNames.MON.equalsIgnoreCase(id)) in wkday() 57 else if (TokenNames.TUE.equalsIgnoreCase(id)) in wkday() 59 else if (TokenNames.WED.equalsIgnoreCase(id)) in wkday() 61 else if (TokenNames.THU.equalsIgnoreCase(id)) in wkday() 63 else if (TokenNames.FRI.equalsIgnoreCase(id)) in wkday() 65 else if (TokenNames.SAT.equalsIgnoreCase(id)) in wkday() 67 else if (TokenNames.SUN.equalsIgnoreCase(id)) in wkday()
|
D | TokenNames.java | 40 public interface TokenNames interface
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | MismatchedTokenException.cs | 113 public ReadOnlyCollection<string> TokenNames property in Antlr.Runtime.MismatchedTokenException 134 …string unexpected = ( TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Cou… in ToString() 135 …string expected = ( TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count ) ? Token… in ToString()
|
D | UnwantedTokenException.cs | 95 …string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNa… in ToString()
|
D | Lexer.cs | 270 … MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); in Match() 294 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); in Match() 341 DisplayRecognitionError( this.TokenNames, e ); in ReportError()
|
D | ITokenSource.cs | 73 string[] TokenNames property
|
D | BaseRecognizer.cs | 241 DisplayRecognitionError( this.TokenNames, e ); in ReportError() 703 e = new UnwantedTokenException( ttype, input, TokenNames ); in RecoverFromMismatchedToken() 727 e = new MismatchedTokenException(ttype, input, TokenNames); in RecoverFromMismatchedToken() 901 public virtual string[] TokenNames property in Antlr.Runtime.BaseRecognizer
|
D | Parser.cs | 82 tokenText = "<missing " + TokenNames[expectedTokenType] + ">"; in GetMissingSymbol()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | MismatchedTokenException.cs | 104 public ReadOnlyCollection<string> TokenNames { property in Antlr.Runtime.MismatchedTokenException 129 …string unexpected = (TokenNames != null && unexpectedType >= 0 && unexpectedType < TokenNames.Coun… in ToString() 130 …string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNa… in ToString()
|
D | UnwantedTokenException.cs | 82 …string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNa… in ToString()
|
D | Lexer.cs | 216 … MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); in Match() 236 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); in Match() 277 DisplayRecognitionError(this.TokenNames, e); in ReportError()
|
D | BaseRecognizer.cs | 217 DisplayRecognitionError(this.TokenNames, e); in ReportError() 620 e = new UnwantedTokenException(ttype, input, TokenNames); in RecoverFromMismatchedToken() 643 e = new MismatchedTokenException(ttype, input, TokenNames); in RecoverFromMismatchedToken() 798 public virtual string[] TokenNames { property in Antlr.Runtime.BaseRecognizer
|
D | Parser.cs | 75 tokenText = "<missing " + TokenNames[expectedTokenType] + ">"; in GetMissingSymbol()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/ |
D | SlimLexer.cs | 278 … MismatchedTokenException mte = new MismatchedTokenException(s[i], input, TokenNames); in Match() 302 MismatchedTokenException mte = new MismatchedTokenException(c, input, TokenNames); in Match() 350 DisplayRecognitionError( this.TokenNames, e ); in ReportError()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/ |
D | llvm-rc.cpp | 119 const Twine TokenNames[] = { in main() local 126 outs() << TokenNames[static_cast<int>(Token.kind())] << ": " in main()
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
D | TokenNamesIms.java | 40 extends gov.nist.javax.sip.parser.TokenNames
|
/external/antlr/runtime/ObjC/Framework/ |
D | TreeWizard.h | 103 + (TreeWizard *)newTreeWizard:(id<TreeAdaptor>)adaptor TokenNames:(NSArray *)theTokNams; 109 - (id) initWithTokenNames:(id<TreeAdaptor>)anAdaptor TokenNames:(NSArray *)theTokNams;
|
D | TreeParser.h | 82 - (NSString *)getErrorMessage:(RecognitionException *)e TokenNames:(AMutableArray *) tokenNames;
|
D | Lexer.h | 84 - (NSString *)getErrorMessage:(RecognitionException *)e TokenNames:(AMutableArray *)tokenNames;
|
D | TreeParser.m | 168 - (NSString *)getErrorMessage:(RecognitionException *)e TokenNames:(AMutableArray *) theTokNams 178 return [super getErrorMessage:e TokenNames:theTokNams];
|
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.pas | 470 function ToString(const TokenNames: TStringArray): String; overload; in ToString() 758 procedure DisplayRecognitionError(const TokenNames: TStringArray; 781 const TokenNames: TStringArray): String; 934 property TokenNames: TStringArray read GetTokenNames; property 1756 function ToString(const TokenNames: TStringArray): String; reintroduce; overload; virtual; 2262 procedure DisplayRecognitionError(const TokenNames: TStringArray; 2265 const TokenNames: TStringArray): String; virtual; 2447 const TokenNames: TStringArray): String; override; 3653 function TBitSet.ToString(const TokenNames: TStringArray): String; in ToString() 3669 if Assigned(TokenNames) then [all …]
|
D | Antlr.Runtime.Tree.pas | 936 function ComputeTokenTypes(const TokenNames: TStringArray): IDictionary<String, Integer>; 1634 const TokenNames: TStringArray): String; override; 1801 function ComputeTokenTypes(const TokenNames: TStringArray): IDictionary<String, Integer>; 1838 const TokenNames: TStringArray); overload; 1839 constructor Create(const TokenNames: TStringArray); overload; 3749 const TokenNames: TStringArray): String; 3762 Result := inherited GetErrorMessage(E, TokenNames); 3976 const TokenNames: TStringArray): IDictionary<String, Integer>; in TTreeWizard.ComputeTokenTypes() 3981 if (Length(TokenNames) > 0)then 3983 for TokenType := TToken.MIN_TOKEN_TYPE to Length(TokenNames) - 1 do [all …]
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeParser.cs | 109 "<missing " + TokenNames[expectedTokenType] + ">"; in GetMissingSymbol()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | TreeParser.cs | 99 "<missing " + TokenNames[expectedTokenType] + ">"; in GetMissingSymbol()
|