Home
last modified time | relevance | path

Searched refs:StrictlyPositive (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOpenMP.cpp16182 bool StrictlyPositive, bool BuildCapture = false, in isNonNegativeIntegerValue() argument
16199 !((!StrictlyPositive && Result->isNonNegative()) || in isNonNegativeIntegerValue()
16200 (StrictlyPositive && Result->isStrictlyPositive()))) { in isNonNegativeIntegerValue()
16202 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in isNonNegativeIntegerValue()
16251 bool StrictlyPositive, in VerifyPositiveIntegerConstantInClause() argument
16278 if ((StrictlyPositive && !Result.isStrictlyPositive()) || in VerifyPositiveIntegerConstantInClause()
16279 (!StrictlyPositive && !Result.isNonNegative())) { in VerifyPositiveIntegerConstantInClause()
16281 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in VerifyPositiveIntegerConstantInClause()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h10625 bool StrictlyPositive = true,