Home
last modified time | relevance | path

Searched refs:candidate (Results 1 – 25 of 155) sorted by relevance

1234567

/llvm-project-15.0.7/clang/test/SemaOpenCLCXX/
H A Daddress-space-lambda.clcpp16 …__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 Dmethod-overload-address-space.clcpp5 //expected-note@-1{{candidate function}}
7 //expected-note@-1{{candidate function}}
H A Daddrspace-constructors.clcpp22 //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 DTypoCorrection.h301 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 Dredecl-merge.m30 // 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 Dtest_categories.py49 candidate = None
53 if candidate:
55 candidate = item
56 return candidate
/llvm-project-15.0.7/mlir/lib/CAPI/Dialect/
H A DQuant.cpp73 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 Dqueue_t_overload.cl3 …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 Devent_t_overload.cl3 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 DMemRefDataFlowOpt.cpp58 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 DDialectQuant.cpp75 [](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 Dmachine-outliner-bad-register.mir5 # 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 Dwrite_vcsrevision.py19 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 Darc-overloading.mm4 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 Dblocks.mm14 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 Dgc-attributes.mm6 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 Darc-nsconsumed-errors.mm32 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 DQuant.h67 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 Dhwasan_report.cpp302 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 DAffineParallelize.cpp62 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 DDelaySlotFiller.cpp77 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 Dquant.pyi50 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 DReleaseProcess.rst24 * 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 DGenericOptional.cpp107 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 Dusing-directive.cpp10 expected-note{{candidate found by name lookup is 'A::B::E'}}
18 expected-note{{candidate found by name lookup is 'A::C::E'}}

1234567