Searched defs:opcode (Results 51 - 75 of 559) sorted by relevance

1234567891011>>

/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DJumpInsnNode.java53 * @param opcode the opcode of the type instruction to be constructed. This
54 * opcode must be IFEQ, IFNE, IFLT, IFGE, IFGT, IFLE, IF_ICMPEQ,
61 public JumpInsnNode(final int opcode, final LabelNode label) { argument
62 super(opcode);
67 * Sets the opcode of this instruction.
69 * @param opcode the new instruction opcode. This opcode must be IFEQ, IFNE,
74 public void setOpcode(final int opcode) { argument
[all...]
H A DMethodInsnNode.java63 * @param opcode the opcode of the type instruction to be constructed. This
64 * opcode must be INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or
72 final int opcode,
77 super(opcode);
84 * Sets the opcode of this instruction.
86 * @param opcode the new instruction opcode. This opcode must be
89 public void setOpcode(final int opcode) { argument
71 MethodInsnNode( final int opcode, final String owner, final String name, final String desc) argument
[all...]
H A DTypeInsnNode.java53 * @param opcode the opcode of the type instruction to be constructed. This
54 * opcode must be NEW, ANEWARRAY, CHECKCAST or INSTANCEOF.
58 public TypeInsnNode(final int opcode, final String desc) { argument
59 super(opcode);
64 * Sets the opcode of this instruction.
66 * @param opcode the new instruction opcode. This opcode must be NEW,
69 public void setOpcode(final int opcode) { argument
[all...]
H A DVarInsnNode.java54 * @param opcode the opcode of the local variable instruction to be
55 * constructed. This opcode must be ILOAD, LLOAD, FLOAD, DLOAD,
60 public VarInsnNode(final int opcode, final int var) { argument
61 super(opcode);
66 * Sets the opcode of this instruction.
68 * @param opcode the new instruction opcode. This opcode must be ILOAD,
72 public void setOpcode(final int opcode) { argument
[all...]
/external/proguard/src/proguard/classfile/instruction/
H A DSwitchInstruction.java44 public SwitchInstruction(byte opcode, argument
48 this.opcode = opcode;
61 this.opcode = switchInstruction.opcode;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DOdexedFieldInstructionMapper.java210 private static int getOpcodeSubtype(@Nonnull Opcode opcode) { argument
211 if (opcode.isOdexedInstanceQuick()) {
213 } else if (opcode.isOdexedInstanceVolatile()) {
215 } else if (opcode.isOdexedStaticVolatile()) {
218 throw new RuntimeException(String.format("Not an odexed field access opcode: %s", opcode.name));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DBuilderInstruction.java43 @Nonnull protected final Opcode opcode; field in class:BuilderInstruction
47 protected BuilderInstruction(@Nonnull Opcode opcode) { argument
48 Preconditions.checkFormat(opcode, getFormat());
49 this.opcode = opcode;
53 return opcode;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
H A DBuilderInstruction11n.java48 public BuilderInstruction11n(@Nonnull Opcode opcode, argument
51 super(opcode);
H A DBuilderInstruction11x.java47 public BuilderInstruction11x(@Nonnull Opcode opcode, argument
49 super(opcode);
H A DBuilderInstruction12x.java48 public BuilderInstruction12x(@Nonnull Opcode opcode, argument
51 super(opcode);
H A DBuilderInstruction20bc.java50 public BuilderInstruction20bc(@Nonnull Opcode opcode, argument
53 super(opcode);
H A DBuilderInstruction21c.java49 public BuilderInstruction21c(@Nonnull Opcode opcode, argument
52 super(opcode);
59 @Override public int getReferenceType() { return opcode.referenceType; }
H A DBuilderInstruction21ih.java48 public BuilderInstruction21ih(@Nonnull Opcode opcode, argument
51 super(opcode);
H A DBuilderInstruction21lh.java48 public BuilderInstruction21lh(@Nonnull Opcode opcode, argument
51 super(opcode);
H A DBuilderInstruction21s.java48 public BuilderInstruction21s(@Nonnull Opcode opcode, argument
51 super(opcode);
H A DBuilderInstruction21t.java48 public BuilderInstruction21t(@Nonnull Opcode opcode, argument
51 super(opcode, target);
H A DBuilderInstruction22b.java49 public BuilderInstruction22b(@Nonnull Opcode opcode, argument
53 super(opcode);
H A DBuilderInstruction22c.java50 public BuilderInstruction22c(@Nonnull Opcode opcode, argument
54 super(opcode);
63 @Override public int getReferenceType() { return opcode.referenceType; }
H A DBuilderInstruction22s.java49 public BuilderInstruction22s(@Nonnull Opcode opcode, argument
53 super(opcode);
H A DBuilderInstruction22t.java49 public BuilderInstruction22t(@Nonnull Opcode opcode, argument
53 super(opcode, target);
H A DBuilderInstruction22x.java48 public BuilderInstruction22x(@Nonnull Opcode opcode, argument
51 super(opcode);
H A DBuilderInstruction23x.java49 public BuilderInstruction23x(@Nonnull Opcode opcode, argument
53 super(opcode);
H A DBuilderInstruction31c.java49 public BuilderInstruction31c(@Nonnull Opcode opcode, argument
52 super(opcode);
59 @Override public int getReferenceType() { return opcode.referenceType; }
H A DBuilderInstruction31i.java48 public BuilderInstruction31i(@Nonnull Opcode opcode, argument
51 super(opcode);
H A DBuilderInstruction31t.java48 public BuilderInstruction31t(@Nonnull Opcode opcode, argument
51 super(opcode, target);

Completed in 196 milliseconds

1234567891011>>