Home
last modified time | relevance | path

Searched refs:Any (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DAny.h28 class LLVM_EXTERNAL_VISIBILITY Any {
61 Any() = default;
63 Any(const Any &Other) in Any() function
86 Any(T &&Value) { in Any() function
91 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any() function
93 Any &swap(Any &Other) { in swap()
98 Any &operator=(Any Other) {
127 template <class T> T any_cast(const Any &Value) { in any_cast()
131 template <class T> T any_cast(Any &Value) { in any_cast()
135 template <class T> T any_cast(Any &&Value) { in any_cast()
[all …]
/llvm-project-15.0.7/clang/tools/clang-format-vs/
H A DClangFormat.sln10 Debug|Any CPU = Debug|Any CPU
11 Release|Any CPU = Release|Any CPU
14 {7FD1783E-2D31-4D05-BF23-6EBE1B42B608}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15 {7FD1783E-2D31-4D05-BF23-6EBE1B42B608}.Debug|Any CPU.Build.0 = Debug|Any CPU
16 {7FD1783E-2D31-4D05-BF23-6EBE1B42B608}.Release|Any CPU.ActiveCfg = Release|Any CPU
17 {7FD1783E-2D31-4D05-BF23-6EBE1B42B608}.Release|Any CPU.Build.0 = Release|Any CPU
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DAnyTest.cpp19 llvm::Any A; in TEST()
20 llvm::Any B{7}; in TEST()
21 llvm::Any C{8}; in TEST()
23 llvm::Any E{3.7}; in TEST()
49 llvm::Any F(B); in TEST()
79 llvm::Any A; in TEST()
80 llvm::Any B{7}; in TEST()
81 llvm::Any C{8}; in TEST()
95 llvm::Any F(B); in TEST()
157 llvm::Any A; in TEST()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DPassInstrumentation.h78 using BeforePassFunc = bool(StringRef, Any);
79 using BeforeSkippedPassFunc = void(StringRef, Any);
83 using BeforeAnalysisFunc = void(StringRef, Any);
84 using AfterAnalysisFunc = void(StringRef, Any);
224 ShouldRun &= C(Pass.name(), llvm::Any(&IR)); in runBeforePass()
229 C(Pass.name(), llvm::Any(&IR)); in runBeforePass()
232 C(Pass.name(), llvm::Any(&IR)); in runBeforePass()
246 C(Pass.name(), llvm::Any(&IR), PA); in runAfterPass()
266 C(Analysis.name(), llvm::Any(&IR)); in runBeforeAnalysis()
275 C(Analysis.name(), llvm::Any(&IR)); in runAfterAnalysis()
[all …]
H A DComdat.h36 Any, ///< The linker may choose any COMDAT. enumerator
63 SelectionKind SK = Any;
/llvm-project-15.0.7/mlir/python/mlir/_mlir_libs/_mlir/
H A Dir.pyi144 def __add__(self, other) -> Any: ...
150 def __mod__(self, other) -> Any: ...
151 def __mul__(self, other) -> Any: ...
152 def __radd__(self, other) -> Any: ...
153 def __rmod__(self, other) -> Any: ...
154 def __rmul__(self, other) -> Any: ...
156 def __sub__(self, other) -> Any: ...
321 def results(self) -> Any: ...
368 def __iter__(self) -> Any: ...
398 def __iter__(self) -> Any: ...
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h48 void printBeforePass(StringRef PassID, Any IR);
49 void printAfterPass(StringRef PassID, Any IR);
57 void pushModuleDesc(StringRef PassID, Any IR);
73 bool shouldRun(StringRef PassID, Any IR);
180 void saveIRBeforePass(Any IR, StringRef PassID);
191 virtual void handleInitialIR(Any IR) = 0;
200 Any) = 0;
225 void handleInitialIR(Any IR) override;
258 Any) override;
452 void handleInitialIR(Any IR) override;
[all …]
/llvm-project-15.0.7/llvm/test/tools/llvm-shlib/
H A Dtypeids.test3 # Make sure there's no llvm::Any::TypeId symbol local to the shared library. As
4 # the adress of llvm::Any::TypeId::Id is used as a global unique identifier for
7 # This happens when llvm::Any::TypeId is parametrized by a type with hidden
13 # CHECK-NOT: {{[^uvV]}} llvm::Any::TypeId
14 # SAFETY-CHECK: {{[uvV]}} llvm::Any::TypeId
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.cpp567 bool Any = false; in convertArgumentInfo() local
569 Any |= convertArg(AI.DispatchPtr, ArgInfo.DispatchPtr); in convertArgumentInfo()
570 Any |= convertArg(AI.QueuePtr, ArgInfo.QueuePtr); in convertArgumentInfo()
572 Any |= convertArg(AI.DispatchID, ArgInfo.DispatchID); in convertArgumentInfo()
574 Any |= convertArg(AI.LDSKernelId, ArgInfo.LDSKernelId); in convertArgumentInfo()
576 Any |= convertArg(AI.WorkGroupIDX, ArgInfo.WorkGroupIDX); in convertArgumentInfo()
580 Any |= convertArg(AI.PrivateSegmentWaveByteOffset, in convertArgumentInfo()
584 Any |= convertArg(AI.WorkItemIDX, ArgInfo.WorkItemIDX); in convertArgumentInfo()
585 Any |= convertArg(AI.WorkItemIDY, ArgInfo.WorkItemIDY); in convertArgumentInfo()
586 Any |= convertArg(AI.WorkItemIDZ, ArgInfo.WorkItemIDZ); in convertArgumentInfo()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DInsertionPointTests.cpp107 auto Any = [](const Decl *D) { return true; }; in TEST() local
116 EXPECT_EQ(Point({Any, Anchor::Above}, AS_public), Code.point("Method")); in TEST()
117 EXPECT_EQ(Point({Any, Anchor::Below}, AS_public), Code.point("private")); in TEST()
120 EXPECT_EQ(Point({Any, Anchor::Above}, AS_private), Code.point("field")); in TEST()
121 EXPECT_EQ(Point({Any, Anchor::Below}, AS_private), Code.point("end")); in TEST()
124 EXPECT_EQ(Point({Any, Anchor::Above}, AS_protected), Position{}); in TEST()
125 EXPECT_EQ(Point({Any, Anchor::Below}, AS_protected), Position{}); in TEST()
/llvm-project-15.0.7/llvm/lib/Passes/
H A DStandardInstrumentations.cpp188 const Module *unwrapModule(Any IR, bool Force = false) { in unwrapModule()
255 std::string getIRName(Any IR) { in getIRName()
296 bool shouldPrintIR(Any IR) { in shouldPrintIR()
321 void unwrapAndPrint(raw_ostream &OS, Any IR) { in unwrapAndPrint()
381 const Module *getModuleForComparison(Any IR) { in getModuleForComparison()
407 bool isInteresting(Any IR, StringRef PassID) { in isInteresting()
491 [this](StringRef P, Any IR, const PreservedAnalyses &) { in registerRequiredCallbacks()
903 [this, SpecialPasses](StringRef PassID, Any IR, in registerCallbacks()
911 [this, SpecialPasses](StringRef PassID, Any IR) { in registerCallbacks()
925 [this](StringRef PassID, Any IR) { Indent -= 2; }); in registerCallbacks()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/concurrency/
H A DMtUnsafeCheck.cpp272 {concurrency::MtUnsafeCheck::FunctionSet::Any, "any"}}; in getEnumMapping()
286 case MtUnsafeCheck::FunctionSet::Any: in hasAnyMtUnsafeNames()
294 FuncSet(Options.get("FunctionSet", MtUnsafeCheck::FunctionSet::Any)) {} in MtUnsafeCheck()
/llvm-project-15.0.7/mlir/python/mlir/dialects/
H A D_arith_ops_ext.py9 from typing import Any, List, Union
14 def _isa(obj: Any, cls: type): argument
22 def _is_any_of(obj: Any, classes: List[type]): argument
/llvm-project-15.0.7/llvm/test/MC/X86/
H A Dx86-GCC-inline-asm-Y-constraints.ll7 ; Any mmx regiter constraint
20 ; Any SSE register when SSE2 is enabled (GCC when inter-unit moves enabled)
33 ; Any SSE register when SSE2 is enabled
46 ; Any SSE register when SSE2 is enabled
/llvm-project-15.0.7/lldb/include/lldb/
H A Dlldb-private-enumerations.h208 Any = 1 << 15, enumerator
210 AnyModule = Any | Module,
212 AnyType = Any | Class | Struct | Union | Enum | Typedef
/llvm-project-15.0.7/clang/include/clang/Tooling/Transformer/
H A DRewriteRule.h49 llvm::Any Metadata;
68 using AnyGenerator = MatchConsumer<llvm::Any>;
114 -> llvm::Expected<llvm::Any> {
115 return llvm::Expected<llvm::Any>(llvm::Any());
242 const ast_matchers::MatchFinder::MatchResult &R) -> llvm::Any { in withMetadata()
/llvm-project-15.0.7/clang/include/clang/Tooling/Refactoring/
H A DAtomicChange.h46 llvm::Any Metadata);
129 const llvm::Any &getMetadata() const { return Metadata; } in getMetadata()
151 llvm::Any Metadata;
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/llvm/
H A DPreferIsaOrDynCastInConditionalsCheck.cpp34 auto Any = anyOf( in registerMatchers() local
58 ifStmt(Any), whileStmt(Any), doStmt(Condition), in registerMatchers()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DRichManglingContext.h74 llvm::Any m_cxx_method_parser;
88 template <class ParserT> static ParserT *get(llvm::Any parser) { in get()
/llvm-project-15.0.7/llvm/lib/IR/
H A DPassTimingInfo.cpp278 [this](StringRef P, Any) { this->runBeforePass(P); }); in registerCallbacks() argument
280 [this](StringRef P, Any, const PreservedAnalyses &) { in registerCallbacks() argument
288 [this](StringRef P, Any) { this->runBeforePass(P); }); in registerCallbacks() argument
290 [this](StringRef P, Any) { this->runAfterPass(P); }); in registerCallbacks() argument
H A DComdat.cpp50 case Comdat::Any: in LLVMGetComdatSelectionKind()
68 Cd->setSelectionKind(Comdat::Any); in LLVMSetComdatSelectionKind()
/llvm-project-15.0.7/llvm/lib/Target/DirectX/
H A DDXILPointerType.cpp33 llvm::Any &TargetData = EltTy->getContext().getTargetData(); in get()
35 TargetData = Any{std::make_shared<TypedPointerTracking>()}; in get()
/llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/
H A Dinvalid_scripted_process.py3 from typing import Any, Dict
55 def get_stop_reason(self) -> Dict[str, Any]:
H A Ddummy_scripted_process.py3 from typing import Any, Dict
60 def get_stop_reason(self) -> Dict[str, Any]:
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dconversion-function.cpp244 struct Any { struct
245 Any(...);
254 Any any = Other(); in test_any()

12345678910>>...12