Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaOpenMP.cpp11619 bool StrictlyPositive, bool BuildCapture = false, in isNonNegativeIntegerValue() argument
11636 !((!StrictlyPositive && Result.isNonNegative()) || in isNonNegativeIntegerValue()
11637 (StrictlyPositive && Result.isStrictlyPositive()))) { in isNonNegativeIntegerValue()
11639 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in isNonNegativeIntegerValue()
11687 bool StrictlyPositive) { in VerifyPositiveIntegerConstantInClause() argument
11697 if ((StrictlyPositive && !Result.isStrictlyPositive()) || in VerifyPositiveIntegerConstantInClause()
11698 (!StrictlyPositive && !Result.isNonNegative())) { in VerifyPositiveIntegerConstantInClause()
11700 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in VerifyPositiveIntegerConstantInClause()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
HDSema.h9647 bool StrictlyPositive = true);