Searched refs:one (Results 1 - 25 of 65) sorted by relevance

123

/dalvik/libdex/
H A DDexUtf.h42 unsigned int one, two, three; local
44 one = *(*pUtf8Ptr)++;
45 if ((one & 0x80) != 0) {
48 if ((one & 0x20) != 0) {
51 return ((one & 0x0f) << 12) |
56 return ((one & 0x1f) << 6) |
60 /* one-byte encoding */
61 return one;
/dalvik/dx/src/com/android/dx/merge/
H A DInstructionTransformer.java61 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
62 mappedInstructions[mappedAt++] = one;
67 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
68 int stringId = one.getIndex();
70 boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
72 mappedInstructions[mappedAt++] = one.withIndex(mappedId);
77 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
78 int fieldId = one.getIndex();
80 boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
82 mappedInstructions[mappedAt++] = one
87 visit(DecodedInstruction[] all, DecodedInstruction one) argument
97 visit(DecodedInstruction[] all, DecodedInstruction one) argument
[all...]
/dalvik/tests/068-classloader/src/
H A DDoubledImplement.java15 public void one() { method in class:DoubledImplement
16 System.out.println("DoubledImplement one");
H A DDoubledImplement2.java29 public void one() { method in class:DoubledImplement2
30 System.out.println("DoubledImplement2 one");
/dalvik/dx/src/com/android/dx/io/
H A DCodeReader.java84 DecodedInstruction one = decodedInstructions[i];
85 if (one == null) {
89 callVisit(decodedInstructions, one);
99 private void callVisit(DecodedInstruction[] all, DecodedInstruction one) { argument
102 switch (OpcodeInfo.getIndexType(one.getOpcode())) {
114 visitor.visit(all, one);
119 void visit(DecodedInstruction[] all, DecodedInstruction one); argument
/dalvik/tests/004-annotations/src/android/test/anno/
H A DFullyNoted.java20 @AnnoSimpleParameter int one,
29 @AnnoSimpleParameter int one,
19 bar( @nnoSimpleParameter int one, @AnnoFancyParameter(factor=3.7879912899761) long two) argument
28 bar1( @nnoSimpleParameter int one, @AnnoFancyParameter(factor=3.7879912899761) long two) argument
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DUniformItemSection.java75 for (Item one : items()) {
76 one.addContents(file);
86 for (Item one : items()) {
87 one.writeTo(file, out);
97 * of the one we're given to calculate its offset.
H A DMixedItemSection.java164 * same item to more than one instance, nor to add the same items
187 * (which may not be the one passed in). This will add the item if no
279 OffsettedItem one = items.get(i);
280 one.addContents(file);
310 OffsettedItem one = items.get(i);
312 int placedAt = one.place(this, outAt);
316 one);
319 outAt = placedAt + one.writeSize();
322 "...while placing " + one);
337 for (OffsettedItem one
[all...]
H A DTypeListItem.java100 Type one = list.getType(i);
101 int idx = typeIds.indexOf(one);
103 " " + Hex.u2(idx) + " // " + one.toHuman());
/dalvik/dx/src/com/android/dx/dex/file/
H A DUniformItemSection.java75 for (Item one : items()) {
76 one.addContents(file);
86 for (Item one : items()) {
87 one.writeTo(file, out);
97 * of the one we're given to calculate its offset.
H A DMixedItemSection.java164 * same item to more than one instance, nor to add the same items
187 * (which may not be the one passed in). This will add the item if no
279 OffsettedItem one = items.get(i);
280 one.addContents(file);
310 OffsettedItem one = items.get(i);
312 int placedAt = one.place(this, outAt);
316 one);
319 outAt = placedAt + one.writeSize();
322 "...while placing " + one);
337 for (OffsettedItem one
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
H A DForm35c.java142 RegisterSpec one = regs.get(i);
143 result += one.getCategory();
150 if (!unsignedFitsInNibble(one.getReg() + one.getCategory() - 1)) {
159 * Returns a register list which is equivalent to the given one,
179 RegisterSpec one = orig.get(i);
180 result.set(wordAt, one);
181 if (one.getCategory() == 2) {
183 RegisterSpec.make(one.getReg() + 1, Type.VOID));
/dalvik/dx/src/com/android/dx/cf/code/
H A DLocalVariableList.java66 * given instances, where one instance should have only type
68 * result is identical to the one with descriptors, except that
133 * <p><b>Note:</b> At least one of {@code descriptor} or
164 Item one = (Item) get0(i);
166 if ((one != null) && one.matchesAllButType(item)) {
167 return one;
178 * <i>just past</i> the one that sets the variable.
189 Item one = (Item) get0(i);
191 if ((one !
[all...]
H A DByteCatchList.java107 Item one = get(i);
108 if (one.covers(pc) && typeNotFound(one, resultArr, resultSz)) {
109 resultArr[resultSz] = one;
142 CstType one = arr[i].getExceptionClass();
143 if ((one == type) || (one == CstType.OBJECT)) {
200 * Returns a rop-style catches list equivalent to this one.
/dalvik/dx/src/com/android/dx/dex/code/form/
H A DForm35c.java160 RegisterSpec one = regs.get(i);
161 result += one.getCategory();
168 if (!unsignedFitsInNibble(one.getReg() + one.getCategory() - 1)) {
177 * Returns a register list which is equivalent to the given one,
197 RegisterSpec one = orig.get(i);
198 result.set(wordAt, one);
199 if (one.getCategory() == 2) {
201 RegisterSpec.make(one.getReg() + 1, Type.VOID));
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DBlockAddresses.java131 BasicBlock one = blocks.get(i);
132 int label = one.getLabel();
133 Insn insn = one.getInsns().get(0);
137 SourcePosition pos = one.getLastInsn().getPosition();
/dalvik/dx/src/com/android/dx/dex/code/
H A DBlockAddresses.java131 BasicBlock one = blocks.get(i);
132 int label = one.getLabel();
133 Insn insn = one.getInsns().get(0);
137 SourcePosition pos = one.getLastInsn().getPosition();
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DInsnList.java105 * Returns an instance that is identical to this one, except that
118 Insn one = (Insn) get0(i);
119 if (one != null) {
120 result.set0(i, one.withRegisterOffset(delta));
H A DBasicBlockList.java112 BasicBlock one = (BasicBlock) getOrNull0(i);
113 if (one != null) {
114 result += one.getInsns().size();
132 BasicBlock one = (BasicBlock) getOrNull0(i);
133 if (one != null) {
134 InsnList insns = one.getInsns();
178 BasicBlock one = get(i);
179 InsnList insns = one.getInsns();
185 * Returns an instance that is identical to this one, except that
198 BasicBlock one
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DInsnList.java105 * Returns an instance that is identical to this one, except that
118 Insn one = (Insn) get0(i);
119 if (one != null) {
120 result.set0(i, one.withRegisterOffset(delta));
H A DBasicBlockList.java112 BasicBlock one = (BasicBlock) getOrNull0(i);
113 if (one != null) {
114 result += one.getInsns().size();
132 BasicBlock one = (BasicBlock) getOrNull0(i);
133 if (one != null) {
134 InsnList insns = one.getInsns();
177 BasicBlock one = get(i);
178 InsnList insns = one.getInsns();
184 * Returns an instance that is identical to this one, except that
197 BasicBlock one
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/
H A DByteCatchList.java107 Item one = get(i);
108 if (one.covers(pc) && typeNotFound(one, resultArr, resultSz)) {
109 resultArr[resultSz] = one;
142 CstType one = arr[i].getExceptionClass();
143 if ((one == type) || (one == CstType.OBJECT)) {
200 * Returns a rop-style catches list equivalent to this one.
H A DLineNumberList.java122 Item one = get(i);
123 int onePc = one.getStartPc();
126 bestLine = one.getLineNumber();
/dalvik/dx/src/com/android/dx/dex/cf/
H A DCfTranslator.java151 Field one = fields.get(i);
153 CstFieldRef field = new CstFieldRef(thisClass, one.getNat());
154 int accessFlags = one.getAccessFlags();
157 TypedConstant constVal = one.getConstantValue();
169 AttributeTranslator.getAnnotations(one.getAttributes());
174 String msg = "...while processing " + one.getName().toHuman() +
175 " " + one.getDescriptor().toHuman();
231 Method one = methods.get(i);
233 CstMethodRef meth = new CstMethodRef(thisClass, one.getNat());
234 int accessFlags = one
[all...]
/dalvik/dexgen/src/com/android/dexgen/util/
H A DLabeledList.java51 Object one = old.get0(i);
52 if (one != null) {
53 set0(i, one);

Completed in 772 milliseconds

123