Searched refs:UnicodeEscapePreprocessor (Results 1 – 8 of 8) sorted by relevance
78 UnicodeEscapePreprocessor reader = new UnicodeEscapePreprocessor(new SourceFile(null, input)); in readAll()80 for (char ch = reader.next(); ch != UnicodeEscapePreprocessor.ASCII_SUB; ch = reader.next()) { in readAll()
37 new UnicodeEscapePreprocessor(new SourceFile("<>", String.valueOf("2147483648")))); in intBound()51 new UnicodeEscapePreprocessor(new SourceFile("<>", String.valueOf("0x100000000")))); in hexIntBound()
134 Lexer lexer = new StreamLexer(new UnicodeEscapePreprocessor(new SourceFile(null, input))); in test()
148 StreamLexer lexer = new StreamLexer(new UnicodeEscapePreprocessor(new SourceFile(null, input))); in test()
342 Lexer lexer = new StreamLexer(new UnicodeEscapePreprocessor(new SourceFile(null, input))); in lex()
22 public class UnicodeEscapePreprocessor { class33 public UnicodeEscapePreprocessor(SourceFile source) { in UnicodeEscapePreprocessor() method in UnicodeEscapePreprocessor
19 import static com.google.turbine.parse.UnicodeEscapePreprocessor.ASCII_SUB;29 private final UnicodeEscapePreprocessor reader;43 public StreamLexer(UnicodeEscapePreprocessor reader) { in StreamLexer()
85 return new Parser(new StreamLexer(new UnicodeEscapePreprocessor(source))).compilationUnit(); in parse()