Searched defs:isZero (Results 1 - 25 of 49) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatSize.cpp49 bool FloatSize::isZero() const function in class:blink::FloatSize
H A DFloatBoxExtent.h67 bool isZero() const { return !left() && !right() && !top() && !bottom(); } function in class:blink::FloatBoxExtent
71 if (isZero())
H A DIntRectExtent.h67 bool isZero() const { return !left() && !right() && !top() && !bottom(); } function in class:blink::IntRectExtent
71 if (isZero())
H A DFloatRoundedRect.cpp54 bool FloatRoundedRect::Radii::isZero() const function in class:blink::FloatRoundedRect::Radii
56 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
H A DIntSize.h55 bool isZero() const { return !m_width && !m_height; } function in class:blink::IntSize
H A DFloatPoint3D.h87 bool isZero() const function in class:blink::FloatPoint3D
H A DLayoutSize.h60 bool isZero() const { return !m_width && !m_height; } function in class:blink::LayoutSize
H A DRoundedRect.cpp36 bool RoundedRect::Radii::isZero() const function in class:blink::RoundedRect::Radii
38 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
H A DFloatRect.h84 bool isZero() const { return m_size.isZero(); } function in class:blink::FloatRect
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBorderImageLength.h70 bool isZero() const function in class:blink::BorderImageLength
72 return (isLength() && m_length.isZero()) || (isNumber() && m_number);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGLength.h88 bool isZero() const function in class:blink::FINAL
/external/chromium_org/third_party/skia/include/core/
H A DSkSize.h31 bool isZero() const { function in struct:SkTSize
H A DSkPixelRef.h84 bool isZero() const { function in struct:SkPixelRef::LockRec
/external/skia/include/core/
H A DSkSize.h31 bool isZero() const { function in struct:SkTSize
H A DSkPixelRef.h83 bool isZero() const { function in struct:SkPixelRef::LockRec
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimal.h76 bool isZero() const { return m_formatClass == ClassZero; } function in class:blink::Decimal::EncodedData
133 bool isZero() const { return m_data.isZero(); } function in class:blink::Decimal
H A DLength.h249 bool isZero() const function in class:blink::Length
302 if (!from.isZero() && !isZero() && from.type() != type())
305 if (from.isZero() && isZero())
309 if (isZero())
/external/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp190 return isZero(BOE->getRHS());
211 return isZero(cast<OpaqueValueExpr>(BO->getRHS())->getSourceExpr());
214 bool isZero(Expr *E) { function in class:__anon17704::ZeroOutInDeallocRemover
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECFieldElement.java30 public boolean isZero() method in class:ECFieldElement
1100 public boolean isZero() method in class:ECFieldElement.F2m
1102 return x.isZero();
H A DIntArray.java131 public boolean isZero() method in class:IntArray
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFont.h73 bool isZero() const function in struct:blink::GlyphOverflow
/external/clang/include/clang/AST/
H A DCharUnits.h115 /// isZero - Test whether the quantity equals zero.
116 bool isZero() const { return Quantity == 0; } function in class:clang::CharUnits
/external/clang/lib/StaticAnalyzer/Checkers/
H A DTestAfterDivZeroChecker.cpp91 bool isZero(SVal S, CheckerContext &C) const;
138 bool TestAfterDivZeroChecker::isZero(SVal S, CheckerContext &C) const { function in class:TestAfterDivZeroChecker
209 if (!isZero(S, C))
/external/deqp/framework/common/
H A DtcuFloat.hpp115 inline StorageType mantissa (void) const { return isZero() || isDenorm() ? mantissaBits() : (mantissaBits() | (StorageType(1)<<MantissaBits)); }
119 inline bool isZero (void) const { return exponentBits() == 0 && mantissaBits() == 0; } function in class:tcu::Float
258 else if (other.isZero())
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h482 bool DenseBase<Derived>::isZero(const RealScalar& prec) const function in class:Eigen::DenseBase

Completed in 1341 milliseconds

12