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

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DDop.java26 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode family */
27 private final int family; field in class:Dop
43 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
49 public Dop(int opcode, int family, InsnFormat format, argument
55 if ((family < DalvOps.MIN_VALUE) || (family > DalvOps.MAX_VALUE)) {
56 throw new IllegalArgumentException("bogus family");
68 this.family = family;
[all...]
H A DDops.java1194 * Gets the {@link Dop} with the given family/format combination, if
1197 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
1202 public static Dop getOrNull(int family, InsnFormat format) { argument
1213 (dop.getFamily() == family) &&
/dalvik/dx/src/com/android/dx/dex/code/
H A DDop.java29 /** {@code Opcodes.isValid();} the opcode family */
30 private final int family; field in class:Dop
51 * @param family {@code Opcodes.isValid();} the opcode family
60 public Dop(int opcode, int family, int nextOpcode, InsnFormat format, argument
66 if (!Opcodes.isValidShape(family)) {
67 throw new IllegalArgumentException("bogus family");
79 this.family = family;
101 * Gets the opcode family
[all...]

Completed in 69 milliseconds