Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp16655 bool StrictlyPositive, bool BuildCapture = false, in isNonNegativeIntegerValue() argument
16672 !((!StrictlyPositive && Result->isNonNegative()) || in isNonNegativeIntegerValue()
16673 (StrictlyPositive && Result->isStrictlyPositive()))) { in isNonNegativeIntegerValue()
16675 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in isNonNegativeIntegerValue()
16724 bool StrictlyPositive, in VerifyPositiveIntegerConstantInClause() argument
16751 if ((StrictlyPositive && !Result.isStrictlyPositive()) || in VerifyPositiveIntegerConstantInClause()
16752 (!StrictlyPositive && !Result.isNonNegative())) { in VerifyPositiveIntegerConstantInClause()
16754 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in VerifyPositiveIntegerConstantInClause()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11416 bool StrictlyPositive = true,