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

1 2 3 4

  /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...]
  /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/pdfium/core/src/fxcrt/
fx_basic_utf.cpp 16 void CFX_UTF8Decoder::Input(uint8_t byte) {
46 void CFX_UTF8Encoder::Input(FX_WCHAR unicode) {
83 encoder.Input(*pwsStr++);
  /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);
  /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/llvm/unittests/Support/
YAMLParserTest.cpp 31 // Checks that the given input gives a parse error. Makes sure that an error
33 static void ExpectParseError(StringRef Message, StringRef Input) {
35 yaml::Stream Stream(Input, SM);
37 EXPECT_FALSE(Stream.validate()) << Message << ": " << Input;
38 EXPECT_TRUE(Stream.failed()) << Message << ": " << Input;
41 // Checks that the given input can be parsed without error.
42 static void ExpectParseSuccess(StringRef Message, StringRef Input) {
44 yaml::Stream Stream(Input, SM);
45 EXPECT_TRUE(Stream.validate()) << Message << ": " << Input;
CommandLineTest.cpp 154 void testCommandLineTokenizer(ParserFunction *parse, const char *Input,
159 parse(Input, Saver, Actual, /*MarkEOLs=*/false);
168 const char *Input = "foo\\ bar \"foo bar\" \'foo bar\' 'foo\\\\bar' "
173 testCommandLineTokenizer(cl::TokenizeGNUCommandLine, Input, Output,
178 const char *Input = "a\\b c\\\\d e\\\\\"f g\" h\\\"i j\\\\\\\"k \"lmn\" o pqr "
182 testCommandLineTokenizer(cl::TokenizeWindowsCommandLine, Input, Output,
198 StackOption<std::string> Input(cl::Positional);
204 EXPECT_EQ(0, Input.getNumOccurrences());
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_bmp.cpp 122 void CCodec_BmpModule::Input(void* pContext,
fx_codec_gif.cpp 184 void CCodec_GifModule::Input(void* pContext,
fx_codec_png.cpp 242 FX_BOOL CCodec_PngModule::Input(void* pContext,
  /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/llvm/lib/CodeGen/
UnreachableBlockElim.cpp 184 unsigned Input = phi->getOperand(1).getReg();
192 if (Input != Output) {
194 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
195 MRI.replaceRegWith(Output, Input);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 24 * Container class for CAT GET INPUT, GET IN KEY commands parameters.
27 public class Input implements Parcelable {
41 Input() {
56 private Input(Parcel in) {
92 public static final Parcelable.Creator<Input> CREATOR = new Parcelable.Creator<Input>() {
94 public Input createFromParcel(Parcel in) {
95 return new Input(in);
99 public Input[] newArray(int size) {
100 return new Input[size]
    [all...]
  /external/deqp/modules/gles31/functional/
es31fFboTestUtil.hpp 71 struct Input
78 std::vector<Input> m_inputs;
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 38 // SectionMap::Input
40 SectionMap::Input::Input(const std::string& pName,
59 SectionMap::Input::Input(const InputSectDesc& pInputDesc)
183 return std::make_pair((const Output*)NULL, (const Input*)NULL);
197 reinterpret_cast<Input*>(NULL));
238 Input* input = new Input(pInputSection, pPolicy) local
246 Input* input = new Input(pInputSection, pPolicy); local
274 Input* input = new Input(pInputDesc); local
282 Input* input = new Input(pInputDesc); local
    [all...]
  /external/v8/src/debug/
liveedit.h 191 class Input {
198 virtual ~Input() {}
213 static void CalculateDifference(Input* input,
  /external/llvm/lib/Support/
YAMLTraits.cpp 44 // Input
47 Input::Input(StringRef InputContent,
59 Input::~Input() {
62 std::error_code Input::error() { return EC; }
65 void Input::HNode::anchor() {}
66 void Input::EmptyHNode::anchor() {}
67 void Input::ScalarHNode::anchor() {}
68 void Input::MapHNode::anchor() {
735 StringRef ScalarTraits<bool>::input(StringRef Scalar, void *, bool &Val) { function in class:ScalarTraits
751 StringRef ScalarTraits<StringRef>::input(StringRef Scalar, void *, function in class:ScalarTraits
762 StringRef ScalarTraits<std::string>::input(StringRef Scalar, void *, function in class:ScalarTraits
775 StringRef ScalarTraits<uint8_t>::input(StringRef Scalar, void *, uint8_t &Val) { function in class:ScalarTraits
790 StringRef ScalarTraits<uint16_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
806 StringRef ScalarTraits<uint32_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
822 StringRef ScalarTraits<uint64_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
837 StringRef ScalarTraits<int8_t>::input(StringRef Scalar, void *, int8_t &Val) { function in class:ScalarTraits
852 StringRef ScalarTraits<int16_t>::input(StringRef Scalar, void *, int16_t &Val) { function in class:ScalarTraits
867 StringRef ScalarTraits<int32_t>::input(StringRef Scalar, void *, int32_t &Val) { function in class:ScalarTraits
882 StringRef ScalarTraits<int64_t>::input(StringRef Scalar, void *, int64_t &Val) { function in class:ScalarTraits
894 StringRef ScalarTraits<double>::input(StringRef Scalar, void *, double &Val) { function in class:ScalarTraits
907 StringRef ScalarTraits<float>::input(StringRef Scalar, void *, float &Val) { function in class:ScalarTraits
921 StringRef ScalarTraits<Hex8>::input(StringRef Scalar, void *, Hex8 &Val) { function in class:ScalarTraits
936 StringRef ScalarTraits<Hex16>::input(StringRef Scalar, void *, Hex16 &Val) { function in class:ScalarTraits
951 StringRef ScalarTraits<Hex32>::input(StringRef Scalar, void *, Hex32 &Val) { function in class:ScalarTraits
966 StringRef ScalarTraits<Hex64>::input(StringRef Scalar, void *, Hex64 &Val) { function in class:ScalarTraits
    [all...]
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 34 : Input(CommandLine), Position(Input.begin()-1) {}
47 // All private methods return true if there is more input available.
106 return Position != Input.end();
109 const StringRef Input;
Tooling.cpp 243 // Since the input might only be virtual, don't check whether it exists.
257 std::unique_ptr<llvm::MemoryBuffer> Input =
260 Input.release());
  /external/clang/unittests/Tooling/
RefactoringTest.cpp 45 FileID ID = Context.createInMemoryFile("input.cpp", "text");
53 FileID ID = Context.createInMemoryFile("input.cpp", "line1\nline2\nline3");
61 FileID ID = Context.createInMemoryFile("input.cpp", "");
69 FileID ID = Context.createInMemoryFile("input.cpp",
78 FileID ID = Context.createInMemoryFile("input.cpp",
112 FileID ID = Context.createInMemoryFile("input.cpp",
127 FileID ID = Context.createInMemoryFile("input.cpp",
139 FileID ID = Context.createInMemoryFile("input.cpp",
273 FileID ID = createFile("input.cpp", "line1\nline2\nline3\nline4");
280 getFileContentFromDisk("input.cpp"))
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboTestUtil.hpp 101 struct Input
108 std::vector<Input> m_inputs;
  /external/mesa3d/src/mesa/tnl/
t_vb_light.c 48 GLvector4f *input );
65 GLvector4f Input;
331 GLvector4f *input = ctx->_NeedEyeCoords ? VB->EyePtr : VB->AttribPtr[_TNL_ATTRIB_POS]; local
339 if (input->size <= 2 && input == VB->AttribPtr[_TNL_ATTRIB_POS]) {
341 _math_trans_4f( store->Input.data,
349 if (input->size <= 2) {
352 _mesa_vector4f_clean_elem(&store->Input, VB->Count, 2);
355 if (input->size <= 1) {
358 _mesa_vector4f_clean_elem(&store->Input, VB->Count, 1)
    [all...]

Completed in 855 milliseconds

1 2 3 4