Searched refs:isPositive (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/lib/Basic/
H A DWarnings.cpp35 bool isPositive) {
38 Diags.Report(isPositive? diag::warn_unknown_warning_option_suggest :
42 Diags.Report(isPositive? diag::warn_unknown_warning_option :
101 bool isPositive = true; local
103 isPositive = false;
110 isPositive ? diag::Severity::Warning : diag::Severity::Ignored;
116 Diags.setSuppressSystemWarnings(!isPositive);
124 if (isPositive) {
150 Diags.setWarningsAsErrors(isPositive);
156 Diags.setDiagnosticGroupWarningAsError(Specifier, isPositive);
33 EmitUnknownDiagWarning(DiagnosticsEngine &Diags, StringRef Prefix, StringRef Opt, bool isPositive) argument
[all...]
/external/clang/test/Analysis/
H A Dtest-after-div-zero.c137 int getValue(bool *isPositive);
140 bool isPositive; local
141 int x = getValue(&isPositive);
142 if (isPositive) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DGridPosition.h53 bool isPositive() const { return integerPosition() > 0; } function in class:blink::GridPosition
H A DGridResolvedPosition.cpp149 if (position.isPositive())
156 if (position.isPositive())
173 if (position.isPositive())
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DFixedTableLayout.cpp121 if ((colStyleLogicalWidth.isFixed() || colStyleLogicalWidth.isPercent()) && colStyleLogicalWidth.isPositive()) {
150 if (logicalWidth.isFixed() && logicalWidth.isPositive()) {
186 if (tableLogicalWidth.isFixed() && tableLogicalWidth.isPositive())
H A DAutoTableLayout.cpp98 if (cellLogicalWidth.isPositive() && !columnLayout.logicalWidth.isPercent()) {
115 if (cellLogicalWidth.isPositive() && (!columnLayout.logicalWidth.isPercent() || cellLogicalWidth.value() > columnLayout.logicalWidth.value()))
254 if (tableLogicalWidth.isFixed() && tableLogicalWidth.isPositive()) {
H A DRenderTable.cpp267 if ((styleLogicalWidth.isSpecified() && styleLogicalWidth.isPositive()) || styleLogicalWidth.isIntrinsic())
324 if (isCSSTable && styleLogicalWidth.isSpecified() && styleLogicalWidth.isPositive() && style()->boxSizing() == CONTENT_BOX)
489 if (logicalHeightLength.isIntrinsic() || (logicalHeightLength.isSpecified() && logicalHeightLength.isPositive()))
H A DRenderTableSection.cpp61 if (logicalHeight.isPositive()) {
H A DRenderBlock.cpp1273 || style()->logicalMinHeight().isPositive()
/external/eigen/test/
H A Dcholesky.cpp327 VERIFY(!ldlt.isPositive());
333 VERIFY(!ldlt.isPositive());
339 VERIFY(ldlt.isPositive());
345 VERIFY(ldlt.isPositive());
351 VERIFY(!ldlt.isPositive());
369 VERIFY_RAISES_ASSERT(ldlt.isPositive())
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimal.h131 bool isPositive() const { return sign() == Positive; } function in class:blink::Decimal
H A DDecimal.cpp547 return !result.isZero() && result.isPositive();
633 return isPositive() ? Decimal(1) : zero(Positive);
636 if (isPositive() && !isMultiplePowersOfTen(m_data.coefficient(), numberOfDropDigits))
674 return isPositive() ? zero(Positive) : Decimal(-1);
H A DLength.h257 bool isPositive() const function in class:blink::Length
H A DDecimalTest.cpp830 EXPECT_TRUE(Decimal::zero(Positive).isPositive());
838 EXPECT_FALSE(Decimal::zero(Negative).isPositive());
846 EXPECT_TRUE(Decimal(123).isPositive());
854 EXPECT_FALSE(Decimal(-123).isPositive());
865 EXPECT_TRUE(Decimal::infinity(Positive).isPositive());
873 EXPECT_FALSE(Decimal::infinity(Negative).isPositive());
/external/chromium_org/third_party/icu/source/i18n/
H A Ddigitlst.h327 UBool isPositive(void) const { return decNumberIsNegative(fDecNumber) == 0;} function in class:DigitList
H A Ddigitlst.cpp449 if (!isPositive()) {
H A Ddecimfmt.cpp1597 isNegative = !adjustedNum.isPositive();
1753 int32_t prefixLen = appendAffix(appendTo, doubleValue, handler, !digits.isPositive(), TRUE);
2046 int32_t suffixLen = appendAffix(appendTo, doubleValue, handler, !digits.isPositive(), FALSE);
2206 result.setDouble(digits->isPositive() ? inf : -inf);
2236 if (digits->isZero() && !digits->isPositive() && isParseIntegerOnly()) {
/external/clang/include/clang/AST/
H A DCharUnits.h121 /// isPositive - Test whether the quantity is greater than zero.
122 bool isPositive() const { return Quantity > 0; } function in class:clang::CharUnits
/external/icu/icu4c/source/i18n/
H A Ddigitlst.h327 UBool isPositive(void) const { return decNumberIsNegative(fDecNumber) == 0;} function in class:DigitList
H A Ddigitlst.cpp445 if (!isPositive()) {
H A Ddecimfmt.cpp1679 isNegative = !adjustedNum.isPositive();
1842 int32_t prefixLen = appendAffix(appendTo, doubleValue, handler, !digits.isPositive(), TRUE);
2135 int32_t suffixLen = appendAffix(appendTo, doubleValue, handler, !digits.isPositive(), FALSE);
2295 result.setDouble(digits->isPositive() ? inf : -inf);
2325 if (digits->isZero() && !digits->isPositive() && isParseIntegerOnly()) {
/external/eigen/Eigen/src/Cholesky/
H A DLDLT.h149 inline bool isPositive() const function in class:Eigen::LDLT
158 return isPositive();
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp981 assert(Adjustment.isPositive());
1019 assert(StaticOffset.isPositive());
1090 assert(Adjustment.isPositive());
H A DCGClass.cpp103 if (Offset.isPositive()) {
/external/clang/lib/AST/
H A DASTContext.cpp4778 if (sz.isPositive() && type->isIntegralOrEnumerationType())
4817 assert (sz.isPositive() && "BlockExpr - Incomplete param type");
4861 assert (sz.isPositive() &&
4928 assert (sz.isPositive() &&

Completed in 4234 milliseconds

12