HomeSort by relevance Sort by last modified time
    Searched refs:isZero (Results 1 - 25 of 207) sorted by null

1 2 3 4 5 6 7 8 9

  /external/eigen/doc/snippets/
MatrixBase_isZero.cpp 4 cout << "m.isZero() returns: " << m.isZero() << endl;
5 cout << "m.isZero(1e-3) returns: " << m.isZero(1e-3) << endl;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderImageLengthBox.h 87 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
BorderImageLength.h 70 bool isZero() const
72 return (isLength() && m_length.isZero()) || (isNumber() && m_number);
BorderData.h 52 if (!m_topLeft.width().isZero())
54 if (!m_topRight.width().isZero())
56 if (!m_bottomLeft.width().isZero())
58 if (!m_bottomRight.width().isZero())
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthBox.h 95 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
Decimal.h 76 bool isZero() const { return m_formatClass == ClassZero; }
133 bool isZero() const { return m_data.isZero(); }
Length.h 249 bool isZero() const
302 if (!from.isZero() && !isZero() && from.type() != type())
305 if (from.isZero() && isZero())
309 if (isZero())
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatSize.cpp 49 bool FloatSize::isZero() const
IntRectExtent.h 67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
71 if (isZero())
FloatRoundedRect.cpp 54 bool FloatRoundedRect::Radii::isZero() const
56 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
FloatBoxExtent.h 67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
71 if (isZero())
RoundedRect.cpp 36 bool RoundedRect::Radii::isZero() const
38 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
FloatRoundedRect.h 69 bool isZero() const;
90 bool isRounded() const { return !m_radii.isZero(); }
RoundedRect.h 60 bool isZero() const;
84 bool isRounded() const { return !m_radii.isZero(); }
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
Cone.cpp 47 if (sourceOrientation.isZero() || ((m_innerAngle == 360.0) && (m_outerAngle == 360.0)))
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLength.cpp 395 if ((from->isZero() && isZero())
398 || (!from->isZero() && fromType != LengthTypePercentage && toType == LengthTypePercentage)
399 || (!isZero() && fromType == LengthTypePercentage && toType != LengthTypePercentage)
400 || (!from->isZero() && !isZero() && (fromType == LengthTypeEMS || fromType == LengthTypeEXS) && fromType != toType))
412 if (fromType == toType || from->isZero() || isZero() || fromType == LengthTypeEMS || fromType == LengthTypeEXS) {
415 if (isZero())
SVGLength.h 88 bool isZero() const
  /external/chromium_org/third_party/skia/src/core/
SkPixelRef.cpp 144 SkASSERT(fRec.isZero());
150 SkASSERT(!rec.isZero()); // else why did onNewLock return true?
176 SkASSERT(fRec.isZero());
  /external/clang/lib/AST/
RecordLayout.cpp 93 assert(getVBaseClassOffset(PrimaryBase).isZero() &&
97 assert(getBaseClassOffset(PrimaryBase).isZero() &&
  /external/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 78 if (FlexSize.isZero())
125 if (typeSize.isZero())
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 265 return x == null || y == null || (zs.length > 0 && zs[0].isZero());
548 if (dx.isZero())
550 if (dy.isZero())
583 if (v.isZero())
585 if (u.isZero())
624 if (dx.isZero())
626 if (dy.isZero())
683 if (H.isZero())
685 if (R.isZero())
756 if (Y1.isZero())
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 377 bool isZero() const { return category == fcZero; }
400 bool isFiniteNonZero() const { return isFinite() && !isZero(); }
401 bool isPosZero() const { return isZero() && !isNegative(); }
402 bool isNegZero() const { return isZero() && isNegative(); }
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 79 if (Pred == ICmpInst::ICMP_SGT && (C1->isZero() || C1->isMinusOne())) {
85 if (Pred == ICmpInst::ICMP_SLT && (C1->isZero() || C1->isOne())) {
227 if (!C1I->isZero() && !C2I->isZero()) // One side must be zero.
771 if (!TrueVal->isZero() && !FalseVal->isZero()) {
794 ConstantInt *ValC = !TrueVal->isZero() ? TrueVal : FalseVal;
812 bool ShouldNotVal = !TrueVal->isZero();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseDateAndTimeInputType.cpp 136 if (step.remainder(msecPerMinute).isZero())
138 if (step.remainder(msecPerSecond).isZero())
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
RotateTransformOperation.cpp 48 bool fromZero = !from || from->axis().isZero();
49 bool toZero = !to || to->axis().isZero();

Completed in 1020 milliseconds

1 2 3 4 5 6 7 8 9