Home
last modified time | relevance | path

Searched defs:Input (Results 1 – 25 of 226) sorted by relevance

12345678910

/llvm-project/clang/unittests/ASTMatchers/
H A DGtestMatchersTest.cpp198 static std::string wrapGtest(llvm::StringRef Input) { in wrapGtest()
203 std::string Input = R"cc( in TEST() local
212 std::string Input = R"cc( in TEST() local
220 std::string Input = R"cc( in TEST() local
229 std::string Input = R"cc( in TEST() local
238 std::string Input = R"cc( in TEST() local
246 std::string Input = R"cc( in TEST() local
254 std::string Input = R"cc( in TEST() local
262 std::string Input = R"cc( in TEST() local
270 std::string Input = R"cc( in TEST() local
[all …]
/llvm-project/llvm/lib/Support/
H A DCompression.cpp46 void compression::compress(Params P, ArrayRef<uint8_t> Input, in compress() argument
58 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() argument
69 Error compression::decompress(compression::Format F, ArrayRef<uint8_t> Input, in decompress() argument
81 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() argument
107 compress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & CompressedBuffer,int Level) compress() argument
123 decompress(ArrayRef<uint8_t> Input,uint8_t * Output,size_t & UncompressedSize) decompress() argument
135 decompress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & Output,size_t UncompressedSize) decompress() argument
147 compress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & CompressedBuffer,int Level) compress() argument
151 decompress(ArrayRef<uint8_t> Input,uint8_t * UncompressedBuffer,size_t & UncompressedSize) decompress() argument
155 decompress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & UncompressedBuffer,size_t UncompressedSize) decompress() argument
168 compress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & CompressedBuffer,int Level,bool EnableLdm) compress() argument
204 decompress(ArrayRef<uint8_t> Input,uint8_t * Output,size_t & UncompressedSize) decompress() argument
217 decompress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & Output,size_t UncompressedSize) decompress() argument
229 compress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & CompressedBuffer,int Level,bool EnableLdm) compress() argument
234 decompress(ArrayRef<uint8_t> Input,uint8_t * Output,size_t & UncompressedSize) decompress() argument
238 decompress(ArrayRef<uint8_t> Input,SmallVectorImpl<uint8_t> & Output,size_t UncompressedSize) decompress() argument
[all...]
/llvm-project/clang-tools-extra/include-cleaner/include/clang-include-cleaner/
H A DIncludeSpeller.h27 struct Input { struct
34 /// Takes in an `Input` struct with necessary infos about a header and argument
/llvm-project/clang/unittests/Tooling/
H A DTransformerTest.cpp106 std::optional<std::string> rewrite(StringRef Input) { in rewrite()
160 void testRule(RewriteRule Rule, StringRef Input, StringRef Expected) { in testRule()
167 void testRule(RewriteRuleWith<std::string> Rule, StringRef Input, in testRule()
175 void testRuleFailure(RewriteRule Rule, StringRef Input) { in testRuleFailure()
182 void testRuleFailure(RewriteRuleWith<std::string> Rule, StringRef Input) { in testRuleFailure()
221 std::string Input = "int f(string s) { return strlen(s.c_str()); }"; in TEST_F() local
228 std::string Input = "int f(string s) { return s.size(); }"; in TEST_F() local
242 std::string Input = R"cc( in TEST_F() local
261 std::string Input = R"cc( in TEST_F() local
280 std::string Input = R"cc( in TEST_F() local
[all …]
/llvm-project/clang/unittests/InstallAPI/
H A DFileListTest.cpp21 static inline void testValidFileList(std::string Input, HeaderSeq &Expected) { in testValidFileList()
32 static const char Input[] = R"({ in TEST() local
63 static const char Input[] = R"({ in TEST() local
86 static const auto Input = R"({ in TEST() local
108 static const char Input[] = R"({ in TEST() local
130 static const char Input[] = R"({ in TEST() local
/llvm-project/clang-tools-extra/unittests/clang-tidy/
H A DTransformerClangTidyCheckTest.cpp58 const std::string Input = R"cc( in TEST() local
84 std::string Input = "int h() { return 5; }"; in TEST() local
111 std::string Input = "int h() { return 5; }"; in TEST() local
132 std::string Input = "int h() { return 5; }"; in TEST() local
152 std::string Input = "int somecode() { return 0; }"; TEST() local
175 const std::string Input = R"cc( TEST() local
201 const std::string Input = R"cc( TEST() local
231 const std::string Input = "void log() {}"; TEST() local
257 const std::string Input = "void log(int);"; TEST() local
288 std::string Input = R"cc( TEST() local
304 std::string Input = R"cc( TEST() local
334 std::string Input = R"cc(#include "input.h" TEST() local
366 std::string Input = R"cc(#include "input.h" TEST() local
[all...]
/llvm-project/llvm/unittests/Support/
H A DBase64Test.cpp23 void TestBase64(StringRef Input, StringRef Final) { in TestBase64()
28 void TestBase64Decode(StringRef Input, StringRef Expected, in TestBase64Decode()
87 auto Input = encodeBase64(Output); in TEST() local
91 llvm::StringRef Input; in TEST() member
H A DMD5Test.cpp22 void TestMD5Sum(ArrayRef<uint8_t> Input, StringRef Final) { in TestMD5Sum()
32 void TestMD5Sum(StringRef Input, StringRef Final) { in TestMD5Sum()
61 ArrayRef<uint8_t> Input((const uint8_t *)"abcdefghijklmnopqrstuvwxyz", 26); in TEST() local
H A Draw_sha1_ostream_test.cpp17 static std::string toHex(ArrayRef<uint8_t> Input) { in toHex()
40 ArrayRef<uint8_t> Input((const uint8_t *)"Hello World!", 12); in TEST() local
48 std::string Input = "123456789012345678901234567890"; in TEST() local
H A DSHA256.cpp22 static std::string toHex(ArrayRef<uint8_t> Input) { in toHex()
37 void TestSHA256Sum(ArrayRef<uint8_t> Input, StringRef Final) { in TestSHA256Sum()
H A DCompressionTest.cpp26 static void testZlibCompression(StringRef Input, int Level) { in testZlibCompression()
71 static void testZstdCompression(StringRef Input, int Level) { in testZstdCompression()
/llvm-project/clang/lib/Driver/
H A DAction.cpp181 BindArchAction(Action * Input,StringRef ArchName) BindArchAction() argument
338 JobAction(ActionClass Kind,Action * Input,types::ID Type) JobAction() argument
346 PreprocessJobAction(Action * Input,types::ID OutputType) PreprocessJobAction() argument
351 PrecompileJobAction(Action * Input,types::ID OutputType) PrecompileJobAction() argument
354 PrecompileJobAction(ActionClass Kind,Action * Input,types::ID OutputType) PrecompileJobAction() argument
367 AnalyzeJobAction(Action * Input,types::ID OutputType) AnalyzeJobAction() argument
372 MigrateJobAction(Action * Input,types::ID OutputType) MigrateJobAction() argument
377 CompileJobAction(Action * Input,types::ID OutputType) CompileJobAction() argument
382 BackendJobAction(Action * Input,types::ID OutputType) BackendJobAction() argument
387 AssembleJobAction(Action * Input,types::ID OutputType) AssembleJobAction() argument
412 VerifyJobAction(ActionClass Kind,Action * Input,types::ID Type) VerifyJobAction() argument
421 VerifyDebugInfoJobAction(Action * Input,types::ID Type) VerifyDebugInfoJobAction() argument
427 VerifyPCHJobAction(Action * Input,types::ID Type) VerifyPCHJobAction() argument
437 OffloadUnbundlingJobAction(Action * Input) OffloadUnbundlingJobAction() argument
459 BinaryAnalyzeJobAction(Action * Input,types::ID Type) BinaryAnalyzeJobAction() argument
[all...]
H A DOffloadBundler.cpp214 listBundleIDs(MemoryBuffer & Input) listBundleIDs() argument
227 getBundleIDs(MemoryBuffer & Input,std::set<StringRef> & BundleIds) getBundleIDs() argument
241 forEachBundle(MemoryBuffer & Input,std::function<Error (const BundleInfo &)> Func) forEachBundle() argument
264 listBundleIDsCallback(MemoryBuffer & Input,const BundleInfo & Info) listBundleIDsCallback() argument
335 ReadHeader(MemoryBuffer & Input) ReadHeader() argument
402 ReadBundleStart(MemoryBuffer & Input) ReadBundleStart() argument
409 ReadBundleEnd(MemoryBuffer & Input) ReadBundleEnd() argument
414 ReadBundle(raw_ostream & OS,MemoryBuffer & Input) ReadBundle() argument
468 WriteBundle(raw_ostream & OS,MemoryBuffer & Input) WriteBundle() argument
566 ReadHeader(MemoryBuffer & Input) ReadHeader() argument
569 ReadBundleStart(MemoryBuffer & Input) ReadBundleStart() argument
586 ReadBundleEnd(MemoryBuffer & Input) ReadBundleEnd() argument
588 ReadBundle(raw_ostream & OS,MemoryBuffer & Input) ReadBundle() argument
687 WriteBundle(raw_ostream & OS,MemoryBuffer & Input) WriteBundle() argument
708 getHostBundle(StringRef Input) getHostBundle() argument
778 ReadHeader(MemoryBuffer & Input) ReadHeader() argument
781 ReadBundleStart(MemoryBuffer & Input) ReadBundleStart() argument
803 ReadBundleEnd(MemoryBuffer & Input) ReadBundleEnd() argument
817 ReadBundle(raw_ostream & OS,MemoryBuffer & Input) ReadBundle() argument
845 WriteBundle(raw_ostream & OS,MemoryBuffer & Input) WriteBundle() argument
858 listBundleIDsCallback(MemoryBuffer & Input,const BundleInfo & Info) listBundleIDsCallback() argument
983 compress(llvm::compression::Params P,const llvm::MemoryBuffer & Input,bool Verbose) compress() argument
1069 decompress(const llvm::MemoryBuffer & Input,bool Verbose) decompress() argument
1352 auto Input = InputBuffers.begin(); BundleFiles() local
1408 MemoryBuffer &Input = **DecompressedBufferOrErr; UnbundleFiles() local
[all...]
/llvm-project/clang-tools-extra/clangd/unittests/
H A DTestWorkspace.cpp21 for (const auto &Input : Inputs) { in index() local
50 const SourceFile &Input) { in addInput() argument
/llvm-project/bolt/lib/Core/
H A DAddressMap.cpp85 const uint64_t Input = DE.getAddress(Cursor); in parse() local
97 parseSection(*AddressMapSection, [&](uint64_t Input, uint64_t Output) { in parse()
105 parseSection(*LabelMapSection, [&](uint64_t Input, uint64_t Output) { in parse()
/llvm-project/llvm/tools/llvm-rc/
H A DResourceScriptCppFilter.cpp24 explicit Filter(StringRef Input) : Data(Input), DataLength(Input.size()) {} in Filter()
109 std::string filterCppOutput(StringRef Input) { return Filter(Input).run(); } in filterCppOutput()
/llvm-project/llvm/tools/llvm-cvtres/
H A Dllvm-cvtres.cpp74 reportError(Twine(Input) + ": " + EC.message() + ".\n"); in error() argument
70 reportError(StringRef Input,std::error_code EC) reportError() argument
102 error(StringRef Input,Expected<T> EC) error() argument
108 error(StringRef Input,ErrorOr<T> && EC) error() argument
/llvm-project/clang/unittests/Tooling/Syntax/
H A DMutationsTest.cpp26 void CheckTransformation(Transformation Transform, std::string Input, in CheckTransformation() argument
47 __anonb432754e0202(const llvm::Annotations &Input, TranslationUnit *Root) __anonb432754e0202() argument
/llvm-project/libcxx/test/std/language.support/support.coroutines/end.to.end/
H A Dmultishot_func.pass.cpp19 struct Input {R a, b;}; argument
/llvm-project/clang/unittests/Rewrite/
H A DRewriteBufferTest.cpp
/llvm-project/libcxx/test/libcxx/numerics/
H A Dclamp_to_integral.pass.cpp26 double Input; test() member
58 float Input; test_float() member
/llvm-project/clang/lib/Tooling/Syntax/
H A DTokenBufferTokenManager.cpp17 std::unique_ptr<llvm::MemoryBuffer> Input) { in lexBuffer()
/llvm-project/clang-tools-extra/clangd/unittests/tweaks/
H A DObjCLocalizeStringLiteralTests.cpp32 const char *Input = R"(id x = [[@"test"]];)"; in TEST_F() local
/llvm-project/llvm/test/tools/llvm-debuginfo-analyzer/WebAssembly/Inputs/
H A Dpr-44884.cpp1 int bar(float Input) { return (int)Input; } in bar()
/llvm-project/llvm/include/llvm/ObjectYAML/
H A Dyaml2obj.h64 class Input; variable

12345678910