Home
last modified time | relevance | path

Searched refs:Input (Results 1 – 25 of 597) sorted by relevance

12345678910>>...24

/llvm-project/libcxx/test/std/iterators/iterator.requirements/alg.req.mergeable/
H A Dmergeable.compile.pass.cpp26 using Input = cpp20_input_iterator<int*>; typedef
27 static_assert( std::input_iterator<Input>);
34 static_assert( std::indirectly_copyable<Input, Output>);
36 static_assert( std::indirect_strict_weak_order<CompDefault, Input, Input>);
37 static_assert( std::indirect_strict_weak_order<CompInt, Input, Input>);
38 static_assert( std::indirect_strict_weak_order<CompDefault, Input, InputLong>);
39 static_assert( std::indirect_strict_weak_order<CompInt, Input, InputLong>);
42 static_assert( std::mergeable<Input, Input, Output>);
43 static_assert( std::mergeable<Input, Input, Output, CompInt>);
44 static_assert( std::mergeable<Input, Input, Output, CompInt, ProjDefault>);
[all …]
/llvm-project/clang/unittests/ASTMatchers/
H A DGtestMatchersTest.cpp198 static std::string wrapGtest(llvm::StringRef Input) { in wrapGtest() argument
199 return (GtestMockDecls + Input).str(); in wrapGtest()
203 std::string Input = R"cc( in TEST() local
206 EXPECT_TRUE(matches(wrapGtest(Input), in TEST()
212 std::string Input = R"cc( in TEST() local
216 notMatches(wrapGtest(Input), gtestAssert(GtestCmp::Eq, expr(), expr()))); in TEST()
220 std::string Input = R"cc( in TEST() local
225 matches(wrapGtest(Input), gtestAssert(GtestCmp::Eq, expr(), expr()))); in TEST()
229 std::string Input = R"cc( in TEST() local
232 EXPECT_TRUE(matches(wrapGtest(Input), in TEST()
[all …]
/llvm-project/llvm/lib/Support/
H A DCompression.cpp46 void compression::compress(Params P, ArrayRef<uint8_t> Input, in compress() argument
50 zlib::compress(Input, Output, P.level); in compress()
53 zstd::compress(Input, Output, P.level, P.zstdEnableLdm); in compress()
58 Error compression::decompress(DebugCompressionType T, ArrayRef<uint8_t> Input, in decompress() argument
62 return zlib::decompress(Input, Output, UncompressedSize); in decompress()
64 return zstd::decompress(Input, Output, UncompressedSize); in decompress()
69 Error compression::decompress(compression::Format F, ArrayRef<uint8_t> Input, in decompress() argument
74 return zlib::decompress(Input, Output, UncompressedSize); in decompress()
76 return zstd::decompress(Input, Output, UncompressedSize); in decompress()
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...]
H A DYAMLTraits.cpp50 llvm_unreachable("Only supported for Input"); in setAllowUnknownKeys()
54 // Input
57 Input::Input(StringRef InputContent, void *Ctxt,
65 Input::Input(MemoryBufferRef Input, void *Ctxt,
67 : IO(Ctxt), Strm(new Stream(Input, SrcMgr, false, &EC)) { in Input()
73 Input::~Input() in Input()
58 Input::Input(StringRef InputContent, void *Ctxt, Input() function in Input
66 Input(MemoryBufferRef Input,void * Ctxt,SourceMgr::DiagHandlerTy DiagHandler,void * DiagHandlerCtxt) Input() argument
[all...]
/llvm-project/clang/unittests/Tooling/
H A DTransformerTest.cpp106 std::optional<std::string> rewrite(StringRef Input) { in rewrite() argument
107 std::string Code = ("#include \"header.h\"\n" + Input).str(); in rewrite()
160 void testRule(RewriteRule Rule, StringRef Input, StringRef Expected) { in testRule() argument
164 compareSnippets(Expected, rewrite(Input)); in testRule()
167 void testRule(RewriteRuleWith<std::string> Rule, StringRef Input, in testRule() argument
172 compareSnippets(Expected, rewrite(Input)); in testRule()
175 void testRuleFailure(RewriteRule Rule, StringRef Input) { in testRuleFailure() argument
179 ASSERT_FALSE(rewrite(Input)) << "Expected failure to rewrite code"; in testRuleFailure()
182 void testRuleFailure(RewriteRuleWith<std::string> Rule, StringRef Input) { in testRuleFailure() argument
186 ASSERT_FALSE(rewrite(Input)) << "Expected failure to rewrite code"; in testRuleFailure()
[all …]
/llvm-project/llvm/tools/llvm-yaml-parser-fuzzer/
H A Dyaml-parser-fuzzer.cpp22 std::vector<uint8_t> Input(Data, Data + Size); in LLVMFuzzerTestOneInput() local
25 isValidYaml(Input.data(), Input.size()); in LLVMFuzzerTestOneInput()
28 llvm::erase(Input, 0); in LLVMFuzzerTestOneInput()
29 Input.shrink_to_fit(); in LLVMFuzzerTestOneInput()
30 bool IsValidWithout0s = isValidYaml(Input.data(), Input.size()); in LLVMFuzzerTestOneInput()
34 Input.push_back(0); in LLVMFuzzerTestOneInput()
35 Input.shrink_to_fit(); in LLVMFuzzerTestOneInput()
36 bool IsValidWhen0Terminated = isValidYaml(Input.data(), Input.size() - 1); in LLVMFuzzerTestOneInput()
40 Input.back() = 1; in LLVMFuzzerTestOneInput()
41 bool IsValidWhen1Terminated = isValidYaml(Input.data(), Input.size() - 1); in LLVMFuzzerTestOneInput()
/llvm-project/clang-tools-extra/unittests/clang-tidy/
H A DTransformerClangTidyCheckTest.cpp58 const std::string Input = R"cc( in TEST() local
73 EXPECT_EQ(Expected, test::runCheckOnCode<IfInverterCheck>(Input)); in TEST()
84 std::string Input = "int h() { return 5; }"; in TEST() local
86 EXPECT_EQ(Input, test::runCheckOnCode<DiagOnlyCheck>(Input, &Errors)); in TEST()
111 std::string Input = "int h() { return 5; }"; in TEST() local
113 EXPECT_EQ("int h() { }", test::runCheckOnCode<DiagOnlyCheck>(Input, &Errors)); in TEST()
132 std::string Input = "int h() { return 5; }"; in TEST() local
134 EXPECT_EQ(Input, test::runCheckOnCode<DiagAndNoteCheck>(Input, in TEST()
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 Draw_sha1_ostream_test.cpp17 static std::string toHex(ArrayRef<uint8_t> Input) { in toHex() argument
19 size_t Length = Input.size(); in toHex()
24 const unsigned char c = Input[i]; in toHex()
40 ArrayRef<uint8_t> Input((const uint8_t *)"Hello World!", 12); in TEST() local
41 std::array<uint8_t, 20> Vec = SHA1::hash(Input); in TEST()
48 std::string Input = "123456789012345678901234567890"; in TEST() local
49 ASSERT_EQ(Input.size(), 30UL); in TEST()
51 sha1.update(Input); in TEST()
52 sha1.update(Input); in TEST()
53 sha1.update(Input); in TEST()
[all …]
H A DCompressionTest.cpp26 static void testZlibCompression(StringRef Input, int Level) { in testZlibCompression() argument
29 zlib::compress(arrayRefFromStringRef(Input), Compressed, Level); in testZlibCompression()
32 Error E = zlib::decompress(Compressed, Uncompressed, Input.size()); in testZlibCompression()
34 EXPECT_EQ(Input, toStringRef(Uncompressed)); in testZlibCompression()
38 Uncompressed, Input.size()); in testZlibCompression()
40 EXPECT_EQ(Input, toStringRef(Uncompressed)); in testZlibCompression()
42 if (Input.size() > 0) { in testZlibCompression()
44 E = zlib::decompress(Compressed, Uncompressed, Input.size() - 1); in testZlibCompression()
71 static void testZstdCompression(StringRef Input, int Level) { in testZstdCompression() argument
74 zstd::compress(arrayRefFromStringRef(Input), Compressed, Level); in testZstdCompression()
[all …]
H A DBase64Test.cpp23 void TestBase64(StringRef Input, StringRef Final) { in TestBase64() argument
24 auto Res = encodeBase64(Input); in TestBase64()
28 void TestBase64Decode(StringRef Input, StringRef Expected, in TestBase64Decode() argument
32 ASSERT_THAT_ERROR(decodeBase64(Input, DecodedBytes), Succeeded());
36 ASSERT_THAT_ERROR(decodeBase64(Input, DecodedBytes),
87 auto Input = encodeBase64(Output); in TEST() local
88 TestBase64Decode(Input, Output); in TEST()
91 llvm::StringRef Input; in TEST() member
103 TestBase64Decode(EI.Input, "", EI.ErrorMessage); in TEST()
/llvm-project/clang-tools-extra/include-cleaner/lib/
H A DIncludeSpeller.cpp26 std::string operator()(const Input &Input) const override { in operator ()()
27 switch (Input.H.kind()) { in operator ()()
29 return Input.H.standard().name().str(); in operator ()()
31 return Input.H.verbatim().str(); in operator ()()
35 if (auto WD = Input.HS.getFileMgr() in operator ()()
39 std::string FinalSpelling = Input.HS.suggestPathToFileForDiagnostics( in operator ()()
40 Input.H.physical().getName(), WorkingDir, in operator ()()
41 Input.Main->tryGetRealPathName(), &IsAngled); in operator ()()
50 std::string spellHeader(const IncludeSpeller::Input &Input) { in spellHeader() argument
63 Spelling = (*Speller)(Input); in spellHeader()
/llvm-project/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/
H A Dgcd.pass.cpp60 template <typename Input> in basic_gcd()
63 using DistIntType = std::conditional_t<sizeof(Input) == 1, int, Input>; // See N4981 [rand.req.genl]/1.5 in basic_gcd()
64 constexpr Input max_input = std::numeric_limits<Input>::max(); in basic_gcd()
69 Input n = static_cast<Input>(distrib(gen));
70 Input m = static_cast<Input>(distrib(gen));
75 template <typename Input> in do_fuzzy_tests()
[all...]
/llvm-project/clang/lib/Driver/
H A DAction.cpp183 : Action(InputClass, _Type), Input(_Input), Id(_Id.str()) {}
187 BindArchAction::BindArchAction(Action *Input, StringRef ArchName) in OffloadAction()
188 : Action(BindArchClass, Input), ArchName(ArchName) {} in OffloadAction()
344 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in anchor()
345 : Action(Kind, Input, Type) {}
352 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) in PrecompileJobAction()
353 : JobAction(PreprocessJobClass, Input, OutputType) {}
357 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) in PrecompileJobAction()
358 : JobAction(PrecompileJobClass, Input, OutputType) {} in PrecompileJobAction()
360 PrecompileJobAction::PrecompileJobAction(ActionClass Kind, Action *Input, in anchor()
181 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...]
/llvm-project/llvm/unittests/TargetParser/
H A DRISCVISAInfoTest.cpp24 for (StringRef Input : {"RV32", "rV64", "rv32i2P0", "rv64i2p0_A2p0", in TEST()
27 toString(RISCVISAInfo::parseNormalizedArchString(Input).takeError()), in TEST()
33 for (StringRef Input : {"rv32", "rv64", "rv32j", "rv65i"}) { in TEST()
35 toString(RISCVISAInfo::parseNormalizedArchString(Input).takeError()), in TEST()
41 for (StringRef Input : {"rv64e2p", "rv32i", "rv64ip1"}) { in TEST()
43 toString(RISCVISAInfo::parseNormalizedArchString(Input).takeError()), in TEST()
47 for (StringRef Input : {"rv64i2p0_", "rv32i2p0__a2p0"}) { in TEST()
49 toString(RISCVISAInfo::parseNormalizedArchString(Input).takeError()), in TEST()
55 for (StringRef Input : {"rv64i2p0_1p0", "rv32i2p0_1p0"}) { in TEST()
57 toString(RISCVISAInfo::parseNormalizedArchString(Input) in TEST()
[all...]
/llvm-project/clang/lib/Tooling/Transformer/
H A DParsing.cpp42 StringRef Input; member
138 size_t Pos = S.OriginalInput.size() - S.Input.size(); in makeParseError()
145 S.Input = S.Input.drop_front(N); in advance()
156 State.Input = consumeWhitespace(State.Input); in parseChar()
157 if (State.Input.empty() || State.Input.front() != c) in parseChar()
165 State.Input = consumeWhitespace(State.Input); in parseId()
166 auto Id = State.Input.take_while( in parseId()
176 State.Input = consumeWhitespace(State.Input); in parseStringId()
177 if (State.Input.empty()) in parseStringId()
179 if (!State.Input.consume_front("\"")) in parseStringId()
[all …]
/llvm-project/mlir/test/Dialect/SPIRV/Transforms/
H A Dabi-load-store.mlir11 spirv.GlobalVariable @__builtin_var_WorkgroupSize__ built_in("WorkgroupSize") : !spirv.ptr<vector<3xi32>, Input>
13 spirv.GlobalVariable @__builtin_var_NumWorkgroups__ built_in("NumWorkgroups") : !spirv.ptr<vector<3xi32>, Input>
15 spirv.GlobalVariable @__builtin_var_LocalInvocationId__ built_in("LocalInvocationId") : !spirv.ptr<vector<3xi32>, Input>
17 spirv.GlobalVariable @__builtin_var_WorkgroupId__ built_in("WorkgroupId") : !spirv.ptr<vector<3xi32>, Input>
64 %0 = spirv.mlir.addressof @__builtin_var_WorkgroupId__ : !spirv.ptr<vector<3xi32>, Input>
65 %1 = spirv.Load "Input" %0 : vector<3xi32>
67 %3 = spirv.mlir.addressof @__builtin_var_WorkgroupId__ : !spirv.ptr<vector<3xi32>, Input>
68 %4 = spirv.Load "Input" %3 : vector<3xi32>
70 %6 = spirv.mlir.addressof @__builtin_var_WorkgroupId__ : !spirv.ptr<vector<3xi32>, Input>
71 %7 = spirv.Load "Input"
[all...]
/llvm-project/clang/unittests/InstallAPI/
H A DFileListTest.cpp21 static inline void testValidFileList(std::string Input, HeaderSeq &Expected) { in testValidFileList() argument
22 auto InputBuf = MemoryBuffer::getMemBuffer(Input); in testValidFileList()
32 static const char Input[] = R"({ in TEST() local
59 testValidFileList(Input, Expected); in TEST()
63 static const char Input[] = R"({ in TEST() local
82 testValidFileList(Input, Expected); in TEST()
86 static const auto Input = R"({ in TEST() local
104 testValidFileList(Input, Expected); in TEST()
108 static const char Input[] = R"({ in TEST() local
120 auto InputBuf = MemoryBuffer::getMemBuffer(Input); in TEST()
[all …]
/llvm-project/clang-tools-extra/clangd/unittests/
H A DTestWorkspace.cpp21 for (const auto &Input : Inputs) { in index() local
22 if (!Input.second.IsMainFile) in index()
24 TU.Code = Input.second.Code; in index()
25 TU.Filename = Input.first().str(); in index()
30 Index->updatePreamble(testPath(Input.first()), "null", Ctx, PP, *PI); in index()
33 Index->updateMain(testPath(Input.first()), MainAST); in index()
50 const SourceFile &Input) { in addInput() argument
51 Inputs.insert(std::make_pair(Filename, Input)); in addInput()
52 TU.AdditionalFiles.insert(std::make_pair(Filename, Input.Code)); in addInput()
/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h58 inline StringRef toStringRef(ArrayRef<uint8_t> Input) { in toStringRef() argument
59 return StringRef(reinterpret_cast<const char *>(Input.begin()), Input.size()); in toStringRef()
61 inline StringRef toStringRef(ArrayRef<char> Input) { in toStringRef() argument
62 return StringRef(Input.begin(), Input.size()); in toStringRef()
67 inline ArrayRef<CharT> arrayRefFromStringRef(StringRef Input) { in arrayRefFromStringRef() argument
72 return ArrayRef<CharT>(reinterpret_cast<const CharT *>(Input.data()), in arrayRefFromStringRef()
73 Input.size()); in arrayRefFromStringRef()
192 /// Convert buffer \p Input t in toHex()
183 toHex(ArrayRef<uint8_t> Input,bool LowerCase,SmallVectorImpl<char> & Output) toHex() argument
233 tryGetFromHex(StringRef Input,std::string & Output) tryGetFromHex() argument
268 fromHex(StringRef Input) fromHex() argument
[all...]
H A DFloatingPointMode.h96 DenormalModeKind Input = DenormalModeKind::Invalid; member
101 Output(Out), Input(In) {} in DenormalMode()
133 return Output == Other.Output && Input == Other.Input;
141 return Input == Output; in isSimple()
146 Input != DenormalModeKind::Invalid; in isValid()
151 return Input == DenormalModeKind::PreserveSign || in inputsAreZero()
152 Input == DenormalModeKind::PositiveZero; in inputsAreZero()
166 if (Callee.Input == DenormalMode::Dynamic) in mergeCalleeMode()
167 MergedMode.Input = Input; in mergeCalleeMode()
227 Mode.Input = InputStr.empty() ? Mode.Output : in parseDenormalFPAttribute()
[all …]
/llvm-project/mlir/test/Target/SPIRV/
H A Dglobal-variable.mlir3 // CHECK: spirv.GlobalVariable @var0 bind(1, 0) : !spirv.ptr<f32, Input>
5 // CHECK-NEXT: spirv.GlobalVariable @var2 built_in("GlobalInvocationId") : !spirv.ptr<vector<3xi32>, Input>
6 // CHECK-NEXT: spirv.GlobalVariable @var3 built_in("GlobalInvocationId") : !spirv.ptr<vector<3xi32>, Input>
9 spirv.GlobalVariable @var0 bind(1, 0) : !spirv.ptr<f32, Input>
11 spirv.GlobalVariable @var2 {built_in = "GlobalInvocationId"} : !spirv.ptr<vector<3xi32>, Input>
12 spirv.GlobalVariable @var3 built_in("GlobalInvocationId") : !spirv.ptr<vector<3xi32>, Input>
18 // CHECK: spirv.GlobalVariable @var1 : !spirv.ptr<f32, Input>
19 // CHECK-NEXT: spirv.GlobalVariable @var2 initializer(@var1) bind(1, 0) : !spirv.ptr<f32, Input>
20 spirv.GlobalVariable @var1 : !spirv.ptr<f32, Input>
21 spirv.GlobalVariable @var2 initializer(@var1) bind(1, 0) : !spirv.ptr<f32, Input>
[all...]
H A Dfunction-call.mlir4 spirv.GlobalVariable @var1 : !spirv.ptr<!spirv.array<4xf32>, Input>
7 %1 = spirv.mlir.addressof @var1 : !spirv.ptr<!spirv.array<4xf32>, Input>
10 …: spirv.FunctionCall @f_1({{%.*}}, {{%.*}}) : (i32, !spirv.ptr<!spirv.array<4 x f32>, Input>) -> ()
11 spirv.FunctionCall @f_1(%3, %1) : (i32, !spirv.ptr<!spirv.array<4xf32>, Input>) -> ()
12 …@f_2({{%.*}}) : (!spirv.ptr<!spirv.array<4 x f32>, Input>) -> !spirv.ptr<!spirv.array<4 x f32>, In…
13 …ionCall @f_2(%1) : (!spirv.ptr<!spirv.array<4xf32>, Input>) -> !spirv.ptr<!spirv.array<4xf32>, Inp…
19 spirv.func @f_1(%arg0 : i32, %arg1 : !spirv.ptr<!spirv.array<4xf32>, Input>) -> () "None" {
22 …v.func @f_2(%arg0 : !spirv.ptr<!spirv.array<4xf32>, Input>) -> !spirv.ptr<!spirv.array<4xf32>, Inp…
23 spirv.ReturnValue %arg0 : !spirv.ptr<!spirv.array<4xf32>, Input>
/llvm-project/clang/include/clang/Driver/
H A DAction.h136 Action(ActionClass Kind, Action *Input, types::ID Type) in Action()
137 : Action(Kind, ActionList({Input}), Type) {} in Action() argument
138 Action(ActionClass Kind, Action *Input) in Action()
139 : Action(Kind, ActionList({Input}), Input->getType()) {} in Action()
231 const llvm::opt::Arg &Input;
236 InputAction(const llvm::opt::Arg &Input, types::ID Type,
239 const llvm::opt::Arg &getInputArg() const { return Input; }
257 BindArchAction(Action *Input, StringRef ArchName);
404 JobAction(ActionClass Kind, Action *Input, type
135 Action(ActionClass Kind,Action * Input,types::ID Type) Action() argument
230 const llvm::opt::Arg &Input; global() variable
448 addHeaderInput(Action * Input) addHeaderInput() argument
[all...]
/llvm-project/llvm/include/llvm/Support/
H A DCompression.h43 void compress(ArrayRef<uint8_t> Input,
47 Error decompress(ArrayRef<uint8_t> Input, uint8_t *Output,
50 Error decompress(ArrayRef<uint8_t> Input, SmallVectorImpl<uint8_t> &Output,
64 void compress(ArrayRef<uint8_t> Input,
68 Error decompress(ArrayRef<uint8_t> Input, uint8_t *Output,
71 Error decompress(ArrayRef<uint8_t> Input, SmallVectorImpl<uint8_t> &Output,
116 void compress(Params P, ArrayRef<uint8_t> Input,
120 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input,
122 Error decompress(Format F, ArrayRef<uint8_t> Input,
124 Error decompress(DebugCompressionType T, ArrayRef<uint8_t> Input,
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/objc/
H A Dnsdate-formatter.rst14 * | **Example 1:** Input Date: `29 December 2014` ; Format String: `yyyy-ww`;
17 * | **Example 2:** Input Date: `29 December 2014` ; Format String: `dd-MM-yyyy (ww-YYYY)`;
22 * | **Example:** Input Date: `29 December 2014` ; Format String: `F-MM`;
27 * | **Example:** Input Date: `29 December 2014` ; Format String: `F-EE`
32 * | **Example:** Input Date: `29 December 2014` ; Format String: `WW-yyyy`
37 * | **Example 1:** Input Date: `29 December 2014` ; Format String: `YYYY-QQ`
40 * | **Example 2:** Input Date: `29 December 2014` ; Format String: `ww-YYYY (QQ-yyyy)`
45 * | **Example 1:** Input Date: `29 December 2014` ; Format String: `YYYY-MM`
48 * | **Example 2:** Input Date: `29 December 2014` ; Format String: `ww-YYYY (MM-yyyy)`
53 * | **Example 1:** Input Date: `29 December 2014` ; Format String: `YYYY-DD`
[all …]

12345678910>>...24