HomeSort by relevance Sort by last modified time
    Searched defs:Output (Results 1 - 25 of 377) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/img_utils/include/img_utils/
Output.h 28 * Utility class used to output bytes.
30 class ANDROID_API Output {
32 virtual ~Output();
35 * Open this Output.
51 * Close this Output. It is not valid to call open on a previously closed Output.
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Output.java 13 * Simple struct-like class for output parameters.
16 public class Output<T> {
31 * Constructs an empty <code>Output</code>
33 public Output() {
38 * Constructs an <code>Output</code> with the given value.
41 public Output(T value) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Output.java 12 * Simple struct-like class for output parameters.
16 public class Output<T> {
33 * Constructs an empty <code>Output</code>
36 public Output() {
41 * Constructs an <code>Output</code> with the given value.
45 public Output(T value) {
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
console.c 23 Output (
  /external/v8/tools/foozzie/
v8_commands.py 5 # Fork from commands.py and output.py in v8 test driver.
13 class Output(object):
59 return Output(
  /external/v8/tools/testrunner/objects/
output.py 33 class Output(object):
61 return Output(packed[0], packed[1], packed[2], packed[3], packed[4])
  /frameworks/av/media/img_utils/src/
Output.cpp 18 #include <img_utils/Output.h>
23 Output::~Output() {}
24 status_t Output::open() { return OK; }
25 status_t Output::close() { return OK; }
  /external/llvm/unittests/Support/
raw_sha1_ostream_test.cpp 22 std::string Output;
23 Output.reserve(2 * Length);
26 Output.push_back(LUT[c >> 4]);
27 Output.push_back(LUT[c & 15]);
29 return Output;
SourceMgrTest.cpp 23 std::string Output;
43 raw_string_ostream OS(Output);
57 Output);
67 Output);
77 Output);
87 Output);
97 Output);
107 Output);
117 Output);
127 Output);
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
bcast_ops.cc 58 Tensor output(DT_INT32, TensorShape({len}));
60 output.flat<int32>()(i) = static_cast<int32>(bcast.output_shape()[i]);
62 ctx->SetConstantOutput(0, output);
110 Output(ctx, 0, bcast.grad_x_reduce_idx());
111 Output(ctx, 1, bcast.grad_y_reduce_idx());
115 void Output(XlaOpKernelContext* ctx, int idx, const BCast::Vec& v) {
  /external/tensorflow/tensorflow/core/kernels/
bcast_ops.cc 51 Output(ctx, 0, bcast.output_shape());
57 void Output(OpKernelContext* ctx, int idx, const BCast::Vec& v) {
100 Output(ctx, 0, bcast.grad_x_reduce_idx());
101 Output(ctx, 1, bcast.grad_y_reduce_idx());
107 void Output(OpKernelContext* ctx, int idx, const BCast::Vec& v) {
  /build/soong/ui/build/
exec.go 71 func (c *Cmd) Output() ([]byte, error) {
73 bytes, err := c.Cmd.Output()
111 // OutputOrFatal is equivalent to Output, but handles the error with a call to ctx.Fatal
113 ret, err := c.Output()
  /dalvik/dexgen/src/com/android/dexgen/util/
Output.java 20 * Interface for a sink for binary output. This is similar to
22 * are declared, and multibyte output is defined to be little-endian.
24 public interface Output {
124 * force alignment of the output cursor as given.
  /dalvik/dx/src/com/android/dx/util/
Output.java 22 * Interface for a sink for binary output. This is similar to
24 * are declared, and multibyte output is defined to be little-endian.
26 public interface Output extends ByteOutput {
127 * force alignment of the output cursor as given.
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}.
28 public class Output {
33 * Creates a new {@link Output} object that wraps the given {@link Writer}.
39 public Output(Writer writer) {
  /external/clang/unittests/Rewrite/
RewriteBufferTest.cpp 31 const char *Output = "<outer><inner>hello</inner></outer> ";
48 EXPECT_EQ(Output, Result);
  /external/rmi4utils/f54test/
display.cpp 29 void Display::Output(const char * buf)
68 void AnsiConsole::Output(const char * buf)
  /external/tensorflow/tensorflow/go/
operation.go 49 // named output of op.
53 // the list of tensors for a specific output of the operation, identified
55 func (op *Operation) OutputListSize(output string) (int, error) {
56 cname := C.CString(output)
63 // Output returns the i-th output of op.
64 func (op *Operation) Output(i int) Output {
65 return Output{op, i}
68 // Output represents one of the outputs of an operation in the graph. Has
    [all...]
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
Output.java 23 * <p>An {@code Output<T>} is a symbolic handle to a {@code Tensor<T>}. The value of the tensor is
29 public final class Output<T> implements Operand<T> {
31 /** Handle to the idx-th output of the Operation {@code op}. */
32 public Output(Operation op, int idx) {
37 /** Returns the Operation that will produce the tensor referred to by this Output. */
47 /** Returns the (possibly partially known) shape of the tensor referred to by this Output. */
52 /** Returns the DataType of the tensor referred to by this Output. */
58 public Output<T> asOutput() {
72 if (o instanceof Output<?>) {
73 Output<?> that = (Output<?>) o
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/
CompilationDatabase.h 46 std::vector<std::string> CommandLine, Twine Output)
50 Output(Output.str()){}
61 /// The output file associated with the command.
62 std::string Output;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Tooling/
CompilationDatabase.h 46 std::vector<std::string> CommandLine, Twine Output)
50 Output(Output.str()){}
61 /// The output file associated with the command.
62 std::string Output;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Tooling/
CompilationDatabase.h 46 std::vector<std::string> CommandLine, Twine Output)
50 Output(Output.str()){}
61 /// The output file associated with the command.
62 std::string Output;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Tooling/
CompilationDatabase.h 46 std::vector<std::string> CommandLine, Twine Output)
50 Output(Output.str()){}
61 /// The output file associated with the command.
62 std::string Output;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Tooling/
CompilationDatabase.h 46 std::vector<std::string> CommandLine, Twine Output)
50 Output(Output.str()){}
61 /// The output file associated with the command.
62 std::string Output;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Tooling/
CompilationDatabase.h 46 std::vector<std::string> CommandLine, Twine Output)
50 Output(Output.str()){}
61 /// The output file associated with the command.
62 std::string Output;

Completed in 1038 milliseconds

1 2 3 4 5 6 7 8 91011>>