Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp14148 bool StrictlyPositive, bool BuildCapture = false, in isNonNegativeIntegerValue() argument
14165 !((!StrictlyPositive && Result->isNonNegative()) || in isNonNegativeIntegerValue()
14166 (StrictlyPositive && Result->isStrictlyPositive()))) { in isNonNegativeIntegerValue()
14168 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in isNonNegativeIntegerValue()
14217 bool StrictlyPositive, in VerifyPositiveIntegerConstantInClause() argument
14244 if ((StrictlyPositive && !Result.isStrictlyPositive()) || in VerifyPositiveIntegerConstantInClause()
14245 (!StrictlyPositive && !Result.isNonNegative())) { in VerifyPositiveIntegerConstantInClause()
14247 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in VerifyPositiveIntegerConstantInClause()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10252 bool StrictlyPositive = true,