/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
CatchHandlerList.java | 34 * @param size {@code >= 0;} the size of the list 36 public CatchHandlerList(int size) { 37 super(size); 45 * @param n {@code >= 0, < size();} which index 68 int size = size(); local 74 for (int i = 0; i < size; i++) { 83 if ((i == (size - 1)) && catchesAll()) { 104 int size = size() local [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
Form3rc.java | 49 int size = regs.size(); local 54 switch (size) { 64 RegisterSpec lastReg = regs.get(size - 1); 122 int sz = regs.size(); 156 int sz = regs.size();
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
ParameterAnnotationStruct.java | 66 int size = annotationsList.size(); local 68 ArrayList<AnnotationSetRefItem>(size); 70 for (int i = 0; i < size; i++) {
|
ProtoIdItem.java | 31 /** size of instances when written out to a file, in bytes */ 60 this.parameterTypes = (parameters.size() == 0) ? null 72 int size = parameters.size(); local 73 StringBuilder sb = new StringBuilder(size + 1); 77 for (int i = 0; i < size; i++) { 140 int size = params.size(); local 142 for (int i = 0; i < size; i++) {
|
Statistics.java | 73 if (dataMap.size() == 0) { 118 /** {@code >= 0;} total size of instances in bytes */ 121 /** {@code >= 0;} largest size of any individual item */ 124 /** {@code >= 0;} smallest size of any individual item */ 134 int size = item.writeSize(); local 138 this.totalSize = size; 139 this.largestSize = size; 140 this.smallestSize = size; 149 int size = item.writeSize(); local 152 totalSize += size; [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/ |
Annotations.java | 155 * @return {@code >= 0;} the size 157 public int size() { method in class:Annotations 158 return annotations.size();
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
ByteArray.java | 36 /** {@code >= 0, <= bytes.length}; size computed as 38 private final int size; field in class:ByteArray 67 this.size = end - start; 80 * Gets the size of the array, in bytes. 82 * @return {@code >= 0;} the size 84 public int size() { method in class:ByteArray 85 return size; 92 * @param end {@code >= start, <= size();} end index of 122 * @param off {@code >= 0, < size();} offset to fetch 133 * @param off {@code >= 0, < (size() - 1);} offset to fetc [all...] |
FixedSizeList.java | 22 * Simple (mostly) fixed-size list of objects, which may be made immutable. 32 * @param size the size of the list 34 public FixedSizeList(int size) { 35 super(size != 0); 38 arr = new Object[size]; 41 throw new IllegalArgumentException("size < 0"); 123 public final int size() { method in class:FixedSizeList 172 * @param n {@code >= 0, < size();} which element 196 * @param n {@code >= 0, < size();} which elemen [all...] |
LabeledList.java | 33 public LabeledList(int size) { 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();} which elemen [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
ExecutionStack.java | 43 * size 50 * @param maxStack {@code >= 0;} the maximum size of the stack for this 116 * Gets the maximum stack size for this instance. 118 * @return {@code >= 0;} the max stack size 125 * Gets the current stack size. 127 * @return {@code >= 0, < getMaxStack();} the current stack size 129 public int size() { method in class:ExecutionStack 198 * @throws SimException thrown if {@code n >= size()} 218 * @throws SimException thrown if {@code n >= size()} 271 * @throws SimException thrown if {@code n >= size()} o [all...] |
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) { 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/direct/ |
AttributeListParser.java | 70 int size = cf.getBytes().getUnsignedShort(offset); local 76 this.list = new StdAttributeList(size); 123 int sz = list.size();
|
/dalvik/dx/src/com/android/dx/dex/code/ |
CatchHandlerList.java | 34 * @param size {@code >= 0;} the size of the list 36 public CatchHandlerList(int size) { 37 super(size); 45 * @param n {@code >= 0, < size();} which index 68 int size = size(); local 74 for (int i = 0; i < size; i++) { 83 if ((i == (size - 1)) && catchesAll()) { 104 int size = size() local [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
ParameterAnnotationStruct.java | 67 int size = annotationsList.size(); local 69 ArrayList<AnnotationSetRefItem>(size); 71 for (int i = 0; i < size; i++) {
|
Statistics.java | 72 if (dataMap.size() == 0) { 117 /** {@code >= 0;} total size of instances in bytes */ 120 /** {@code >= 0;} largest size of any individual item */ 123 /** {@code >= 0;} smallest size of any individual item */ 133 int size = item.writeSize(); local 137 this.totalSize = size; 138 this.largestSize = size; 139 this.smallestSize = size; 148 int size = item.writeSize(); local 151 totalSize += size; [all...] |
/dalvik/dx/src/com/android/dx/merge/ |
InstructionTransformer.java | 45 int size = decodedInstructions.length; local 48 mappedInstructions = new DecodedInstruction[size]; 52 ShortArrayCodeOutput out = new ShortArrayCodeOutput(size);
|
/dalvik/dx/src/com/android/dx/rop/annotation/ |
Annotations.java | 154 * @return {@code >= 0;} the size 156 public int size() { method in class:Annotations 157 return annotations.size();
|
/dalvik/dx/src/com/android/dx/util/ |
ByteArray.java | 36 /** {@code >= 0, <= bytes.length}; size computed as 38 private final int size; field in class:ByteArray 67 this.size = end - start; 80 * Gets the size of the array, in bytes. 82 * @return {@code >= 0;} the size 84 public int size() { method in class:ByteArray 85 return size; 92 * @param end {@code >= start, <= size();} end index of 122 * @param off {@code >= 0, < size();} offset to fetch 133 * @param off {@code >= 0, < (size() - 1);} offset to fetc [all...] |
FixedSizeList.java | 22 * Simple (mostly) fixed-size list of objects, which may be made immutable. 32 * @param size the size of the list 34 public FixedSizeList(int size) { 35 super(size != 0); 38 arr = new Object[size]; 41 throw new IllegalArgumentException("size < 0"); 123 public final int size() { method in class:FixedSizeList 172 * @param n {@code >= 0, < size();} which element 196 * @param n {@code >= 0, < size();} which elemen [all...] |
LabeledList.java | 32 public LabeledList(int size) { 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...] |
/development/ndk/platforms/android-21/include/linux/ |
cramfs_fs.h | 36 __u32 size:CRAMFS_SIZE_WIDTH, gid:CRAMFS_GID_WIDTH; member in struct:cramfs_inode 50 __u32 size; member in struct:cramfs_super
|
romfs_fs.h | 40 __be32 size; member in struct:romfs_super_block 49 __be32 size; member in struct:romfs_inode
|
uvcvideo.h | 54 __u8 size; member in struct:uvc_xu_control_mapping 69 __u16 size; member in struct:uvc_xu_control_query
|
/development/ndk/platforms/android-3/include/linux/mtd/ |
map.h | 47 unsigned long size; member in struct:map_info 79 #define INVALIDATE_CACHED_RANGE(map, from, size) do { if(map->inval_cache) map->inval_cache(map, from, size); } while(0)
|
/development/ndk/platforms/android-3/include/linux/ |
sysfs.h | 43 size_t size; member in struct:bin_attribute
|