OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LexerCore
(Results
1 - 7
of
7
) sorted by null
/external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java
35
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
...]
Parser.java
28
import gov.nist.core.
LexerCore
;
119
if ( !
LexerCore
.isTokenChar( token.charAt(i) )) {
ViaParser.java
149
lexer.match(
LexerCore
.ID);
172
lexer.match(
LexerCore
.ID);
Lexer.java
46
public class Lexer extends
LexerCore
{
/external/nist-sip/java/gov/nist/core/
HostNameParser.java
52
private static
LexerCore
Lexer;
66
this.lexer = new
LexerCore
("charLexer", hname);
75
public HostNameParser(
LexerCore
lexer) {
84
new char[] {
LexerCore
.ALPHADIGIT_VALID_CHARS, '-', '.'};
108
if (
LexerCore
.isHexDigit(la) || la == '.' || la == ':'
149
if (
LexerCore
.isHexDigit(la) || la == '.'
186
new char[] {
LexerCore
.ALPHADIGIT_VALID_CHARS, ':'});
ParserCore.java
45
protected
LexerCore
lexer;
52
lexer.match(
LexerCore
.ID);
72
lexer.match(
LexerCore
.ID);
LexerCore.java
38
public class
LexerCore
extends StringTokenizer {
129
protected
LexerCore
() {
136
public
LexerCore
(String lexerName, String buffer) {
Completed in 207 milliseconds