Searched refs:ArtErrorParserException (Results 1 – 3 of 3) sorted by relevance
17 public static class ArtErrorParserException extends Exception { class in ArtErrorParser18 public ArtErrorParserException(String message) { in ArtErrorParserException() method in ArtErrorParser.ArtErrorParserException56 public String until(char match) throws ArtErrorParserException { in until()59 throw new ArtErrorParserException("Expected to find " + match + " at " + pos); in until()64 public void check(char expected) throws ArtErrorParserException { in check()66 throw new ArtErrorParserException("Expected " + expected + " found " + pos); in check()141 public static List<ArtErrorInfo> parse(String message) throws ArtErrorParserException { in parse()154 private static ArtErrorInfo parse(String[] lines, final int line) throws ArtErrorParserException { in parse()194 throw new ArtErrorParserException("Unexpected art error message: " + lineContent); in parse()207 throw new ArtErrorParserException("Unexpected art error message parts: " + parts); in parse()[all …]
12 import com.android.tools.r8.utils.ArtErrorParser.ArtErrorParserException;59 } catch (ArtErrorParserException parserException) { in testUnicodeSetFromJar()
19 import com.android.tools.r8.utils.ArtErrorParser.ArtErrorParserException;111 } catch (ArtErrorParserException parserException) { in checkVerification()