| /llvm-project-15.0.7/clang/test/SemaTemplate/ |
| H A D | attributes.cpp | 95 template <int... Is> [[clang::annotate("ANNOTATE_BAZ", Is...)]] void HasPackAnnotations(); 98 template <int... Is> [[clang::annotate(Is...)]] void HasOnlyPackAnnotation() {} // expected-error {… in HasOnlyPackAnnotation() 298 template <typename T, int... Is> struct [[clang::annotate("ANNOTATE_FOZ", Is...)]] AnnotatedPackTem… 299 template <int... Is> struct [[clang::annotate("ANNOTATE_BOO", Is...)]] AnnotatedPackTemplateStruct<… 300 template <int... Is> struct [[clang::annotate("ANNOTATE_FOZ", 4, 5, 6)]] AnnotatedPackTemplateStruc… 301 template <int... Is> struct [[clang::annotate(Is...)]] AnnotatedPackTemplateStruct<char, Is...>{}; … 450 template <int... Is> struct [[clang::annotate("ANNOTATE_BIR", Is...)]] InvalidAnnotatedPackTemplate… 451 template <int... Is> struct InvalidAnnotatedPackTemplateStruct<float, Is...> {}; 547 template <int... Is> [[clang::annotate("ANNOTATE_FAR", Is...)]] void RedeclaredAnnotatedFunc(); 548 template <int... Is> [[clang::annotate("ANNOTATE_BOZ", Is...)]] void RedeclaredAnnotatedFunc(); [all …]
|
| H A D | cxx1z-fold-expressions.cpp | 99 template <int... Is> struct Sum { 100 …template <int... Js> using type = Constant<((Is + Js) + ... + 0)>; // expected-error {{pack expans…
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/class-template-non-type-parameter-pack/ |
| H A D | main.cpp | 2 template <int... Is> 30 template <typename, int... Is> 36 template <typename T, int... Is> 56 template <int, int... Is> 62 template <int I, int... Is>
|
| /llvm-project-15.0.7/libcxx/benchmarks/ |
| H A D | VariantBenchmarks.h | 30 template <std::size_t N, std::size_t... Is> 31 static auto genVariants(std::index_sequence<Is...>) { in genVariants() argument 32 using V = std::variant<S<Is>...>; in genVariants() 34 static constexpr F fs[] = {[] { return V(std::in_place_index<Is>); }...}; in genVariants() 38 v = fs[getRandomInteger(0ul, sizeof...(Is) - 1)](); in genVariants()
|
| H A D | CartesianBenchmarks.h | 39 template <class B, class Args, size_t... Is> 40 void makeBenchmarkFromValuesImpl(const Args& A, std::index_sequence<Is...>) { in makeBenchmarkFromValuesImpl() argument 42 B Bench{std::get<Is>(V)...}; in makeBenchmarkFromValuesImpl()
|
| /llvm-project-15.0.7/clang/include/clang/Tooling/Refactoring/ |
| H A D | RefactoringActionRulesInternal.h | 46 template <typename RuleType, typename... RequirementTypes, size_t... Is> 50 std::index_sequence<Is...>) { in invokeRuleAfterValidatingRequirements() argument 53 std::make_tuple(std::get<Is>(Requirements).evaluate(Context)...); in invokeRuleAfterValidatingRequirements() 54 auto Err = findError(std::get<Is>(Values)...); in invokeRuleAfterValidatingRequirements() 60 RuleType::initiate(Context, std::move((*std::get<Is>(Values)))...); in invokeRuleAfterValidatingRequirements() 86 template <typename... RequirementTypes, size_t... Is> 90 std::index_sequence<Is...>) { in visitRefactoringOptions() argument 91 visitRefactoringOptionsImpl(Visitor, std::get<Is>(Requirements)...); in visitRefactoringOptions()
|
| /llvm-project-15.0.7/llvm/test/Transforms/FunctionImport/ |
| H A D | funcimport_resolved.ll | 23 ; INSTLIMDEFAULT: Is importing function {{.*}} foo from {{.*}}funcimport_resolved1.ll 24 ; INSTLIMDEFAULT: Is importing function {{.*}} linkonceodrfunc from {{.*}}funcimport_resolved1.ll 25 ; INSTLIMDEFAULT: Is importing function {{.*}} linkonceodrfunc2 from {{.*}}funcimport_resolved1.ll 26 ; INSTLIMDEFAULT: Is importing function {{.*}} f from {{.*}}funcimport_resolved1.ll 27 ; INSTLIMDEFAULT-NOT: Is importing function {{.*}} linkonceodrfunc from {{.*}}funcimport_resolved2.… 34 ; INSTLIM8: Is importing function {{.*}} foo from {{.*}}funcimport_resolved1.ll 35 ; INSTLIM8: Is importing function {{.*}} linkonceodrfunc from {{.*}}funcimport_resolved1.ll 37 ; INSTLIM8: Is importing function {{.*}} f from {{.*}}funcimport_resolved1.ll 38 ; INSTLIM8-NOT: Is importing function {{.*}} linkonceodrfunc from {{.*}}funcimport_resolved2.ll
|
| /llvm-project-15.0.7/llvm/lib/Target/M68k/ |
| H A D | M68k.td | 23 "Is M68000 ISA supported">; 27 "Is M68010 ISA supported", 32 "Is M68020 ISA supported", 37 "Is M68030 ISA supported", 42 "Is M68040 ISA supported", 47 "Is M68060 ISA supported",
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | InterleavedLoadCombinePass.cpp | 666 std::set<Instruction *> Is; member 766 Result.Is.insert(Old.Is.begin(), Old.Is.end()); in computeFromBCI() 767 Result.Is.insert(BCI); in computeFromBCI() 825 Result.Is.insert(LHS.Is.begin(), LHS.Is.end()); in computeFromSVI() 829 Result.Is.insert(RHS.Is.begin(), RHS.Is.end()); in computeFromSVI() 831 Result.Is.insert(SVI); in computeFromSVI() 883 Result.Is.insert(LI); in computeFromLI() 1126 std::set<Instruction *> Is; in combine() local 1144 Is.insert(VI.Is.begin(), VI.Is.end()); in combine() 1157 for (const auto &I : Is) { in combine() [all …]
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | cxx0x-attributes.cpp | 267 template <int... Is> void variadic_nttp() { 269 …void baz [[clang::no_sanitize(Is...)]] (); // expected-error {{attribute 'no_sanitize' do… 272 …void boo [[unknown::foo(Is...)]] (); // expected-warning {{unknown attribute 'foo' … 273 …void faz [[clang::annotate("C", (Is + ...))]] (); // expected-warning {{pack fold expression is … 274 void far [[clang::annotate("D", Is...)]] (); 275 void foz [[clang::annotate("E", 1, 2, 3, Is...)]] (); 276 void fiz [[clang::annotate("F", Is..., 1, 2, 3)]] (); 277 void fir [[clang::annotate("G", 1, Is..., 2, 3)]] ();
|
| /llvm-project-15.0.7/llvm/tools/llvm-objcopy/ |
| H A D | llvm-objcopy.cpp | 77 auto Is = [=](StringRef Tool) { in getDriverConfig() local 89 if (Is("bitcode-strip") || Is("bitcode_strip")) in getDriverConfig() 91 else if (Is("strip")) in getDriverConfig() 93 else if (Is("install-name-tool") || Is("install_name_tool")) in getDriverConfig()
|
| /llvm-project-15.0.7/llvm/tools/llvm-driver/ |
| H A D | llvm-driver.cpp | 51 auto Is = [=](StringRef Tool) { in findTool() local 58 if (Is(tool)) \ in findTool() 62 if (Is("llvm")) in findTool()
|
| /llvm-project-15.0.7/llvm/test/ThinLTO/X86/ |
| H A D | funcimport-stats.ll | 7 ; RUN: cat %t4 | grep 'Is importing global' | count 4 8 ; RUN: cat %t4 | grep 'Is importing function' | count 8 9 ; RUN: cat %t4 | grep 'Is importing aliasee' | count 1
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | MachineLocation.h | 48 void setIsRegister(bool Is) { IsRegister = Is; } in setIsRegister() argument
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | Format.h | 93 template <std::size_t... Is> 95 std::index_sequence<Is...>) const { 97 return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...); 99 return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/iterator.requirements/indirectcallable/indirectinvocable/ |
| H A D | indirect_result_t.compile.pass.cpp | 25 template <class F, class... Is> 27 typename std::indirect_result_t<F, Is...>;
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | annotate-type.cpp | 34 template <int... Is> void variadic_func_template() { in variadic_func_template() 35 int [[clang::annotate_type("foo", Is...)]] val; in variadic_func_template()
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | Matchers.h | 224 template <typename TupleT, class CallbackT, std::size_t... Is> 226 std::index_sequence<Is...>) { in enumerateImpl() argument 229 (callback(std::integral_constant<std::size_t, Is>{}, std::get<Is>(tuple)), in enumerateImpl()
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/PDB/ |
| H A D | pdbdump-readwrite.test | 24 CHECK-NEXT: Is incrementally linked: true 26 CHECK-NEXT: Is stripped: false
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/X86/ |
| H A D | bitcast-di.ll | 12 ; Is DI maintained after sinking bitcast? 38 ; Is DI maitained when a GEP with all zero indices gets converted to bitcast?
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | EHScopeStack.h | 201 template <std::size_t... Is> 202 T restore(CodeGenFunction &CGF, std::index_sequence<Is...>) { 205 return T{DominatingValue<As>::restore(CGF, std::get<Is>(Saved))...};
|
| /llvm-project-15.0.7/llvm/test/YAMLParser/ |
| H A D | spec-07-10.test | 11 ... # Is optional.
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-pdbutil/ |
| H A D | stripped.test | 18 ; CHECK-NEXT: Is incrementally linked: false 20 ; CHECK-NEXT: Is stripped: true
|
| /llvm-project-15.0.7/compiler-rt/test/fuzzer/ |
| H A D | not-instrumented.test | 4 NO_COVERAGE: WARNING: no interesting inputs were found so far. Is the code instrumented for coverag…
|
| H A D | windows-opt-ref.test | 8 CHECK-NOT: ERROR: no interesting inputs were found. Is the code instrumented for coverage? Exiting.
|