/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | BorderImageLengthBox.h | 87 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero()); in nonZero()
|
D | BorderData.h | 52 if (!m_topLeft.width().isZero()) in hasBorderRadius() 54 if (!m_topRight.width().isZero()) in hasBorderRadius() 56 if (!m_bottomLeft.width().isZero()) in hasBorderRadius() 58 if (!m_bottomRight.width().isZero()) in hasBorderRadius()
|
D | BorderImageLength.h | 70 bool isZero() const in isZero() function 72 return (isLength() && m_length.isZero()) || (isNumber() && m_number); in isZero()
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | LengthBox.h | 95 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero()); in nonZero()
|
D | Length.h | 249 bool isZero() const in isZero() function 302 if (!from.isZero() && !isZero() && from.type() != type()) in blend() 305 if (from.isZero() && isZero()) in blend() 309 if (isZero()) in blend()
|
D | Decimal.h | 76 bool isZero() const { return m_formatClass == ClassZero; } in isZero() function 133 bool isZero() const { return m_data.isZero(); } in isZero() function
|
D | Decimal.cpp | 442 return rhs.isZero() ? nan() : infinity(resultSign); in operator *() 445 return lhs.isZero() ? nan() : infinity(resultSign); in operator *() 480 if (rhs.isZero()) in operator /() 481 return lhs.isZero() ? nan() : infinity(resultSign); in operator /() 485 if (lhs.isZero()) in operator /() 511 return m_data == rhs.m_data || compareTo(rhs).isZero(); in operator ==() 521 return !result.isZero(); in operator !=() 529 return !result.isZero() && result.isNegative(); in operator <() 539 return result.isZero() || result.isNegative(); in operator <=() 547 return !result.isZero() && result.isPositive(); in operator >() [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
D | FloatRoundedRect.cpp | 54 bool FloatRoundedRect::Radii::isZero() const in isZero() function in blink::FloatRoundedRect::Radii 56 …return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero(… in isZero()
|
D | RoundedRect.cpp | 36 bool RoundedRect::Radii::isZero() const in isZero() function in blink::RoundedRect::Radii 38 …return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero(… in isZero()
|
D | IntRectExtent.h | 67 bool isZero() const { return !left() && !right() && !top() && !bottom(); } in isZero() function 71 if (isZero()) in expandRect()
|
D | FloatRoundedRectTest.cpp | 94 EXPECT_TRUE(r.radii().isZero()); in TEST() 117 EXPECT_TRUE(r.radii().isZero()); in TEST() 130 EXPECT_FALSE(r.radii().isZero()); in TEST()
|
D | FloatBoxExtent.h | 67 bool isZero() const { return !left() && !right() && !top() && !bottom(); } in isZero() function 71 if (isZero()) in expandRect()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
D | ECPoint.java | 265 return x == null || y == null || (zs.length > 0 && zs[0].isZero()); in isInfinity() 548 if (dx.isZero()) in add() 550 if (dy.isZero()) in add() 583 if (v.isZero()) in add() 585 if (u.isZero()) in add() 624 if (dx.isZero()) in add() 626 if (dy.isZero()) in add() 683 if (H.isZero()) in add() 685 if (R.isZero()) in add() 756 if (Y1.isZero()) in twice() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGLength.cpp | 395 if ((from->isZero() && isZero()) in blend() 398 || (!from->isZero() && fromType != LengthTypePercentage && toType == LengthTypePercentage) in blend() 399 || (!isZero() && fromType == LengthTypePercentage && toType != LengthTypePercentage) in blend() 400 …|| (!from->isZero() && !isZero() && (fromType == LengthTypeEMS || fromType == LengthTypeEXS) && fr… in blend() 412 …if (fromType == toType || from->isZero() || isZero() || fromType == LengthTypeEMS || fromType == L… in blend() 415 if (isZero()) in blend()
|
/external/eigen/doc/snippets/ |
D | MatrixBase_isZero.cpp | 4 cout << "m.isZero() returns: " << m.isZero() << endl; 5 cout << "m.isZero(1e-3) returns: " << m.isZero(1e-3) << endl;
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 79 if (Pred == ICmpInst::ICMP_SGT && (C1->isZero() || C1->isMinusOne())) { in MatchSelectPattern() 85 if (Pred == ICmpInst::ICMP_SLT && (C1->isZero() || C1->isOne())) { in MatchSelectPattern() 227 if (!C1I->isZero() && !C2I->isZero()) // One side must be zero. in isSelect01() 771 if (!TrueVal->isZero() && !FalseVal->isZero()) { in foldSelectICmpAnd() 794 ConstantInt *ValC = !TrueVal->isZero() ? TrueVal : FalseVal; in foldSelectICmpAnd() 812 bool ShouldNotVal = !TrueVal->isZero(); in foldSelectICmpAnd() 870 if (FalseValC->isZero() && TrueValC->getValue() == 1) in visitSelectInst() 874 if (FalseValC->isZero() && TrueValC->isAllOnesValue()) in visitSelectInst() 878 if (TrueValC->isZero() && FalseValC->getValue() == 1) { in visitSelectInst() 884 if (TrueValC->isZero() && FalseValC->isAllOnesValue()) { in visitSelectInst() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
D | DateTimeEditElement.cpp | 138 || !stepRange().minimum().remainder(static_cast<int>(msPerSecond)).isZero() in needMillisecondField() 139 || !stepRange().step().remainder(static_cast<int>(msPerSecond)).isZero(); in needMillisecondField() 361 … hourPartOfMinimum == m_dateValue.hour() && stepRange().step().remainder(decimalMsPerDay).isZero(); in shouldHourFieldDisabled() 370 …rSecond) == m_dateValue.millisecond() && stepRange().step().remainder(decimalMsPerSecond).isZero(); in shouldMillisecondFieldDisabled() 380 …tePartOfMinimum == m_dateValue.minute() && stepRange().step().remainder(decimalMsPerHour).isZero(); in shouldMinuteFieldDisabled() 390 …PartOfMinimum == m_dateValue.second() && stepRange().step().remainder(decimalMsPerMinute).isZero(); in shouldSecondFieldDisabled() 421 ASSERT(!msPerFieldUnitDecimal.isZero()); in createStep() 422 ASSERT(!msPerFieldSizeDecimal.isZero()); in createStep() 423 ASSERT(!stepMilliseconds.isZero()); in createStep() 427 if (stepMilliseconds.remainder(msPerFieldSizeDecimal).isZero()) in createStep() [all …]
|
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 377 bool isZero() const { return category == fcZero; } in isZero() function 400 bool isFiniteNonZero() const { return isFinite() && !isZero(); } in isFiniteNonZero() 401 bool isPosZero() const { return isZero() && !isNegative(); } in isPosZero() 402 bool isNegZero() const { return isZero() && isNegative(); } in isNegZero()
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkPixelRef.cpp | 144 SkASSERT(fRec.isZero()); in lockPixels() 150 SkASSERT(!rec.isZero()); // else why did onNewLock return true? in lockPixels() 176 SkASSERT(fRec.isZero()); in unlockPixels()
|
/external/skia/src/core/ |
D | SkPixelRef.cpp | 189 SkASSERT(fRec.isZero()); in lockPixels() 195 SkASSERT(!rec.isZero()); // else why did onNewLock return true? in lockPixels() 221 SkASSERT(fRec.isZero()); in unlockPixels()
|
/external/clang/lib/ARCMigrate/ |
D | TransZeroOutPropsInDealloc.cpp | 190 return isZero(BOE->getRHS()); in isZeroingPropIvar() 211 return isZero(cast<OpaqueValueExpr>(BO->getRHS())->getSourceExpr()); in isZeroingPropIvar() 214 bool isZero(Expr *E) { in isZero() function in __anon2c1f1f400111::ZeroOutInDeallocRemover
|
/external/clang/lib/AST/ |
D | RecordLayout.cpp | 93 assert(getVBaseClassOffset(PrimaryBase).isZero() && in ASTRecordLayout() 97 assert(getBaseClassOffset(PrimaryBase).isZero() && in ASTRecordLayout()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CastSizeChecker.cpp | 78 if (FlexSize.isZero()) in evenFlexibleArraySize() 125 if (typeSize.isZero()) in checkPreStmt()
|
/external/llvm/include/llvm/Support/ |
D | ScaledNumber.h | 544 bool isZero() const { return !Digits; } in isZero() function 576 bool operator!() const { return isZero(); } 801 if (isZero()) 803 if (X.isZero()) 818 if (isZero()) 820 if (X.isZero()) 833 if (!Shift || isZero()) in shiftLeft() 864 if (!Shift || isZero()) in shiftRight()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | BaseDateAndTimeInputType.cpp | 136 if (step.remainder(msecPerMinute).isZero()) in serializeWithComponents() 138 if (step.remainder(msecPerSecond).isZero()) in serializeWithComponents()
|