Home
last modified time | relevance | path

Searched refs:LexerCore (Results 1 – 7 of 7) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/parser/
DTokenTypes.java35 public static final int START = LexerCore.START;
37 public static final int END = LexerCore.END;
170 public static final int ALPHA = LexerCore.ALPHA;
171 public static final int DIGIT = LexerCore.DIGIT;
172 public static final int ID = LexerCore.ID;
173 public static final int WHITESPACE = LexerCore.WHITESPACE;
174 public static final int BACKSLASH = LexerCore.BACKSLASH;
175 public static final int QUOTE = LexerCore.QUOTE;
176 public static final int AT = LexerCore.AT;
177 public static final int SP = LexerCore.SP;
[all …]
DParser.java28 import gov.nist.core.LexerCore;
119 if ( !LexerCore.isTokenChar( token.charAt(i) )) { in checkToken()
DViaParser.java149 lexer.match(LexerCore.ID); in nameValue()
172 lexer.match(LexerCore.ID); in nameValue()
DLexer.java46 public class Lexer extends LexerCore {
/external/nist-sip/java/gov/nist/core/
DHostNameParser.java52 private static LexerCore Lexer;
66 this.lexer = new LexerCore("charLexer", hname); in HostNameParser()
75 public HostNameParser(LexerCore lexer) { in HostNameParser()
84 new char[] {LexerCore.ALPHADIGIT_VALID_CHARS, '-', '.'};
108 if (LexerCore.isHexDigit(la) || la == '.' || la == ':' in ipv6Reference()
149 if (LexerCore.isHexDigit(la) || la == '.' in ipv6Reference()
186 new char[] {LexerCore.ALPHADIGIT_VALID_CHARS, ':'}); in host()
DParserCore.java45 protected LexerCore lexer;
52 lexer.match(LexerCore.ID); in nameValue()
72 lexer.match(LexerCore.ID); in nameValue()
DLexerCore.java38 public class LexerCore extends StringTokenizer { class
129 protected LexerCore() { in LexerCore() method in LexerCore
136 public LexerCore(String lexerName, String buffer) { in LexerCore() method in LexerCore