Home
last modified time | relevance | path

Searched refs:ParseException (Results 1 – 11 of 11) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/iface/
DParseException.java24 public class ParseException class
26 public ParseException(String message) { in ParseException() method in ParseException
30 public ParseException(Throwable cause) { in ParseException() method in ParseException
34 public ParseException(String message, Throwable cause) { in ParseException() method in ParseException
/dalvik/dx/src/com/android/dx/cf/cst/
DConstantPoolParser.java33 import com.android.dx.cf.iface.ParseException;
220 throw new ParseException("MethodHandle not supported"); in determineOffsets()
223 throw new ParseException("MethodType not supported"); in determineOffsets()
226 throw new ParseException("InvokeDynamic not supported"); in determineOffsets()
229 throw new ParseException("unknown tag byte: " + Hex.u1(tag)); in determineOffsets()
232 } catch (ParseException ex) { in determineOffsets()
330 throw new ParseException("MethodHandle not supported"); in parse0()
333 throw new ParseException("MethodType not supported"); in parse0()
336 throw new ParseException("InvokeDynamic not supported"); in parse0()
339 throw new ParseException("unknown tag byte: " + Hex.u1(tag)); in parse0()
[all …]
/dalvik/dx/src/com/android/dx/cf/direct/
DAttributeListParser.java20 import com.android.dx.cf.iface.ParseException;
152 } catch (ParseException ex) { in parse()
156 ParseException pe = new ParseException(ex); in parse()
DDirectClassFile.java26 import com.android.dx.cf.iface.ParseException;
407 } catch (ParseException ex) { in parse()
411 ParseException pe = new ParseException(ex); in parse()
454 throw new ParseException("severely truncated class file"); in parse0()
472 throw new ParseException("bad class file magic (" + in parse0()
520 throw new ParseException("class name (" + thisClassName + in parse0()
554 throw new ParseException("extra bytes at end of class file, " + in parse0()
DMemberListParser.java21 import com.android.dx.cf.iface.ParseException;
226 } catch (ParseException ex) { in parse()
231 ParseException pe = new ParseException(ex); in parse()
DAttributeFactory.java21 import com.android.dx.cf.iface.ParseException;
98 } catch (ParseException ex) { in parse()
DAnnotationParser.java19 import com.android.dx.cf.iface.ParseException;
106 throw new ParseException("extra data in attribute"); in parseValueAttribute()
130 throw new ParseException("extra data in attribute"); in parseParameterAttribute()
155 throw new ParseException("extra data in attribute"); in parseAnnotationAttribute()
410 throw new ParseException("unknown annotation tag: " + in parseValue()
444 throw new ParseException("truncated annotation attribute"); in requireLength()
DStdAttributeFactory.java42 import com.android.dx.cf.iface.ParseException;
736 throw new ParseException("severely truncated attribute"); in throwSeverelyTruncated()
747 throw new ParseException("truncated attribute"); in throwTruncated()
759 throw new ParseException("bad attribute length; expected length " + in throwBadLength()
/dalvik/dx/src/com/android/dx/command/dump/
DMain.java20 import com.android.dx.cf.iface.ParseException;
98 } catch (ParseException ex) { in main()
/dalvik/dx/src/com/android/dx/cf/code/
DBytecodeArray.java19 import com.android.dx.cf.iface.ParseException;
777 throw new ParseException("invokedynamic not supported"); in parseInstruction()
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java29 import com.android.dx.cf.iface.ParseException;
773 } catch (ParseException ex) { in translateClass()