Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaOpenMP.cpp7417 bool StrictlyPositive) { in IsNonNegativeIntegerValue() argument
7431 !((!StrictlyPositive && Result.isNonNegative()) || in IsNonNegativeIntegerValue()
7432 (StrictlyPositive && Result.isStrictlyPositive()))) { in IsNonNegativeIntegerValue()
7434 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in IsNonNegativeIntegerValue()
7460 bool StrictlyPositive) { in VerifyPositiveIntegerConstantInClause() argument
7470 if ((StrictlyPositive && !Result.isStrictlyPositive()) || in VerifyPositiveIntegerConstantInClause()
7471 (!StrictlyPositive && !Result.isNonNegative())) { in VerifyPositiveIntegerConstantInClause()
7473 << getOpenMPClauseName(CKind) << (StrictlyPositive ? 1 : 0) in VerifyPositiveIntegerConstantInClause()
/external/clang/include/clang/Sema/
DSema.h7931 bool StrictlyPositive = true);