OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptGraph
(Results
1 - 2
of
2
) sorted by null
/cts/tests/camera/src/android/hardware/camera2/cts/rs/
ScriptGraph.java
56
* <p>All resources are managed by the {@link
ScriptGraph
} and {@link #close closing} the graph
59
public class
ScriptGraph
implements UncheckedCloseable {
61
private static final String TAG = "
ScriptGraph
";
231
* Builds a {@link
ScriptGraph
} by configuring input size/format/usage,
234
* @see
ScriptGraph
#create
395
* The {@link
ScriptGraph
#Builder} that was used to configure
443
* @return A constructed {@link
ScriptGraph
}.
445
public
ScriptGraph
buildGraph() {
446
return new
ScriptGraph
(this);
452
private
ScriptGraph
(Builder builder)
[
all
...]
/cts/tests/camera/src/android/hardware/camera2/cts/
AllocationTest.java
44
import android.hardware.camera2.cts.rs.
ScriptGraph
;
377
private void captureSingleShotAndExecute(CaptureRequest request,
ScriptGraph
graph)
428
private void validateInputOutputNotZeroes(
ScriptGraph
scriptGraph
, Size size) {
440
byte[] data =
scriptGraph
.getInputData();
460
int actualSizeOut =
scriptGraph
.getOutputAllocation().getBytesSize();
463
byte[] dataOut =
scriptGraph
.getOutputData();
492
try (
ScriptGraph
scriptGraph
=
ScriptGraph
.create(
[
all
...]
Completed in 383 milliseconds