Searched defs:one (Results 1 - 3 of 3) sorted by relevance

/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/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/dx/src/com/android/dx/merge/
H A DInstructionTransformer.java62 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
63 mappedInstructions[mappedAt++] = one;
68 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
69 int stringId = one.getIndex();
71 boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
73 mappedInstructions[mappedAt++] = one.withIndex(mappedId);
78 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
79 int fieldId = one.getIndex();
81 boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
83 mappedInstructions[mappedAt++] = one
88 visit(DecodedInstruction[] all, DecodedInstruction one) argument
98 visit(DecodedInstruction[] all, DecodedInstruction one) argument
[all...]

Completed in 2164 milliseconds