HomeSort by relevance Sort by last modified time
    Searched refs:UnicodeEscapePreprocessor (Results 1 - 8 of 8) sorted by null

  /external/turbine/javatests/com/google/turbine/parse/
UnicodeEscapePreprocessorTest.java 78 UnicodeEscapePreprocessor reader = new UnicodeEscapePreprocessor(new SourceFile(null, input));
80 for (char ch = reader.next(); ch != UnicodeEscapePreprocessor.ASCII_SUB; ch = reader.next()) {
ParseErrorTest.java 37 new UnicodeEscapePreprocessor(new SourceFile("<>", String.valueOf("2147483648"))));
51 new UnicodeEscapePreprocessor(new SourceFile("<>", String.valueOf("0x100000000"))));
ExpressionParserTest.java 148 StreamLexer lexer = new StreamLexer(new UnicodeEscapePreprocessor(new SourceFile(null, input)));
VariableInitializerTest.java 134 Lexer lexer = new StreamLexer(new UnicodeEscapePreprocessor(new SourceFile(null, input)));
LexerTest.java 342 Lexer lexer = new StreamLexer(new UnicodeEscapePreprocessor(new SourceFile(null, input)));
  /external/turbine/java/com/google/turbine/parse/
UnicodeEscapePreprocessor.java 22 public class UnicodeEscapePreprocessor {
33 public UnicodeEscapePreprocessor(SourceFile source) {
StreamLexer.java 19 import static com.google.turbine.parse.UnicodeEscapePreprocessor.ASCII_SUB;
26 /** A {@link Lexer} that streams input from a {@link UnicodeEscapePreprocessor}. */
29 private final UnicodeEscapePreprocessor reader;
43 public StreamLexer(UnicodeEscapePreprocessor reader) {
Parser.java 75 return new Parser(new StreamLexer(new UnicodeEscapePreprocessor(source))).compilationUnit();
    [all...]

Completed in 200 milliseconds