Searched refs:size (Results 1 - 25 of 302) sorted by relevance

1234567891011>>

/dalvik/dexgen/src/com/android/dexgen/util/
H A DIntList.java31 /** {@code >= 0;} current size of the list */
32 private int size; field in class:IntList
90 throw new IllegalArgumentException("size < 0");
93 size = 0;
102 for (int i = 0; i < size; i++) {
126 if (size != otherList.size) {
130 for (int i = 0; i < size; i++) {
142 StringBuffer sb = new StringBuffer(size * 5 + 10);
146 for (int i = 0; i < size;
161 public int size() { method in class:IntList
[all...]
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/util/
H A DIntList.java31 /** {@code >= 0;} current size of the list */
32 private int size; field in class:IntList
90 throw new IllegalArgumentException("size < 0");
93 size = 0;
102 for (int i = 0; i < size; i++) {
126 if (size != otherList.size) {
130 for (int i = 0; i < size; i++) {
142 StringBuffer sb = new StringBuffer(size * 5 + 10);
146 for (int i = 0; i < size;
161 public int size() { method in class:IntList
[all...]
H A DLabeledList.java32 public LabeledList(int size) { argument
33 super(size);
35 labelToIndex = new IntList(size);
44 super(old.size());
47 int sz = old.size();
63 int sz = labelToIndex.size();
93 int origSz = labelToIndex.size();
111 if (label >= labelToIndex.size()) {
128 int sz = size();
157 int szItems = size();
[all...]
/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/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/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
/dalvik/dx/src/com/android/dx/cf/code/
H A DSwitchList.java38 /** ultimate size of the list */
39 private int size; field in class:SwitchList
44 * @param size {@code >= 0;} the number of elements to be in the table
46 public SwitchList(int size) { argument
48 this.values = new IntList(size);
49 this.targets = new IntList(size + 1);
50 this.size = size;
62 * Gets the size of the list.
64 * @return {@code >= 0;} the list size
66 public int size() { method in class:SwitchList
[all...]
/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 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
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
/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/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/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));
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchHandlerList.java34 * @param size {@code >= 0;} the size of the list
36 public CatchHandlerList(int size) { argument
37 super(size);
45 * @param n {@code >= 0, < size();} which index
68 int size = size();
74 for (int i = 0; i < size; i++) {
83 if ((i == (size - 1)) && catchesAll()) {
104 int size
[all...]
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttBootstrapMethods.java39 int bytes = ATTRIBUTE_HEADER_BYTES + bootstrapMethods.size() * BOOTSTRAP_METHOD_BYTES;
40 for (int i = 0; i < bootstrapMethods.size(); ++i) {
41 int numberOfArguments = bootstrapMethods.get(i).getBootstrapMethodArguments().size();
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchHandlerList.java34 * @param size {@code >= 0;} the size of the list
36 public CatchHandlerList(int size) { argument
37 super(size);
45 * @param n {@code >= 0, < size();} which index
68 int size = size();
74 for (int i = 0; i < size; i++) {
83 if ((i == (size - 1)) && catchesAll()) {
104 int size
[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
/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/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

Completed in 663 milliseconds

1234567891011>>