HomeSort by relevance Sort by last modified time
    Searched defs:attributeFactory (Results 1 - 4 of 4) sorted by null

  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 40 private final AttributeFactory attributeFactory;
56 * @param context attribute parsing context (see {@link AttributeFactory})
58 * @param attributeFactory {@code non-null;} attribute factory to use
61 AttributeFactory attributeFactory) {
66 if (attributeFactory == null) {
67 throw new NullPointerException("attributeFactory == null");
75 this.attributeFactory = attributeFactory;
    [all...]
MemberListParser.java 45 private final AttributeFactory attributeFactory;
60 * @param attributeFactory {@code non-null;} attribute factory to use
63 int offset, AttributeFactory attributeFactory) {
72 if (attributeFactory == null) {
73 throw new NullPointerException("attributeFactory == null");
79 this.attributeFactory = attributeFactory;
211 attributeFactory);
    [all...]
DirectClassFile.java 150 private AttributeFactory attributeFactory;
225 * @param attributeFactory {@code non-null;} the attribute factory
227 public void setAttributeFactory(AttributeFactory attributeFactory) {
228 if (attributeFactory == null) {
229 throw new NullPointerException("attributeFactory == null");
232 this.attributeFactory = attributeFactory;
571 new FieldListParser(this, thisClass, at, attributeFactory);
    [all...]
  /external/dexmaker/lib/
dalvik-dx-9.0.0_r3.jar 

Completed in 88 milliseconds