Searched defs:size (Results 1 - 25 of 77) sorted by relevance

1234

/dalvik/dexgen/src/com/android/dexgen/rop/
H A DFieldList.java37 * @return the size
39 public int size(); method in interface:FieldList
44 * @param n {@code n >= 0, n < size();} which field
H A DStdFieldList.java29 * @param size the size of the list
31 public StdFieldList(int size) { argument
32 super(size);
43 * @param n {@code >= 0, < size();} which field
H A DAttributeList.java36 * @return the size
38 public int size(); method in interface:AttributeList
43 * @param n {@code n >= 0, n < size();} which attribute
H A DStdAttributeList.java30 * @param size the size of the list
32 public StdAttributeList(int size) { argument
33 super(size);
43 int sz = size();
55 int sz = size();
69 int sz = size();
98 * @param n {@code >= 0, < size();} which attribute
/dalvik/dx/src/com/android/dx/cf/iface/
H A DFieldList.java37 * @return the size
39 public int size(); method in interface:FieldList
44 * @param n {@code n >= 0, n < size();} which field
H A DMethodList.java36 * @return the size
38 public int size(); method in interface:MethodList
43 * @param n {@code n >= 0, n < size();} which method
H A DAttributeList.java36 * @return the size
38 public int size(); method in interface:AttributeList
43 * @param n {@code n >= 0, n < size();} which attribute
H A DStdAttributeList.java30 * @param size the size of the list
32 public StdAttributeList(int size) { argument
33 super(size);
43 int sz = size();
55 int sz = size();
69 int sz = size();
98 * @param n {@code >= 0, < size();} which attribute
H A DStdFieldList.java29 * @param size the size of the list
31 public StdFieldList(int size) { argument
32 super(size);
43 * @param n {@code >= 0, < size();} which field
H A DStdMethodList.java29 * @param size the size of the list
31 public StdMethodList(int size) { argument
32 super(size);
43 * @param n {@code >= 0, < size();} which method
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotationsList.java41 int size = list1.size();
43 if (size != list2.size()) {
44 throw new IllegalArgumentException("list1.size() != list2.size()");
47 AnnotationsList result = new AnnotationsList(size);
49 for (int i = 0; i < size; i++) {
62 * @param size the size o
64 AnnotationsList(int size) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DConstantPool.java25 * Get the "size" of the constant pool. This corresponds to the
27 * always at least one more than the actual size of the constant pool,
30 * @return {@code >= 1;} the size
32 public int size(); method in interface:ConstantPool
38 * @param n {@code n >= 0, n < size();} the constant pool index
50 * @param n {@code n >= 0, n < size();} the constant pool index
65 * @param n {@code n >= 0, n < size();} the constant pool index
H A DStdConstantPool.java35 * @param size the size of the pool; this corresponds to the
37 * always at least one more than the actual size of the constant pool,
40 public StdConstantPool(int size) { argument
41 super(size > 1);
43 if (size < 1) {
44 throw new IllegalArgumentException("size < 1");
47 entries = new Constant[size];
51 public int size() { method in class:StdConstantPool
93 * @param n {@code >= 1, < size();} whic
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/type/
H A DTypeList.java35 * Gets the size of this list.
37 * @return {@code >= 0;} the size
39 public int size(); method in interface:TypeList
46 * @param n {@code >= 0, < size();} which element
/dalvik/dx/src/com/android/dx/cf/code/
H A DByteBlockList.java30 * @param size {@code >= 0;} the number of elements to be in the list
32 public ByteBlockList(int size) { argument
33 super(size);
41 * @param n {@code >= 0, < size();} which element
68 * @param n {@code >= 0, < size();} which element
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotationsList.java41 int size = list1.size();
43 if (size != list2.size()) {
44 throw new IllegalArgumentException("list1.size() != list2.size()");
47 AnnotationsList result = new AnnotationsList(size);
49 for (int i = 0; i < size; i++) {
62 * @param size the size o
64 AnnotationsList(int size) argument
[all...]
/dalvik/dx/src/com/android/dx/rop/cst/
H A DConstantPool.java25 * Get the "size" of the constant pool. This corresponds to the
27 * always at least one more than the actual size of the constant pool,
30 * @return {@code >= 1;} the size
32 public int size(); method in interface:ConstantPool
38 * @param n {@code n >= 0, n < size();} the constant pool index
50 * @param n {@code n >= 0, n < size();} the constant pool index
65 * @param n {@code n >= 0, n < size();} the constant pool index
H A DStdConstantPool.java35 * @param size the size of the pool; this corresponds to the
37 * always at least one more than the actual size of the constant pool,
40 public StdConstantPool(int size) { argument
41 super(size > 1);
43 if (size < 1) {
44 throw new IllegalArgumentException("size < 1");
47 entries = new Constant[size];
51 public int size() { method in class:StdConstantPool
102 * @param n {@code >= 1, < size();} whic
[all...]
/dalvik/dx/src/com/android/dx/rop/type/
H A DTypeList.java35 * Gets the size of this list.
37 * @return {@code >= 0;} the size
39 public int size(); method in interface:TypeList
46 * @param n {@code >= 0, < size();} which element
/dalvik/dx/tests/118-find-usages/
H A DFoo.java52 @Override public int size() { method in class:Foo.MyList
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DInsnList.java29 * @param size the size of the list
31 public InsnList(int size) { argument
32 super(size);
40 * @param n {@code >= 0, < size();} which index
50 * @param n {@code >= 0, < size();} which index
59 * {@code get(size() - 1)}.
64 return get(size() - 1);
73 int sz = size();
91 int sz = size();
[all...]
/dalvik/dexgen/src/com/android/dexgen/util/
H A DLabeledList.java33 public LabeledList(int size) { argument
34 super(size);
36 labelToIndex = new IntList(size);
45 super(old.size());
48 int sz = old.size();
64 int sz = labelToIndex.size();
92 int origSz = labelToIndex.size();
110 if (label >= labelToIndex.size()) {
131 int szItems = size();
145 * @param n {@code >= 0, < size();} whic
[all...]
/dalvik/dx/src/com/android/dx/io/instructions/
H A DFillArrayDataPayloadDecodedInstruction.java29 private final int size; field in class:FillArrayDataPayloadDecodedInstruction
39 int opcode, Object data, int size, int elementWidth) {
43 this.size = size;
89 return size;
38 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, Object data, int size, int elementWidth) argument
/dalvik/dx/src/com/android/dx/rop/code/
H A DInsnList.java29 * @param size the size of the list
31 public InsnList(int size) { argument
32 super(size);
40 * @param n {@code >= 0, < size();} which index
50 * @param n {@code >= 0, < size();} which index
59 * {@code get(size() - 1)}.
64 return get(size() - 1);
73 int sz = size();
91 int sz = size();
[all...]
/dalvik/dx/src/com/android/dx/ssa/back/
H A DInterferenceGraph.java65 int oldRegCount = interference.size();
84 if (reg < interference.size()) {
92 * @param size requested minumum size
94 private void ensureCapacity(int size) { argument
95 int countRegs = interference.size();
97 interference.ensureCapacity(size);
99 for (int i = countRegs; i < size; i++) {
100 interference.add(SetFactory.makeInterferenceSet(size));

Completed in 3132 milliseconds

1234