Searched defs:target (Results 1 - 20 of 20) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DDexJarMaker.java50 JarOutputStream target = null;
52 target = new JarOutputStream(
55 add(new File(pathHolder.getDexFilePath()), target);
62 if (target != null) {
63 target.close();
75 * @param target {@code non-null;} target jar archive
78 private void add(File source, JarOutputStream target) throws IOException { argument
87 target.putNextEntry(entry);
91 target
[all...]
/dalvik/dx/src/com/android/dx/io/instructions/
H A DZeroRegisterDecodedInstruction.java29 int index, IndexType indexType, int target, long literal) {
30 super(format, opcode, index, indexType, target, literal);
28 ZeroRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal) argument
H A DOneRegisterDecodedInstruction.java32 int index, IndexType indexType, int target, long literal,
34 super(format, opcode, index, indexType, target, literal);
31 OneRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a) argument
H A DRegisterRangeDecodedInstruction.java36 int index, IndexType indexType, int target, long literal,
38 super(format, opcode, index, indexType, target, literal);
35 RegisterRangeDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int registerCount) argument
H A DTwoRegisterDecodedInstruction.java35 int index, IndexType indexType, int target, long literal,
37 super(format, opcode, index, indexType, target, literal);
34 TwoRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int b) argument
H A DFiveRegisterDecodedInstruction.java44 int index, IndexType indexType, int target, long literal,
46 super(format, opcode, index, indexType, target, literal);
43 FiveRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int b, int c, int d, int e) argument
H A DFourRegisterDecodedInstruction.java41 int index, IndexType indexType, int target, long literal,
43 super(format, opcode, index, indexType, target, literal);
40 FourRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int b, int c, int d) argument
H A DThreeRegisterDecodedInstruction.java38 int index, IndexType indexType, int target, long literal,
40 super(format, opcode, index, indexType, target, literal);
37 ThreeRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int b, int c) argument
H A DDecodedInstruction.java53 * target address argument. This is an absolute address, not just
57 private final int target; field in class:DecodedInstruction
102 int index, IndexType indexType, int target, long literal) {
115 this.target = target;
150 * Gets the raw target.
153 return target;
157 * Gets the target as a relative offset from the given address.
160 return target - baseAddress;
164 * Gets the target a
101 DecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DTargetInsn.java23 * Instruction which has a single branch target.
26 /** {@code non-null;} the branch target */
27 private CodeAddress target; field in class:TargetInsn
31 * unknown ({@code -1}), and the target is initially
39 * @param target {@code non-null;} the branch target
42 RegisterSpecList registers, CodeAddress target) {
45 if (target == null) {
46 throw new NullPointerException("target == null");
49 this.target
41 TargetInsn(Dop opcode, SourcePosition position, RegisterSpecList registers, CodeAddress target) argument
74 withNewTargetAndReversed(CodeAddress target) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DTargetInsn.java23 * Instruction which has a single branch target.
26 /** {@code non-null;} the branch target */
27 private CodeAddress target; field in class:TargetInsn
31 * unknown ({@code -1}), and the target is initially
39 * @param target {@code non-null;} the branch target
42 RegisterSpecList registers, CodeAddress target) {
45 if (target == null) {
46 throw new NullPointerException("target == null");
49 this.target
41 TargetInsn(Dop opcode, SourcePosition position, RegisterSpecList registers, CodeAddress target) argument
74 withNewTargetAndReversed(CodeAddress target) argument
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DSwitchList.java23 * List of (value, target) mappings representing the choices of a
25 * also holds the default target for the switch.
33 * is always one extra element in the target list, to hold the
34 * default target
81 * Gets the indicated target. Asking for the target at {@code size()}
82 * returns the default target.
85 * @return {@code >= 0;} the target
92 * Gets the default target. This is just a shorthand for
95 * @return {@code >= 0;} the default target
127 setDefaultTarget(int target) argument
147 add(int value, int target) argument
[all...]
H A DMachine.java29 * branch target information.
170 * indicating a branch target.
172 * @param target the argument value
174 public void auxTargetArg(int target); argument
183 * @param cases {@code non-null;} the list of key-target pairs, plus the default
184 * target
198 * Indicates that the target of this operation is the given local.
H A DBaseMachine.java54 /** auxiliary branch target argument */
69 /** {@code null-ok;} local target spec, if salient and calculated */
241 public final void auxTargetArg(int target) { argument
242 auxTarget = target;
336 * Gets the branch target auxiliary argument.
381 * Gets the target local register spec of the current operation, if any.
382 * The local target spec is the combination of the values indicated
391 * local target was set since the last time {@link #clearArgs} was
400 throw new SimException("local target with " +
529 * there is a local target (se
[all...]
H A DBasicBlocker.java217 int target) {
221 targetLists[offset] = IntList.makeImmutable(target);
229 * target and next instruction begin new blocks.)
238 targetLists[offset] = IntList.makeImmutable(next, target);
243 addWorkIfNecessary(target, true);
287 * there isn't any, then "next" is the sole target.
216 visitBranch(int opcode, int offset, int length, int target) argument
H A DBytecodeArray.java705 int target = offset + bytes.getShort(offset + 1);
706 visitor.visitBranch(opcode, offset, 3, target);
799 int target = offset + bytes.getInt(offset + 1);
803 visitor.visitBranch(newop, offset, 5, target);
849 int target = offset + bytes.getInt(at);
851 cases.add(low + i, target);
887 int target = offset + bytes.getInt(at + 4);
889 cases.add(match, target);
1237 * Visits an instruction which has a branch target argument.
1242 * @param target th
1244 visitBranch(int opcode, int offset, int length, int target) argument
1323 visitBranch(int opcode, int offset, int length, int target) argument
1399 visitBranch(int opcode, int offset, int length, int target) argument
[all...]
H A DSimulator.java751 int target) {
794 machine.auxTargetArg(target);
750 visitBranch(int opcode, int offset, int length, int target) argument
/dalvik/dx/src/com/android/dx/cf/direct/
H A DCodeObserver.java144 int target) {
145 String targetStr = (length <= 3) ? Hex.u2(target) : Hex.u4(target);
143 visitBranch(int opcode, int offset, int length, int target) argument
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java62 private final Dex target; field in class:IndexMap
77 public IndexMap(Dex target, TableOfContents tableOfContents) { argument
78 this.target = target;
161 return new TypeList(target, types);
209 return new MethodId(target,
216 return new CallSiteId(target, adjustEncodedArray(callSiteId.getCallSiteOffset()));
221 target,
231 return new FieldId(target,
239 return new ProtoId(target,
[all...]
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 525 milliseconds