27282930313233
{ public SearchExpressionLexer(InputStream in) { this(new ByteBuffer(in)); } public SearchExpressionLexer(Reader in) { this(new CharBuffer(in)); }
53545556575859
{ public MappingLexer(InputStream in) { this(new ByteBuffer(in)); } public MappingLexer(Reader in) { this(new CharBuffer(in)); }
47484950515253
this( new ByteBuffer( in ) ); } public JavaLexer(Reader in) { this( new CharBuffer( in ) ); }
{ public ClientLexer(InputStream in) { this(new ByteBuffer(in)); } public ClientLexer(Reader in) { this(new CharBuffer(in)); }
135136137138139140141
public WLexer(InputStream in) { this(new ByteBuffer(in)); } public WLexer(Reader in) { this(new CharBuffer(in)); }
106107108109110111112
public StdCLexer(InputStream in) { this(new ByteBuffer(in)); } public StdCLexer(Reader in) { this(new CharBuffer(in)); }
64656667686970
36373839404142
{ public SqlStatementLexer(InputStream in) { this(new ByteBuffer(in)); } public SqlStatementLexer(Reader in) { this(new CharBuffer(in)); }
43444546474849
protected void setPossibleID(boolean possibleID) {} public HqlBaseLexer(InputStream in) { this(new ByteBuffer(in)); } public HqlBaseLexer(Reader in) { this(new CharBuffer(in)); }
45464748495051