Lines Matching defs:result

56      * {@code non-null;} result type of this operation; {@link Type#VOID} for
57 * no-result operations
59 private final Type result;
84 * @param result {@code non-null;} result type of this operation; {@link
85 * Type#VOID} for no-result operations
94 public Rop(int opcode, Type result, TypeList sources,
97 if (result == null) {
98 throw new NullPointerException("result == null");
119 this.result = result;
132 * @param result {@code non-null;} result type of this operation; {@link
133 * Type#VOID} for no-result operations
141 public Rop(int opcode, Type result, TypeList sources,
143 this(opcode, result, sources, exceptions, branchingness, false,
152 * @param result {@code non-null;} result type of this operation; {@link
153 * Type#VOID} for no-result operations
159 public Rop(int opcode, Type result, TypeList sources, int branchingness,
161 this(opcode, result, sources, StdTypeList.EMPTY, branchingness, false,
171 * @param result {@code non-null;} result type of this operation; {@link
172 * Type#VOID} for no-result operations
176 public Rop(int opcode, Type result, TypeList sources, String nickname) {
177 this(opcode, result, sources, StdTypeList.EMPTY, Rop.BRANCH_NONE,
187 * @param result {@code non-null;} result type of this operation; {@link
188 * Type#VOID} for no-result operations
194 public Rop(int opcode, Type result, TypeList sources, TypeList exceptions,
196 this(opcode, result, sources, exceptions, Rop.BRANCH_THROW, false,
231 (result == rop.result) &&
240 h = (h * 31) + result.hashCode();
256 if (result != Type.VOID) {
258 sb.append(result);
317 * Gets the result type. A return value of {@link Type#VOID}
320 * @return {@code null-ok;} the result spec
323 return result;
385 * the result of calling {@link #toString}.