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

1 2 3 4 5 6 7 8

  /frameworks/compile/mclinker/lib/MC/
Input.cpp 1 //===- Input.cpp ----------------------------------------------------------===//
9 #include "mcld/MC/Input.h"
17 // mcld::Input
19 Input::Input(llvm::StringRef pName)
31 Input::Input(llvm::StringRef pName, const AttributeProxy& pProxy)
43 Input::Input(llvm::StringRef pName,
58 Input::Input(llvm::StringRef pName
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Input.cpp 15 #include "Input.h"
24 Input::Input() : mCount(0), mString(0)
28 Input::~Input()
32 Input::Input(size_t count, const char *const string[], const int length[])
43 const char *Input::skipChar()
60 size_t Input::read(char *buf, size_t maxSize, int *lineNo)
114 // It will be processed on the next call on input, which skips i
    [all...]
Input.h 25 // Holds and reads input for Lexer.
26 class Input
29 Input();
30 ~Input();
31 Input(size_t count, const char *const string[], const int length[]);
53 // Input.
  /external/pdfium/core/fxcrt/
cfx_utf8decoder.cpp 18 void CFX_UTF8Decoder::Input(uint8_t byte) {
  /frameworks/av/media/img_utils/include/img_utils/
Input.h 30 class ANDROID_API Input {
32 virtual ~Input();
35 * Open this Input.
52 * Skips bytes in the input.
60 * Close the Input. It is not valid to call open on a previously closed Input.
  /external/clang/tools/clang-fuzzer/
ClangFuzzer.cpp 12 /// input. This function is then linked into the Fuzzer library.
37 std::unique_ptr<llvm::MemoryBuffer> Input =
39 Invocation->getPreprocessorOpts().addRemappedFile("./test.cc", Input.release());
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
console.c 33 Input (
38 // Input a string at the current cursor location, for StrLen
57 // Input a string at the current cursor location, for StrLen
73 DEBUG((D_ERROR, "Input: error return from ReadKey %x\n", Status));
  /external/clang/unittests/Rewrite/
RewriteBufferTest.cpp 30 StringRef Input = "hello world";
34 Buf.Initialize(Input);
36 size_t Pos = Input.find(RemoveStr);
40 Pos = Input.find(TagStr);
  /external/pdfium/core/fxcodec/codec/
ccodec_bmpmodule.cpp 79 void CCodec_BmpModule::Input(Context* pContext,
ccodec_gifmodule.cpp 85 void CCodec_GifModule::Input(Context* pContext,
  /external/tensorflow/tensorflow/core/graph/
node_builder.cc 48 NodeBuilder& NodeBuilder::Input(Node* src_node, int src_index) {
52 def_builder_.Input(src_node->name(), src_index, dt);
57 NodeBuilder& NodeBuilder::Input(NodeOut src) {
62 def_builder_.Input(src.name, src.index, src.dt);
67 NodeBuilder& NodeBuilder::Input(gtl::ArraySlice<NodeOut> src_list) {
78 def_builder_.Input(gtl::ArraySlice<NodeDefBuilder::NodeOut>(srcs));
  /external/tensorflow/tensorflow/go/
operation.go 69 // DataType (and eventually a Shape). May be passed as an input argument to a
126 // Input is the interface for specifying inputs to an operation being added to
134 // See OpSpec.Input for more information.
135 type Input interface {
140 // OutputList represents a list of Outputs that can be provided as input to
  /frameworks/av/media/img_utils/src/
Input.cpp 17 #include <img_utils/Input.h>
22 Input::~Input() {}
24 status_t Input::open() { return OK; }
26 status_t Input::close() { return OK; }
28 ssize_t Input::skip(size_t count) {
  /frameworks/compile/mclinker/include/mcld/Script/
StrToken.h 26 enum Kind { Unknown, String, Input, Wildcard };
  /external/tensorflow/tensorflow/core/util/
equal_graph_def_test.cc 31 REGISTER_OP("Input").Output("o: float");
33 REGISTER_OP("Combine").Input("a: float").Input("b: float").Output("o: float");
35 Node* Input(const GraphDefBuilder::Options& opts) {
36 return ops::SourceOp("Input", opts);
79 Input(e_.opts().WithName("A"));
80 Input(a_.opts().WithName("A"));
85 Input(e_.opts().WithName("A"));
86 Input(a_.opts().WithName("B"));
88 EXPECT_EQ("Did not find expected node 'A = Input[]()'", diff_)
    [all...]
  /external/tensorflow/tensorflow/python/layers/
network.py 43 It is generally recommend to use the functional layer API via `Input`,
49 batch_size: Optional input batch size (integer or None).
50 dtype: Datatype of the input.
51 input_tensor: Optional tensor to use as layer input
109 # Create an input node to add to self.outbound_node
121 @tf_export('layers.Input')
122 def Input( # pylint: disable=invalid-name
129 """`Input()` is used to instantiate an input tensor for use with a `Network`.
131 For instance, if a, b and c are tensors created via `Input`,
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognitionException.cs 65 * problem occurred and/or what was the expected input. While the parser
66 * knows its state (such as current input symbol and line info) that
69 * perhaps print an entire line of input not just a single token, for example.
76 /** <summary>What input stream did the error occur in?</summary> */
127 public RecognitionException(IIntStream input)
128 : this("A recognition error occurred.", input, null) {
135 public RecognitionException(string message, IIntStream input)
136 : this(message, input, null) {
143 public RecognitionException(string message, IIntStream input, Exception innerException)
145 this._input = input;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognitionException.cs 66 * problem occurred and/or what was the expected input. While the parser
67 * knows its state (such as current input symbol and line info) that
70 * perhaps print an entire line of input not just a single token, for example.
78 /** <summary>What input stream did the error occur in?</summary> */
130 public RecognitionException( IIntStream input )
131 : this("A recognition error occurred.", input, null)
140 public RecognitionException(string message, IIntStream input)
141 : this(message, input, null)
150 public RecognitionException(string message, IIntStream input, Exception innerException)
153 this._input = input;
    [all...]
  /external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
multishot_func.pass.cpp 21 struct Input {R a, b;};
24 Input* I;
38 R operator()(Input I) {
  /external/llvm/lib/CodeGen/
UnreachableBlockElim.cpp 198 unsigned Input = phi->getOperand(1).getReg();
204 if (Input != Output) {
206 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
207 MRI.replaceRegWith(Output, Input);
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 50 cl::desc("<input object files>"),
284 static void reportError(StringRef Input, std::error_code EC) {
285 if (Input == "-")
286 Input = "<stdin>";
288 reportError(Twine(Input) + ": " + EC.message());
291 static void reportError(StringRef Input, StringRef Message) {
292 if (Input == "-")
293 Input = "<stdin>";
295 reportError(Twine(Input) + ": " + Message);
298 static void reportError(StringRef Input, Error Err)
    [all...]
  /external/llvm/unittests/Support/
YAMLParserTest.cpp 30 // Checks that the given input gives a parse error. Makes sure that an error
32 static void ExpectParseError(StringRef Message, StringRef Input) {
34 yaml::Stream Stream(Input, SM);
36 EXPECT_FALSE(Stream.validate()) << Message << ": " << Input;
37 EXPECT_TRUE(Stream.failed()) << Message << ": " << Input;
40 // Checks that the given input can be parsed without error.
41 static void ExpectParseSuccess(StringRef Message, StringRef Input) {
43 yaml::Stream Stream(Input, SM);
44 EXPECT_TRUE(Stream.validate()) << Message << ": " << Input;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
UnreachableBlockElim.cpp 191 unsigned Input = phi->getOperand(1).getReg();
199 if (Input != Output) {
201 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
202 MRI.replaceRegWith(Output, Input);
  /external/tensorflow/tensorflow/core/framework/
node_def_builder.cc 71 errors_.push_back(strings::StrCat("More Input() calls than the ",
79 NodeDefBuilder& NodeDefBuilder::Input(FakeInputFunctor fake_input) {
87 NodeDefBuilder& NodeDefBuilder::Input(StringPiece src_node, int src_index,
94 NodeDefBuilder& NodeDefBuilder::Input(const NodeOut& src) {
95 Input(src.node, src.index, src.data_type);
100 NodeDefBuilder& NodeDefBuilder::Input(gtl::ArraySlice<NodeOut> src_list) {
158 errors_.push_back(strings::StrCat("List provided to input '",
166 errors_.push_back("Empty input node name");
169 strings::StrCat("Non-control input starting with ^: ", src_node));
180 errors_.push_back(strings::StrCat("Input '", input_arg->name(), "' passed "
    [all...]
  /external/tensorflow/tensorflow/core/util/ctc/
ctc_decoder.h 38 typedef Eigen::Map<const Eigen::MatrixXf> Input;
50 // Dimensionality of the input/output is expected to be:
52 // - input[t].rows(b) - t = 0 to timesteps; b = 0 t batch_size_
56 const std::vector<Input>& input,
77 const std::vector<CTCDecoder::Input>& input,
97 auto row = input[t].row(b);

Completed in 313 milliseconds

1 2 3 4 5 6 7 8