Lines Matching defs:Input
224 if (obj instanceof Input) {
225 Input unbound = (Input)obj;
361 public static final class Input {
369 Input() {
401 private List<Input> mInputs2;
410 List<Input> inputs, Future[] outputs) {
449 if (obj instanceof Future || obj instanceof Input) {
450 Log.e(TAG, this.toString() + ": input " + i +
454 Input unbound = mInputs2.get(i);
464 if (output instanceof Input) {
465 Input)output).get();
473 * Sets an input of the ScriptGroup. This specifies an
474 * Allocation to be used for kernels that require an input
538 * another kernel as input. Kernel to field allows the output of
545 * in a ScriptGroup must have at least one input, output, or internal
894 * the function is bound to 1) a known value, 2) a script group input
895 * (see class {@link Input}), or 3) a
905 * An external script group input is created using the {@link #addInput} method.
925 List<Input> mInputs;
936 mInputs = new ArrayList<Input>();
973 * Adds a script group input
975 * @return a script group input, which can be used as an argument or a value to
978 public Input addInput() {
979 Input unbound = new Input();
1036 mInputs = new ArrayList<Input>();