Home
last modified time | relevance | path

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

12345678910>>...20

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAny.h1 //===- Any.h - Generic type erased holder of any type -----------*- C++ -*-===//
10 /// This file provides Any, a non-template class modeled in the spirit of
28 class LLVM_EXTERNAL_VISIBILITY Any {
63 Any() = default;
65 Any(const Any &Other) in Any() function
68 // When T is Any or T is not copy-constructible we need to explicitly disable
74 std::negation<std::is_same<std::decay_t<T>, Any>>,
75 // We also disable this overload when an `Any` object can be
83 // adopting it to work-around usage of `Any` wit
88 Any(T &&Value) { Any() function
93 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} Any() function
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h64 void printBeforePass(StringRef PassID, Any IR);
65 void printAfterPass(StringRef PassID, Any IR);
76 void pushPassRunDescriptor(StringRef PassID, Any IR,
79 std::string fetchDumpFilename(StringRef PassId, Any IR);
97 bool shouldRun(StringRef PassID, Any IR);
105 bool shouldRun(StringRef PassName, Any IR);
206 void saveIRBeforePass(Any IR, StringRef PassID, StringRef PassName);
208 void handleIRAfterPass(Any IR, StringRef PassID, StringRef PassName);
217 virtual void handleInitialIR(Any IR) = 0;
219 virtual void generateIRRepresentation(Any IR, StringRef PassID,
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPassInstrumentation.h79 using BeforePassFunc = bool(StringRef, Any);
80 using BeforeSkippedPassFunc = void(StringRef, Any);
81 using BeforeNonSkippedPassFunc = void(StringRef, Any);
82 using AfterPassFunc = void(StringRef, Any, const PreservedAnalyses &);
84 using BeforeAnalysisFunc = void(StringRef, Any);
85 using AfterAnalysisFunc = void(StringRef, Any);
86 using AnalysisInvalidatedFunc = void(StringRef, Any);
243 ShouldRun &= C(Pass.name(), llvm::Any(&IR)); in runBeforePass()
248 C(Pass.name(), llvm::Any(&IR)); in runBeforePass()
251 C(Pass.name(), llvm::Any(&IR)); in runBeforePass()
[all …]
H A DComdat.h36 Any, ///< The linker may choose any COMDAT. enumerator
63 SelectionKind SK = Any;
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp141 template <typename IRUnitT> static const IRUnitT *unwrapIR(Any IR) { in unwrapIR()
162 const Module *unwrapModule(Any IR, bool Force = false) { in unwrapModule()
238 std::string getIRName(Any IR) { in getIRName()
274 bool shouldPrintIR(Any IR) { in shouldPrintIR()
294 void unwrapAndPrint(raw_ostream &OS, Any IR) { in unwrapAndPrint()
357 const Module *getModuleForComparison(Any IR) { in getModuleForComparison()
371 bool isInteresting(Any IR, StringRef PassID, StringRef PassName) { in isInteresting()
386 void ChangeReporter<T>::saveIRBeforePass(Any IR, StringRef PassID, in saveIRBeforePass()
409 void ChangeReporter<T>::handleIRAfterPass(Any IR, StringRef PassID, in handleIRAfterPass()
454 PIC.registerBeforeNonSkippedPassCallback([&PIC, this](StringRef P, Any IR) { in registerRequiredCallbacks()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.cpp644 bool Any = false; in convertArgumentInfo() local
645 Any |= convertArg(AI.PrivateSegmentBuffer, ArgInfo.PrivateSegmentBuffer); in convertArgumentInfo()
646 Any |= convertArg(AI.DispatchPtr, ArgInfo.DispatchPtr); in convertArgumentInfo()
647 Any |= convertArg(AI.QueuePtr, ArgInfo.QueuePtr); in convertArgumentInfo()
648 Any |= convertArg(AI.KernargSegmentPtr, ArgInfo.KernargSegmentPtr); in convertArgumentInfo()
649 Any |= convertArg(AI.DispatchID, ArgInfo.DispatchID); in convertArgumentInfo()
650 Any |= convertArg(AI.FlatScratchInit, ArgInfo.FlatScratchInit); in convertArgumentInfo()
651 Any |= convertArg(AI.LDSKernelId, ArgInfo.LDSKernelId); in convertArgumentInfo()
652 Any |= convertArg(AI.PrivateSegmentSize, ArgInfo.PrivateSegmentSize); in convertArgumentInfo()
653 Any |= convertArg(AI.WorkGroupIDX, ArgInfo.WorkGroupIDX); in convertArgumentInfo()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGenTypes/
H A DMachineValueType.h41 #define GET_VT_ATTR(Ty, n, sz, Any, Int, FP, Vec, Sc, NElem, EltTy) Ty = n, argument
174 #define GET_VT_ATTR(Ty, n, sz, Any, Int, FP, Vec, Sc, NElem, EltTy) \ in isOverloaded() argument
176 return Any; in isOverloaded()
257 #define GET_VT_ATTR(Ty, N, Sz, Any, Int, FP, Vec, Sc, NElem, EltTy) EltTy, in getVectorElementType() argument
270 #define GET_VT_ATTR(Ty, N, Sz, Any, Int, FP, Vec, Sc, NElem, EltTy) NElem, in getVectorMinNumElements() argument
299 #define GET_VT_ATTR(Ty, N, Sz, Any, Int, FP, Vec, Sc, NElem, EltTy) \ in getSizeInBits() argument
316 case Any: in getSizeInBits()
421 #define GET_VT_ATTR(Ty, n, sz, Any, Int, FP, Vec, Sc, NElem, EltTy) \ in getFloatingPointVT() argument
431 #define GET_VT_ATTR(Ty, n, sz, Any, Int, FP, Vec, Sc, NElem, EltTy) \ in getIntegerVT() argument
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-enumerations.h209 Any = 1 << 15, enumerator
211 AnyModule = Any | Module,
213 AnyType = Any | ClassOrStruct | Union | Enum | Typedef | Builtin,
215 AnyDeclContext = Any | Namespace | ClassOrStruct | Union | Enum | Function,
/freebsd/tests/atf_python/sys/netpfil/ipfw/
H A Dutils.py13 from typing import Any
46 cls: Any
47 child_map: Any = None
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DRewriteRule.h50 llvm::Any Metadata;
69 using AnyGenerator = MatchConsumer<llvm::Any>;
115 -> llvm::Expected<llvm::Any> {
116 return llvm::Expected<llvm::Any>(llvm::Any());
247 const ast_matchers::MatchFinder::MatchResult &R) -> llvm::Any { in withMetadata()
/freebsd/contrib/llvm-project/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;
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DPassTimingInfo.cpp316 [this](StringRef P, Any) { this->startPassTimer(P); }); in registerCallbacks() argument
318 [this](StringRef P, Any, const PreservedAnalyses &) {
326 [this](StringRef P, Any) { this->startAnalysisTimer(P); });
328 [this](StringRef P, Any) { this->stopAnalysisTimer(P); });
304 __anon2e7fb3850302(StringRef P, Any) registerCallbacks() argument
306 __anon2e7fb3850402(StringRef P, Any, const PreservedAnalyses &) registerCallbacks() argument
314 __anon2e7fb3850602(StringRef P, Any) registerCallbacks() argument
H A DComdat.cpp50 case Comdat::Any: in LLVMGetComdatSelectionKind()
68 Cd->setSelectionKind(Comdat::Any); in LLVMSetComdatSelectionKind()
/freebsd/tests/atf_python/sys/netlink/
H A Dutils.py3 from typing import Any
36 child_map: Any = None
/freebsd/usr.sbin/bsdconfig/include/
H A Dmedia.hlp4 ATAPI - Any standard ATAPI CDROM drive hooked to
6 SCSI - Any standard SCSI CDROM drive hooked to
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CONF_CTX_set_ssl_ctx.pod19 B<SSL_CTX> structure B<ctx>. Any previous B<SSL> or B<SSL_CTX> associated with
24 B<SSL> structure B<ssl>. Any previous B<SSL> or B<SSL_CTX> associated with
H A DBIO_new_CMS.pod16 of the filter is written to B<out>. Any data written to the chain is
35 Any content written through the filter is used verbatim: no canonical
H A DDH_get0_pqg.pod54 Any of the out parameters I<p>, I<q>, and I<g> can be NULL, in which case no
74 Any of the out parameters I<pub_key> and I<priv_key> can be NULL, in which case
83 Any of the values I<p>, I<q>, I<g>, I<priv_key>, and I<pub_key> can also be
88 Multiple flags can be passed in one go (bitwise ORed together). Any flags that
/freebsd/contrib/ntp/html/hints/
H A Dtodo2 Any change in a source file in the lib directory causes all files to
/freebsd/contrib/ntp/
H A Dreadme.y2kfixes32 for their distribution. Any copyright claims only only apply to
33 the specific changes made by Y2K to the code. Any original
46 Any distributions of the updates must keep the entire update
/freebsd/sys/contrib/openzfs/etc/sudoers.d/
H A Dzfs5 ## CAUTION: Any syntax error introduced here will break sudo.
/freebsd/sys/contrib/device-tree/Bindings/regulator/
H A Dsy8824x.txt11 Any property defined as part of the core regulator binding, defined in
H A Dsy8106a-regulator.txt9 Any property defined as part of the core regulator binding, defined in
/freebsd/sys/contrib/device-tree/Bindings/cpu/
H A Dcpu-topology.txt65 Any other configuration is considered invalid.
78 system must be defined within the topology. Any other configuration is
116 Any other configuration is considered invalid.
133 Any other configuration is considered invalid.
159 Any other configuration is considered invalid.

12345678910>>...20