Searched defs:Input (Results 1 - 25 of 55) sorted by relevance

123

/external/llvm/unittests/Support/
H A DMD5Test.cpp22 /// \brief Tests an arbitrary set of bytes passed as \p Input.
23 void TestMD5Sum(ArrayRef<uint8_t> Input, StringRef Final) { argument
25 Hash.update(Input);
33 void TestMD5Sum(StringRef Input, StringRef Final) { argument
35 Hash.update(Input);
H A DCompressionTest.cpp26 void TestZlibCompression(StringRef Input, zlib::CompressionLevel Level) { argument
29 EXPECT_EQ(zlib::StatusOK, zlib::compress(Input, Compressed, Level));
32 zlib::uncompress(Compressed, Uncompressed, Input.size()));
33 EXPECT_EQ(Input, Uncompressed);
34 if (Input.size() > 0) {
37 zlib::uncompress(Compressed, Uncompressed, Input.size() - 1));
H A DYAMLParserTest.cpp33 static void ExpectParseError(StringRef Message, StringRef Input) { argument
35 yaml::Stream Stream(Input, SM);
37 EXPECT_FALSE(Stream.validate()) << Message << ": " << Input; local
38 EXPECT_TRUE(Stream.failed()) << Message << ": " << Input; local
42 static void ExpectParseSuccess(StringRef Message, StringRef Input) { argument
44 yaml::Stream Stream(Input, SM);
45 EXPECT_TRUE(Stream.validate()) << Message << ": " << Input; local
H A DCommandLineTest.cpp159 void testCommandLineTokenizer(ParserFunction *parse, const char *Input, argument
163 parse(Input, Saver, Actual, /*MarkEOLs=*/false);
173 const char *Input = "foo\\ bar \"foo bar\" \'foo bar\' 'foo\\\\bar' " local
178 testCommandLineTokenizer(cl::TokenizeGNUCommandLine, Input, Output,
183 const char *Input = "a\\b c\\\\d e\\\\\"f g\" h\\\"i j\\\\\\\"k \"lmn\" o pqr " local
187 testCommandLineTokenizer(cl::TokenizeWindowsCommandLine, Input, Output,
203 StackOption<std::string> Input(cl::Positional);
209 EXPECT_EQ(0, Input.getNumOccurrences());
/external/clang/tools/clang-fuzzer/
H A DClangFuzzer.cpp37 std::unique_ptr<llvm::MemoryBuffer> Input = local
39 Invocation->getPreprocessorOpts().addRemappedFile("test.cc", Input.release());
/external/clang/unittests/Rewrite/
H A DRewriteBufferTest.cpp30 StringRef Input = "hello world"; local
34 Buf.Initialize(Input);
36 size_t Pos = Input.find(RemoveStr);
40 Pos = Input.find(TagStr);
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DInput.java42 public interface Input { interface
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_utf.cpp17 void CFX_UTF8Decoder::Input(FX_BYTE byte) function in class:CFX_UTF8Decoder
48 void CFX_UTF8Encoder::Input(FX_WCHAR unicode) function in class:CFX_UTF8Encoder
87 encoder.Input(*pwsStr ++);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognitionException.cs203 public IIntStream Input { property in class:Antlr.Runtime.RecognitionException
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognitionException.cs232 public IIntStream Input property in class:Antlr.Runtime.RecognitionException
/external/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h44 void Initialize(StringRef Input) { argument
45 Initialize(Input.begin(), Input.end());
/external/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp184 unsigned Input = phi->getOperand(1).getReg(); local
192 if (Input != Output) {
194 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
195 MRI.replaceRegWith(Output, Input);
/external/clang/lib/Driver/
H A DAction.cpp47 : Action(InputClass, _Type), Input(_Input) {
52 BindArchAction::BindArchAction(std::unique_ptr<Action> Input, argument
54 : Action(BindArchClass, std::move(Input)), ArchName(_ArchName) {}
58 JobAction::JobAction(ActionClass Kind, std::unique_ptr<Action> Input, argument
60 : Action(Kind, std::move(Input), Type) {}
68 PreprocessJobAction::PreprocessJobAction(std::unique_ptr<Action> Input, argument
70 : JobAction(PreprocessJobClass, std::move(Input), OutputType) {}
74 PrecompileJobAction::PrecompileJobAction(std::unique_ptr<Action> Input, argument
76 : JobAction(PrecompileJobClass, std::move(Input), OutputType) {}
80 AnalyzeJobAction::AnalyzeJobAction(std::unique_ptr<Action> Input, argument
86 MigrateJobAction(std::unique_ptr<Action> Input, types::ID OutputType) argument
92 CompileJobAction(std::unique_ptr<Action> Input, types::ID OutputType) argument
98 BackendJobAction(std::unique_ptr<Action> Input, types::ID OutputType) argument
104 AssembleJobAction(std::unique_ptr<Action> Input, types::ID OutputType) argument
128 VerifyJobAction(ActionClass Kind, std::unique_ptr<Action> Input, types::ID Type) argument
144 VerifyDebugInfoJobAction( std::unique_ptr<Action> Input, types::ID Type) argument
150 VerifyPCHJobAction(std::unique_ptr<Action> Input, types::ID Type) argument
[all...]
/external/clang/tools/clang-format/
H A DClangFormat.cpp117 static bool parseLineRange(StringRef Input, unsigned &FromLine, argument
119 std::pair<StringRef, StringRef> LineRange = Input.split(':');
/external/deqp/modules/gles31/functional/
H A Des31fFboTestUtil.hpp71 struct Input struct in class:deqp::gles31::Functional::FboTestUtil::Texture2DShader
78 std::vector<Input> m_inputs;
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp193 static void reportError(StringRef Input, std::error_code EC) { argument
194 if (Input == "-")
195 Input = "<stdin>";
197 errs() << Input << ": " << EC.message() << "\n";
202 static void reportError(StringRef Input, StringRef Message) { argument
203 if (Input == "-")
204 Input = "<stdin>";
206 errs() << Input << ": " << Message << "\n";
/external/v8/src/
H A Dliveedit.h193 class Input { class in class:v8::internal::Comparator
200 virtual ~Input() {}
215 static void CalculateDifference(Input* input,
/external/llvm/lib/Support/
H A DYAMLTraits.cpp43 // Input
46 Input::Input(StringRef InputContent, function in class:Input
58 Input::~Input() {
61 std::error_code Input::error() { return EC; }
64 void Input::HNode::anchor() {}
65 void Input::EmptyHNode::anchor() {}
66 void Input::ScalarHNode::anchor() {}
67 void Input
[all...]
/external/clang/lib/Frontend/
H A DFrontendAction.cpp172 const FrontendInputFile &Input) {
174 assert(!Input.isEmpty() && "Unexpected empty filename!");
175 setCurrentInput(Input);
178 StringRef InputFile = Input.getFile();
185 if (Input.getKind() == IK_AST) {
210 setCurrentInput(Input, std::move(AST));
240 if (Input.getKind() == IK_LLVM_IR) {
171 BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input) argument
/external/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp34 : Input(CommandLine), Position(Input.begin()-1) {}
106 return Position != Input.end();
109 const StringRef Input; member in class:clang::tooling::__anon1434::CommandLineArgumentParser
/external/clang/unittests/Tooling/
H A DRefactoringTest.cpp388 std::vector<Replacement> Input; local
389 Input.push_back(Replacement("fileA", 50, 0, " foo "));
390 Input.push_back(Replacement("fileA", 10, 3, " bar "));
391 Input.push_back(Replacement("fileA", 10, 2, " bar ")); // Length differs
392 Input.push_back(Replacement("fileA", 9, 3, " bar ")); // Offset differs
393 Input.push_back(Replacement("fileA", 50, 0, " foo ")); // Duplicate
394 Input.push_back(Replacement("fileA", 51, 3, " bar "));
395 Input.push_back(Replacement("fileB", 51, 3, " bar ")); // Filename differs!
396 Input.push_back(Replacement("fileB", 60, 1, " bar "));
397 Input
420 std::vector<Replacement> Input; local
438 std::vector<Replacement> Input; local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fFboTestUtil.hpp101 struct Input struct in class:deqp::gles3::Functional::FboTestUtil::Texture2DShader
108 std::vector<Input> m_inputs;
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_light.c65 GLvector4f Input; member in struct:light_stage_data
341 _math_trans_4f( store->Input.data,
352 _mesa_vector4f_clean_elem(&store->Input, VB->Count, 2);
358 _mesa_vector4f_clean_elem(&store->Input, VB->Count, 1);
361 input = &store->Input;
433 _mesa_vector4f_alloc( &store->Input, 0, size, 32 );
455 _mesa_vector4f_free( &store->Input );
/external/clang/include/clang/Driver/
H A DAction.h76 Action(ActionClass _Kind, std::unique_ptr<Action> Input, types::ID _Type) argument
77 : Kind(_Kind), Type(_Type), Inputs(1, Input.release()), OwnsInputs(true) {
79 Action(ActionClass _Kind, std::unique_ptr<Action> Input) argument
80 : Kind(_Kind), Type(Input->getType()), Inputs(1, Input.release()),
108 const llvm::opt::Arg &Input; member in class:clang::driver::InputAction
113 const llvm::opt::Arg &getInputArg() const { return Input; }
127 BindArchAction(std::unique_ptr<Action> Input, const char *_ArchName);
139 JobAction(ActionClass Kind, std::unique_ptr<Action> Input, types::ID Type);
152 PreprocessJobAction(std::unique_ptr<Action> Input, type
[all...]
/external/clang/lib/ARCMigrate/
H A DARCMT.cpp234 const FrontendInputFile &Input,
252 CInvok->getFrontendOpts().Inputs.push_back(Input);
334 const FrontendInputFile &Input,
346 if (arcmt::checkForManualIssues(CInvokForCheck, Input, DiagClient,
352 CInvok.getFrontendOpts().Inputs.push_back(Input);
380 const FrontendInputFile &Input,
382 return applyTransforms(origCI, Input, DiagClient,
387 const FrontendInputFile &Input,
393 return applyTransforms(origCI, Input, DiagClient,
233 checkForManualIssues(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient, bool emitPremigrationARCErrors, StringRef plistOut) argument
333 applyTransforms(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient, StringRef outputDir, bool emitPremigrationARCErrors, StringRef plistOut) argument
379 applyTransformations(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient) argument
386 migrateWithTemporaryFiles(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient, StringRef outputDir, bool emitPremigrationARCErrors, StringRef plistOut) argument

Completed in 1032 milliseconds

123