Lines Matching refs:ScriptGroup

41 public final class ScriptGroup extends BaseObj {
42 private static final String TAG = "ScriptGroup";
94 * created using the {@link android.renderscript.ScriptGroup.Builder2#addKernel} or
95 * {@link android.renderscript.ScriptGroup.Builder2#addInvoke}
356 * is assigned in {@link ScriptGroup#execute(Object...)} method as
404 ScriptGroup(long id, RenderScript rs) {
409 ScriptGroup(RenderScript rs, String name, List<Closure> closures,
473 * Sets an input of the ScriptGroup. This specifies an
475 * Allocation provided from outside of the ScriptGroup.
495 * Sets an output of the ScriptGroup. This specifies an
497 * Allocation visible after the ScriptGroup is executed.
517 * Execute the ScriptGroup. This will run all the kernels in
518 * the ScriptGroup. No internal connection results will be visible
519 * after execution of the ScriptGroup.
530 * Helper class to build a ScriptGroup. A ScriptGroup is
533 * First, all kernels to be used by the ScriptGroup should be added.
542 * A ScriptGroup must contain a single directed acyclic graph (DAG); it
543 * cannot contain cycles. Currently, all kernels used in a ScriptGroup
545 * in a ScriptGroup must have at least one input, output, or internal
549 * return the ScriptGroup object.
561 * Create a Builder for generating a ScriptGroup.
766 * @return ScriptGroup The new ScriptGroup
768 public ScriptGroup create() {
838 ScriptGroup sg = new ScriptGroup(id, mRS);
926 private static final String TAG = "ScriptGroup.Builder2";
1029 public ScriptGroup create(String name, Future... outputs) {
1034 ScriptGroup ret = new ScriptGroup(mRS, name, mClosures, mInputs, outputs);
1065 * Destroy this ScriptGroup and all Closures in it
1069 // ScriptGroup created using the old Builder class does not