| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| Any.h | 1 //===- Any.h - Generic type erased holder of any type -----------*- C++ -*-===// 9 // This file provides Any, a non-template class modeled in the spirit of 10 // std::any. The idea is to provide a type-safe replacement for C's void*. 11 // It can hold a value of any copy-constructible copy-assignable type 26 class LLVM_EXTERNAL_VISIBILITY Any { 59 Any() = default; 61 Any(const Any &Other) 64 // When T is Any or T is not copy-constructible we need to explicitly disabl [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| PassInstrumentation.h | 38 /// - PassInstrumentation wraps address of IRUnit into llvm::Any and passes 40 /// 'const IRUnitT*' so as to avoid any accidental changes to IR in 52 #include "llvm/ADT/Any.h" 68 // to take them as constant pointers, wrapped with llvm::Any. 77 using BeforePassFunc = bool(StringRef, Any); 78 using BeforeSkippedPassFunc = void(StringRef, Any); 79 using BeforeNonSkippedPassFunc = void(StringRef, Any); 80 using AfterPassFunc = void(StringRef, Any, const PreservedAnalyses &); 82 using BeforeAnalysisFunc = void(StringRef, Any); 83 using AfterAnalysisFunc = void(StringRef, Any); [all...] |
| Comdat.h | 34 Any, ///< The linker may choose any COMDAT. 57 SelectionKind SK = Any;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Passes/ |
| StandardInstrumentations.h | 48 void printBeforePass(StringRef PassID, Any IR); 49 void printAfterPass(StringRef PassID, Any IR); 57 void pushModuleDesc(StringRef PassID, Any IR); 74 bool shouldRun(StringRef PassID, Any IR); 124 // in the Graph (BBGuard). That is if any of the block is deleted or RAUWed 181 void saveIRBeforePass(Any IR, StringRef PassID); 183 void handleIRAfterPass(Any IR, StringRef PassID); 200 bool isInteresting(Any IR, StringRef PassID); 203 virtual void handleInitialIR(Any IR) = 0; 205 virtual void generateIRRepresentation(Any IR, StringRef PassID [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| Comdat.cpp | 44 case Comdat::Any: 62 Cd->setSelectionKind(Comdat::Any);
|
| PassTimingInfo.cpp | 278 [this](StringRef P, Any) { this->runBeforePass(P); }); 280 [this](StringRef P, Any, const PreservedAnalyses &) { 288 [this](StringRef P, Any) { this->runBeforePass(P); }); 290 [this](StringRef P, Any) { this->runAfterPass(P); });
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| SIMachineFunctionInfo.cpp | 51 // have any calls. 527 bool Any = false; 528 Any |= convertArg(AI.PrivateSegmentBuffer, ArgInfo.PrivateSegmentBuffer); 529 Any |= convertArg(AI.DispatchPtr, ArgInfo.DispatchPtr); 530 Any |= convertArg(AI.QueuePtr, ArgInfo.QueuePtr); 531 Any |= convertArg(AI.KernargSegmentPtr, ArgInfo.KernargSegmentPtr); 532 Any |= convertArg(AI.DispatchID, ArgInfo.DispatchID); 533 Any |= convertArg(AI.FlatScratchInit, ArgInfo.FlatScratchInit); 534 Any |= convertArg(AI.PrivateSegmentSize, ArgInfo.PrivateSegmentSize); 535 Any |= convertArg(AI.WorkGroupIDX, ArgInfo.WorkGroupIDX) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/ |
| AtomicChange.h | 20 #include "llvm/ADT/Any.h" 46 llvm::Any Metadata); 127 const llvm::Any &getMetadata() const { return Metadata; } 149 llvm::Any Metadata;
|
| /src/external/apache2/llvm/dist/llvm/lib/Passes/ |
| StandardInstrumentations.cpp | 16 #include "llvm/ADT/Any.h" 51 // reported as not making any changes. In addition, the initial IR is 127 // for any failures instead of the diff. 192 const Module *unwrapModule(Any IR, bool Force = false) { 260 std::string getIRName(Any IR) { 301 bool shouldPrintIR(Any IR) { 325 /// llvm::Any and does actual print job. 326 void unwrapAndPrint(raw_ostream &OS, Any IR, 396 bool ChangeReporter<IRUnitT>::isInteresting(Any IR, StringRef PassID) { 405 void ChangeReporter<IRUnitT>::saveIRBeforePass(Any IR, StringRef PassID) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Transformer/ |
| RewriteRule.h | 24 #include "llvm/ADT/Any.h" 49 llvm::Any Metadata; 66 using AnyGenerator = MatchConsumer<llvm::Any>; 112 -> llvm::Expected<llvm::Any> { 113 return llvm::Expected<llvm::Any>(llvm::Any()); 122 /// The `EditGenerator` will return an empty vector if any of the edits apply to 124 /// interactions with macros, for example) and it will fail if any invariants 225 // construct an `llvm::Expected<llvm::Any>` where no error is present but the 226 // `llvm::Any` holds the error. This is unlikely but potentially surprising [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/isctest/ |
| query.py | 13 from typing import Any 34 query_func: Callable[..., Any], 45 ) -> Any: 128 def udp(*args, **kwargs) -> Any: 132 def tcp(*args, **kwargs) -> Any: 136 def tls(*args, **kwargs) -> Any:
|
| template.py | 17 from typing import Any 70 data: dict[str, Any] | None = None, 102 def render_auto(self, data: dict[str, Any] | None = None):
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MachinePassManager.cpp | 28 // because we don't run any module pass in codegen pipeline. This is very 43 PI.pushBeforeNonSkippedPassCallback([&MFAM](StringRef PassID, Any IR) { 78 // Do not codegen any 'available_externally' functions at all, they have
|
| /src/external/mpl/bind/dist/bin/tests/system/isctest/log/ |
| watchlog.py | 13 from typing import Any, TextIO, TypeAlias, TypeVar 84 Any strings are converted into regular expression patterns that match 113 Block execution until any line of interest appears in the log file. 119 If any of the patterns is found anywhere within a line in the log file, 123 A `WatchLogTimeout` is raised if the function fails to find any of the 292 log file in any order. 297 irrelevant and they may appear in any order. 358 def __enter__(self) -> Any: 371 directly, raise an exception upon any attempt of such use. 375 def __exit__(self, *_: Any) -> None [all...] |
| /src/external/bsd/openldap/dist/libraries/liblunicode/ucdata/ |
| api.txt | 45 This should be called before using any of the other functions. 102 returned, no decomposition occurred. Any other value means the output string 140 If a zero is returned, no composition is formed by the character pair. Any 178 If the function returns 0, the code is not a number. Any other return 186 If the function returns 0, the code is not a number. Any other return
|
| /src/crypto/external/bsd/heimdal/dist/ |
| ylwrap | 13 # any later version. 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 85 Any number of OUTPUT,DESIRED pairs may be used. 158 # Make any relative path in $prog absolute.
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/ |
| SampleProfileProbe.h | 64 void runAfterPass(StringRef PassID, Any IR);
|
| /src/external/bsd/flex/dist/build-aux/ |
| ylwrap | 13 # any later version. 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 85 Any number of OUTPUT,DESIRED pairs may be used. 158 # Make any relative path in $prog absolute.
|
| /src/external/bsd/tmux/dist/etc/ |
| ylwrap | 13 # any later version. 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 85 Any number of OUTPUT,DESIRED pairs may be used. 158 # Make any relative path in $prog absolute.
|
| /src/external/gpl3/binutils.old/dist/ |
| ylwrap | 13 # any later version. 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 85 Any number of OUTPUT,DESIRED pairs may be used. 143 # Make any relative path in $prog absolute.
|
| /src/external/gpl3/gcc/dist/ |
| ylwrap | 13 # any later version. 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 85 Any number of OUTPUT,DESIRED pairs may be used. 143 # Make any relative path in $prog absolute.
|
| /src/external/gpl3/gcc.old/dist/ |
| ylwrap | 13 # any later version. 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 85 Any number of OUTPUT,DESIRED pairs may be used. 143 # Make any relative path in $prog absolute.
|
| /src/external/gpl3/gdb/dist/ |
| ylwrap | 13 # any later version. 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 85 Any number of OUTPUT,DESIRED pairs may be used. 143 # Make any relative path in $prog absolute.
|
| /src/external/gpl3/gdb.old/dist/ |
| ylwrap | 13 # any later version. 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 85 Any number of OUTPUT,DESIRED pairs may be used. 143 # Make any relative path in $prog absolute.
|
| /src/external/lgpl3/gmp/dist/ |
| ylwrap | 13 # any later version. 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of 85 Any number of OUTPUT,DESIRED pairs may be used. 158 # Make any relative path in $prog absolute.
|