Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOpenMP.cpp8925 bool StrictlyPositive) { in isNonNegativeIntegerValue() argument
8939 !((!StrictlyPositive && Result.isNonNegative()) || in isNonNegativeIntegerValue()
8940 (StrictlyPositive && Result.isStrictlyPositive()))) { in isNonNegativeIntegerValue()
8942 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in isNonNegativeIntegerValue()
8979 bool StrictlyPositive) { in VerifyPositiveIntegerConstantInClause() argument
8989 if ((StrictlyPositive && !Result.isStrictlyPositive()) || in VerifyPositiveIntegerConstantInClause()
8990 (!StrictlyPositive && !Result.isNonNegative())) { in VerifyPositiveIntegerConstantInClause()
8992 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in VerifyPositiveIntegerConstantInClause()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h8685 bool StrictlyPositive = true);