/dalvik/dexgen/src/com/android/dexgen/util/ |
H A D | IntList.java | 31 /** {@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 D | LabeledList.java | 33 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 D | IntList.java | 31 /** {@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 D | LabeledList.java | 32 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 D | AnnotationsList.java | 41 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 D | AnnotationsList.java | 41 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 D | FieldList.java | 37 * @return the size 39 public int size(); method in interface:FieldList 44 * @param n {@code n >= 0, n < size();} which field
|
H A D | StdFieldList.java | 29 * @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 D | AttributeList.java | 36 * @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 D | SwitchList.java | 38 /** 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 D | FieldList.java | 37 * @return the size 39 public int size(); method in interface:FieldList 44 * @param n {@code n >= 0, n < size();} which field
|
H A D | MethodList.java | 36 * @return the size 38 public int size(); method in interface:MethodList 43 * @param n {@code n >= 0, n < size();} which method
|
H A D | StdFieldList.java | 29 * @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 D | StdMethodList.java | 29 * @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/dx/src/com/android/dx/io/ |
H A D | EncodedValueReader.java | 55 int size = Leb128Utils.readUnsignedLeb128(in); 56 visitArray(size); 58 for (int i = 0; i < size; i++) { 65 int size = Leb128Utils.readUnsignedLeb128(in); 66 visitAnnotation(typeIndex, size); 68 for (int i = 0; i < size; i++) { 78 int size = arg + 1; 88 visitPrimitive(argAndType, type, arg, size); 91 visitString(type, readIndex(in, size)); 94 visitType(type, readIndex(in, size)); 120 visitArray(int size) argument 121 visitAnnotation(int typeIndex, int size) argument 123 visitPrimitive(int argAndType, int type, int arg, int size) argument [all...] |
/dalvik/vm/mterp/out/ |
H A D | InterpAsm-allstubs.S | 16 .size dvmAsmInstructionStart, .-dvmAsmInstructionStart 31 .size dvmAsmSisterStart, .-dvmAsmSisterStart
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
H A D | FillArrayDataPayloadDecodedInstruction.java | 29 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/vm/compiler/codegen/x86/ |
H A D | NcgHelper.cpp | 26 * Returns 3 if we don't find a match (it's the size of the packed-switch 29 s4 dvmNcgHandlePackedSwitch(const s4* entries, s4 firstKey, u2 size, s4 testVal) argument 33 if (testVal < firstKey || testVal >= firstKey + size) { 35 testVal, firstKey, firstKey+size-1); 39 assert(testVal - firstKey >= 0 && testVal - firstKey < size); 47 s4 dvmJitHandlePackedSwitch(const s4* entries, s4 firstKey, u2 size, s4 testVal) argument 49 if (testVal < firstKey || testVal >= firstKey + size) { 51 testVal, firstKey, firstKey+size-1); 64 * Returns 3 if we don't find a match (it's the size of the sparse-switch 67 s4 dvmNcgHandleSparseSwitch(const s4* keys, u2 size, s argument 87 dvmJitHandleSparseSwitch(const s4* keys, u2 size, s4 testVal) argument [all...] |
H A D | NcgAot.h | 36 OpndSize size, 39 OpndSize size, 44 OpndSize size);
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
H A D | InsnList.java | 29 * @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 D | InsnList.java | 29 * @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/tests/080-oom-throw/src/ |
H A D | Main.java | 19 static int blowup(char[][] holder, int size) { argument 22 for ( ; i < size; i++) 28 return size; 54 int size = 1 * 1024 * 1024; 55 char[][] holder = new char[size][]; 57 int count = ArrayMemEater.blowup(holder, size); 59 if (count < size) {
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
H A D | CatchHandlerList.java | 34 * @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/dex/code/ |
H A D | CatchHandlerList.java | 34 * @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 D | ConstantPool.java | 25 * 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
|