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/merge/
H A DInstructionTransformer.java67 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
68 mappedInstructions[mappedAt++] = one;
74 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
75 int stringId = one.getIndex();
77 boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
79 mappedInstructions[mappedAt++] = one.withIndex(mappedId);
85 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
86 int fieldId = one.getIndex();
88 boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
90 mappedInstructions[mappedAt++] = one
96 visit(DecodedInstruction[] all, DecodedInstruction one) argument
107 visit(DecodedInstruction[] all, DecodedInstruction one) argument
118 visit(DecodedInstruction[] all, DecodedInstruction one) argument
128 visit(DecodedInstruction[] all, DecodedInstruction one) argument
[all...]
/dalvik/dx/src/com/android/dx/io/
H A DCodeReader.java98 DecodedInstruction one = decodedInstructions[i];
99 if (one == null) {
103 callVisit(decodedInstructions, one);
113 private void callVisit(DecodedInstruction[] all, DecodedInstruction one) { argument
116 switch (OpcodeInfo.getIndexType(one.getOpcode())) {
130 visitor.visit(all, one);
135 void visit(DecodedInstruction[] all, DecodedInstruction one); argument

Completed in 187 milliseconds