HomeSort by relevance Sort by last modified time
    Searched refs:attributeFactory (Results 1 - 6 of 6) 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...]
FieldListParser.java 40 * @param attributeFactory {@code non-null;} attribute factory to use
43 AttributeFactory attributeFactory) {
44 super(cf, definer, offset, attributeFactory);
73 return AttributeFactory.CTX_FIELD;
MethodListParser.java 40 * @param attributeFactory {@code non-null;} attribute factory to use
43 int offset, AttributeFactory attributeFactory) {
44 super(cf, definer, offset, attributeFactory);
73 return AttributeFactory.CTX_METHOD;
DirectClassFile.java 142 private AttributeFactory attributeFactory;
217 * @param attributeFactory {@code non-null;} the attribute factory
219 public void setAttributeFactory(AttributeFactory attributeFactory) {
220 if (attributeFactory == null) {
221 throw new NullPointerException("attributeFactory == null");
224 this.attributeFactory = attributeFactory;
521 new FieldListParser(this, thisClass, at, attributeFactory);
    [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 65 milliseconds