| /llvm-project-15.0.7/clang/test/SemaOpenCLCXX/ |
| H A D | address-space-lambda.clcpp | 16 …__constant auto err = [&]() {}; //expected-note{{candidate function not viable: 'this' object is i… 35 …auto priv3 = []() __global {}; //expected-note{{candidate function not viable: 'this' object is in… 37 //expected-note@35{{conversion candidate of type 'void (*)() __attribute__((thiscall))'}} 39 //expected-note@35{{conversion candidate of type 'void (*)()'}} 43 …__constant auto const1 = []() __private{}; //expected-note{{candidate function not viable: 'this' … 45 //expected-note@43{{conversion candidate of type 'void (*)() __attribute__((thiscall))'}} 47 //expected-note@43{{conversion candidate of type 'void (*)()'}} 50 …__constant auto const2 = []() __generic{}; //expected-note{{candidate function not viable: 'this' … 52 //expected-note@50{{conversion candidate of type 'void (*)() __attribute__((thiscall))'}} 54 //expected-note@50{{conversion candidate of type 'void (*)()'}} [all …]
|
| H A D | method-overload-address-space.clcpp | 5 //expected-note@-1{{candidate function}} 7 //expected-note@-1{{candidate function}}
|
| H A D | addrspace-constructors.clcpp | 22 //expected-note@+2{{candidate constructor (the implicit copy constructor) not viable: no known conv… 23 //expected-note@+1{{candidate constructor (the implicit move constructor) not viable: no known conv… 26 …Y() __generic = default; // expected-note{{candidate constructor not viable: requires 0 arguments,…
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | TypoCorrection.h | 301 virtual bool ValidateCandidate(const TypoCorrection &candidate); 309 virtual unsigned RankCandidate(const TypoCorrection &candidate) { in RankCandidate() argument 310 return (!MatchesTypo(candidate) && ValidateCandidate(candidate)) in RankCandidate() 340 bool MatchesTypo(const TypoCorrection &candidate) { in MatchesTypo() argument 341 return Typo && candidate.isResolved() && !candidate.requiresImport() && in MatchesTypo() 342 candidate.getCorrectionAsIdentifierInfo() == Typo && in MatchesTypo() 345 candidate.getCorrectionSpecifier() == TypoNNS; in MatchesTypo() 368 bool ValidateCandidate(const TypoCorrection &candidate) override { in ValidateCandidate() argument 369 return candidate.getCorrectionDeclAs<C>(); in ValidateCandidate() 385 bool ValidateCandidate(const TypoCorrection &candidate) override; [all …]
|
| /llvm-project-15.0.7/clang/test/Modules/ |
| H A D | redecl-merge.m | 30 // expected-note@Inputs/redecl-merge-left.h:93{{candidate function}} 31 // expected-note@Inputs/redecl-merge-right.h:90{{candidate function}} 82 // expected-note@Inputs/redecl-merge-left.h:60{{candidate found by name lookup is 'T2'}} 83 // expected-note@Inputs/redecl-merge-right.h:63{{candidate found by name lookup is 'T2'}} 90 // expected-note@Inputs/redecl-merge-left.h:64{{candidate function}} 91 // expected-note@Inputs/redecl-merge-right.h:70{{candidate function}} 97 // expected-note@Inputs/redecl-merge-left.h:77{{candidate found by name lookup is 'var2'}} 98 // expected-note@Inputs/redecl-merge-right.h:77{{candidate found by name lookup is 'var2'}} 100 // expected-note@Inputs/redecl-merge-left.h:79{{candidate found by name lookup is 'var3'}} 101 // expected-note@Inputs/redecl-merge-right.h:79{{candidate found by name lookup is 'var3'}}
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | test_categories.py | 49 candidate = None 53 if candidate: 55 candidate = item 56 return candidate
|
| /llvm-project-15.0.7/mlir/lib/CAPI/Dialect/ |
| H A D | Quant.cpp | 73 MlirType candidate) { in mlirQuantizedTypeIsCompatibleExpressedType() argument 75 unwrap(candidate)); in mlirQuantizedTypeIsCompatibleExpressedType() 83 MlirType candidate) { in mlirQuantizedTypeCastFromStorageType() argument 85 unwrap(candidate))); in mlirQuantizedTypeCastFromStorageType() 94 MlirType candidate) { in mlirQuantizedTypeCastFromExpressedType() argument 96 unwrap(candidate))); in mlirQuantizedTypeCastFromExpressedType() 104 MlirType candidate) { in mlirQuantizedTypeCastExpressedToStorageType() argument 107 unwrap(candidate))); in mlirQuantizedTypeCastExpressedToStorageType()
|
| /llvm-project-15.0.7/clang/test/SemaOpenCL/ |
| H A D | queue_t_overload.cl | 3 …ed-note {{candidate function not viable: no known conversion from 'int' to '__private queue_t' for… 4 …ed-note {{candidate function not viable: no known conversion from 'int' to '__private queue_t' for…
|
| H A D | event_t_overload.cl | 3 void __attribute__((overloadable)) foo(event_t, __local char *); // expected-note {{candidate funct… 4 void __attribute__((overloadable)) foo(event_t, __local float *); // expected-note {{candidate func…
|
| /llvm-project-15.0.7/flang/lib/Optimizer/Transforms/ |
| H A D | MemRefDataFlowOpt.cpp | 58 for (auto candidate : candidateSet) { in findStoreToForward() local 60 if (candidate == otherStore) in findStoreToForward() 62 bool rv = domInfo->properlyDominates(candidate, otherStore); in findStoreToForward() 65 << "candidate " << candidate << " is not the nearest to " in findStoreToForward() 71 nearestStore = mlir::cast<WriteOp>(candidate); in findStoreToForward()
|
| /llvm-project-15.0.7/mlir/lib/Bindings/Python/ |
| H A D | DialectQuant.cpp | 75 [](MlirType type, MlirType candidate) { in populateDialectQuantSubmodule() argument 76 return mlirQuantizedTypeIsCompatibleExpressedType(type, candidate); in populateDialectQuantSubmodule() 89 [](MlirType type, MlirType candidate) { in populateDialectQuantSubmodule() argument 91 mlirQuantizedTypeCastFromStorageType(type, candidate); in populateDialectQuantSubmodule() 114 [](MlirType type, MlirType candidate) { in populateDialectQuantSubmodule() argument 116 mlirQuantizedTypeCastFromExpressedType(type, candidate); in populateDialectQuantSubmodule() 139 [](MlirType type, MlirType candidate) { in populateDialectQuantSubmodule() argument 141 mlirQuantizedTypeCastExpressedToStorageType(type, candidate); in populateDialectQuantSubmodule()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | machine-outliner-bad-register.mir | 5 # across the outlining candidate. These values are allowed to be clobbered by, 13 ; A problematic register is live, but after the candidate. Safe for outlining. 16 ; A problematic register is live before the candidate, but killed before 17 ; entry to the candidate. Safe for outlining. 21 ; about are defined across the outlining candidate. 27 ; [candidate] (1) 29 ; [candidate] (2) 31 ; [candidate] (3)
|
| /llvm-project-15.0.7/llvm/utils/gn/build/ |
| H A D | write_vcsrevision.py | 19 candidate = os.path.join(path, program) 20 if os.path.isfile(candidate) and os.access(candidate, os.X_OK): 21 return candidate
|
| /llvm-project-15.0.7/clang/test/SemaObjCXX/ |
| H A D | arc-overloading.mm | 4 int &f0(id __strong const *); // expected-note{{candidate function not viable: 1st argument ('__wea… 39 int &f2(id __strong const *); // expected-note{{candidate function}} 40 float &f2(id __autoreleasing const *); // expected-note{{candidate function}} 58 int &f3(id __autoreleasing *); // expected-note{{candidate function not viable: 1st argument ('__un… 119 void f7(__strong id&); // expected-note{{candidate function not viable: 1st argument ('__weak id') … 120 …// expected-note{{candidate function not viable: 1st argument ('__autoreleasing id') has __autorel… 121 …// expected-note{{candidate function not viable: 1st argument ('__unsafe_unretained id') has __uns… 208 void f9790531(void *inClientData); // expected-note {{candidate function not viable: cannot implici… 209 void f9790531_1(struct S*inClientData); // expected-note {{candidate function not viable}} 210 void f9790531_2(char * inClientData); // expected-note {{candidate function not viable}}
|
| H A D | blocks.mm | 14 void bar3(id(*)()); // expected-note{{candidate function}} 19 void bar4(id(^)()); // expected-note{{candidate function}} 122 void f(int (^bl)(A* a)); // expected-note {{candidate function not viable: no known conversion from… 169 struct B1 { // expected-note 2 {{candidate constructor (the implicit}} 170 B1(B0&&); // expected-note {{candidate constructor not viable}}
|
| H A D | gc-attributes.mm | 6 void f0(__strong A **); // expected-note{{candidate function not viable: 1st argument ('A *__weak *… 15 void f1(__weak A **); // expected-note{{candidate function not viable: 1st argument ('A *__strong *…
|
| H A D | arc-nsconsumed-errors.mm | 32 void templateFunction(T) { } // expected-note {{candidate template ignored: could not match 'void (… 33 … // expected-note {{candidate template ignored: failed template argument deduction}} 37 void templateReleaser(__attribute__((ns_consumed)) T) { } // expected-note 2{{candidate template ig…
|
| /llvm-project-15.0.7/mlir/include/mlir-c/Dialect/ |
| H A D | Quant.h | 67 mlirQuantizedTypeIsCompatibleExpressedType(MlirType type, MlirType candidate); 78 mlirQuantizedTypeCastFromStorageType(MlirType type, MlirType candidate); 88 mlirQuantizedTypeCastFromExpressedType(MlirType type, MlirType candidate); 97 mlirQuantizedTypeCastExpressedToStorageType(MlirType type, MlirType candidate);
|
| /llvm-project-15.0.7/compiler-rt/lib/hwasan/ |
| H A D | hwasan_report.cpp | 302 uptr mem = ShadowToMem(reinterpret_cast<uptr>(candidate)); in ShowHeapOrGlobalCandidate() 310 } else if (candidate == left) { in ShowHeapOrGlobalCandidate() 346 candidate == left ? untagged_addr - (info.start + info.size) in ShowHeapOrGlobalCandidate() 348 candidate == left ? "right" : "left", info.size, info.name, in ShowHeapOrGlobalCandidate() 357 untagged_addr, candidate == left ? "right" : "left", mem, in ShowHeapOrGlobalCandidate() 428 tag_t *candidate = nullptr, *left = tag_ptr, *right = tag_ptr; in PrintAddressDescription() local 433 candidate = left; in PrintAddressDescription() 439 candidate = right; in PrintAddressDescription() 448 ShowHeapOrGlobalCandidate(untagged_addr, candidate, left, right); in PrintAddressDescription() 489 if (candidate && num_descriptions_printed == 0) { in PrintAddressDescription() [all …]
|
| /llvm-project-15.0.7/mlir/lib/Dialect/Affine/Transforms/ |
| H A D | AffineParallelize.cpp | 62 for (const ParallelizationCandidate &candidate : parallelizableLoops) { in runOnOperation() local 64 AffineForOp loop = candidate.loop; in runOnOperation() 73 if (failed(affineParallelize(loop, candidate.reductions))) { in runOnOperation()
|
| /llvm-project-15.0.7/llvm/lib/Target/Sparc/ |
| H A D | DelaySlotFiller.cpp | 77 bool delayHasHazard(MachineBasicBlock::iterator candidate, 229 bool Filler::delayHasHazard(MachineBasicBlock::iterator candidate, in delayHasHazard() argument 236 if (candidate->isImplicitDef() || candidate->isKill()) in delayHasHazard() 239 if (candidate->mayLoad()) { in delayHasHazard() 245 if (candidate->mayStore()) { in delayHasHazard() 253 for (unsigned i = 0, e = candidate->getNumOperands(); i!= e; ++i) { in delayHasHazard() 254 const MachineOperand &MO = candidate->getOperand(i); in delayHasHazard() 272 unsigned Opcode = candidate->getOpcode(); in delayHasHazard()
|
| /llvm-project-15.0.7/mlir/python/mlir/_mlir_libs/_mlir/dialects/ |
| H A D | quant.pyi | 50 def is_compatible_expressed_type(self, candidate: Type) -> bool: ... 55 def cast_from_storage_type(self, candidate: Type) -> Type: ... 60 def cast_from_expressed_type(self, candidate: Type) -> Type: ... 65 def cast_expressed_to_storage_type(self, candidate: Type) -> Type: ...
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | ReleaseProcess.rst | 24 * Test and benchmark each release candidate, comparing to the previous release 29 * Make sure the critical bugs get fixed and merged to the next release candidate 32 should be fixed before the next candidate and what can wait until the next 64 To run the script on a specific release candidate run:: 90 * On the final candidate you just need Release builds, and that's the binary 137 candidate. You don't need to fix all the bugs in the test-suite, since they're 186 When the Release Manager sends you the release candidate, download all sources, 192 * Download the current candidate sources from where the release manager points 201 Once the release manages announces that the latest candidate is the good one, 220 If you found regressions or failures when comparing a release candidate with the [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | GenericOptional.cpp | 107 ValueObjectSP candidate = in GetChildAtIndex() local 109 if (candidate) in GetChildAtIndex() 110 val_sp = candidate; in GetChildAtIndex()
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | using-directive.cpp | 10 expected-note{{candidate found by name lookup is 'A::B::E'}} 18 expected-note{{candidate found by name lookup is 'A::C::E'}}
|