Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp13810 bool StrictlyPositive, bool BuildCapture = false, in isNonNegativeIntegerValue() argument
13827 !((!StrictlyPositive && Result->isNonNegative()) || in isNonNegativeIntegerValue()
13828 (StrictlyPositive && Result->isStrictlyPositive()))) { in isNonNegativeIntegerValue()
13830 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in isNonNegativeIntegerValue()
13879 bool StrictlyPositive) { in VerifyPositiveIntegerConstantInClause() argument
13890 if ((StrictlyPositive && !Result.isStrictlyPositive()) || in VerifyPositiveIntegerConstantInClause()
13891 (!StrictlyPositive && !Result.isNonNegative())) { in VerifyPositiveIntegerConstantInClause()
13893 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in VerifyPositiveIntegerConstantInClause()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h10183 bool StrictlyPositive = true);