Searched defs:attributeFactory (Results 1 - 5 of 5) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/direct/
H A DAttributeListParser.java40 private final AttributeFactory attributeFactory; field in class:AttributeListParser
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;
142 attributeFactory.parse(cf, context, at, observer);
60 AttributeListParser(DirectClassFile cf, int context, int offset, AttributeFactory attributeFactory) argument
H A DFieldListParser.java40 * @param attributeFactory {@code non-null;} attribute factory to use
43 AttributeFactory attributeFactory) {
44 super(cf, definer, offset, attributeFactory);
42 FieldListParser(DirectClassFile cf, CstType definer, int offset, AttributeFactory attributeFactory) argument
H A DMethodListParser.java40 * @param attributeFactory {@code non-null;} attribute factory to use
43 int offset, AttributeFactory attributeFactory) {
44 super(cf, definer, offset, attributeFactory);
42 MethodListParser(DirectClassFile cf, CstType definer, int offset, AttributeFactory attributeFactory) argument
H A DMemberListParser.java45 private final AttributeFactory attributeFactory; field in class:MemberListParser
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);
62 MemberListParser(DirectClassFile cf, CstType definer, int offset, AttributeFactory attributeFactory) argument
H A DDirectClassFile.java146 private AttributeFactory attributeFactory; field in class:DirectClassFile
221 * @param attributeFactory {@code non-null;} the attribute factory
223 public void setAttributeFactory(AttributeFactory attributeFactory) { argument
224 if (attributeFactory == null) {
225 throw new NullPointerException("attributeFactory == null");
228 this.attributeFactory = attributeFactory;
534 new FieldListParser(this, thisClass, at, attributeFactory);
540 new MethodListParser(this, thisClass, at, attributeFactory);
547 attributeFactory);
[all...]

Completed in 244 milliseconds