Lines Matching refs:inputs
31 * A script group may take inputs and generate outputs, which are consumed and
33 * Inside a script group, outputs from one kernel can be passed to another kernel as inputs.
353 * An opaque class for script group inputs
410 List<Input> inputs, Future[] outputs) {
414 mInputs2 = inputs;
429 * @param inputs Values for inputs to the script group, in the order as the
430 * inputs are added via {@link Builder2#addInput}.
435 public Object[] execute(Object... inputs) {
436 if (inputs.length < mInputs2.size()) {
437 Log.e(TAG, this.toString() + " receives " + inputs.length + " inputs, " +
442 if (inputs.length > mInputs2.size()) {
443 Log.i(TAG, this.toString() + " receives " + inputs.length + " inputs, " +
448 Object obj = inputs[i];
780 ArrayList<IO> inputs = new ArrayList<IO>();
804 inputs.add(new IO(kid));
844 sg.mInputs = new IO[inputs.size()];
845 for (int ct=0; ct < inputs.size(); ct++) {
846 sg.mInputs[ct] = inputs.get(ct);
903 * can be used as its inputs.
904 * External script group inputs can be used as inputs to individual closures as well.
912 * futures as inputs;