Home
last modified time | relevance | path

Searched refs:Cl (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/
H A DExprClassification.cpp51 kind = (kind == Cl::CL_LValue ? Cl::CL_AddressableVoid : Cl::CL_Void); in ClassifyImpl()
56 case Cl::CL_LValue: in ClassifyImpl()
59 case Cl::CL_XValue: in ClassifyImpl()
63 case Cl::CL_Void: in ClassifyImpl()
71 case Cl::CL_PRValue: in ClassifyImpl()
76 Cl::ModifiableType modifiable = Cl::CM_Untested; in ClassifyImpl()
241 ? Cl::CL_PRValue : Cl::CL_LValue; in ClassifyInternal()
278 return Lang.CPlusPlus ? Cl::CL_LValue : Cl::CL_PRValue; in ClassifyInternal()
474 return islvalue ? Cl::CL_LValue : Cl::CL_PRValue; in ClassifyDecl()
500 ? Cl::CL_PRValue : Cl::CL_LValue); in ClassifyMemberExpr()
[all …]
/llvm-project-15.0.7/llvm/test/TableGen/
H A Dself-reference-typeerror.td4 class Cl<Cl rec> {
5 Cl Arec = rec;
12 // CHECK: alue specified for template argument 'Cl:rec'
14 def Rec0 : Cl<Rec0>;
/llvm-project-15.0.7/llvm/unittests/Frontend/
H A DOpenACCTest.cpp214 for (Clause Cl : AllowedClauses) { in expectAllowedClauses() local
215 EXPECT_TRUE(isAllowedClauseForDirective(Dir, Cl, Version)); in expectAllowedClauses()
216 AllowedClausesSet.insert(Cl); in expectAllowedClauses()
219 for (Clause Cl : AllClauses) { in expectAllowedClauses() local
220 if (!AllowedClausesSet.contains(Cl)) { in expectAllowedClauses()
221 EXPECT_FALSE(isAllowedClauseForDirective(Dir, Cl, Version)); in expectAllowedClauses()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp1211 FoundationClass Cl = findKnownClass(Interface); in checkPostObjCMessage() local
1216 if (Cl == FC_NSArray || Cl == FC_NSOrderedSet) { in checkPostObjCMessage()
1225 if (Cl == FC_NSNull) { in checkPostObjCMessage()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp8489 for (const auto *Cl : Clauses) { in generateAllInfoForClauses() local
8490 const auto *C = dyn_cast<OMPMapClause>(Cl); in generateAllInfoForClauses()
8509 for (const auto *Cl : Clauses) { in generateAllInfoForClauses() local
8510 const auto *C = dyn_cast<OMPToClause>(Cl); in generateAllInfoForClauses()
8525 for (const auto *Cl : Clauses) { in generateAllInfoForClauses() local
8526 const auto *C = dyn_cast<OMPFromClause>(Cl); in generateAllInfoForClauses()
8553 for (const auto *Cl : Clauses) { in generateAllInfoForClauses() local
8554 const auto *C = dyn_cast<OMPUseDevicePtrClause>(Cl); in generateAllInfoForClauses()
8639 for (const auto *Cl : Clauses) { in generateAllInfoForClauses() local
8640 const auto *C = dyn_cast<OMPUseDeviceAddrClause>(Cl); in generateAllInfoForClauses()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOpenMP.cpp5374 for (OMPClause *Cl : PrivateRange) { in checkAllocateClauses()
5376 if (Cl->getClauseKind() == OMPC_private) { in checkAllocateClauses()
5377 auto *PC = cast<OMPPrivateClause>(Cl); in checkAllocateClauses()
5382 auto *PC = cast<OMPFirstprivateClause>(Cl); in checkAllocateClauses()
5387 auto *PC = cast<OMPLastprivateClause>(Cl); in checkAllocateClauses()
5391 } else if (Cl->getClauseKind() == OMPC_linear) { in checkAllocateClauses()
5392 auto *PC = cast<OMPLinearClause>(Cl); in checkAllocateClauses()
5396 } else if (Cl->getClauseKind() == OMPC_reduction) { in checkAllocateClauses()
5397 auto *PC = cast<OMPReductionClause>(Cl); in checkAllocateClauses()
5402 auto *PC = cast<OMPTaskReductionClause>(Cl); in checkAllocateClauses()
[all …]