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

1 2 3 4 5 6 7 8

  /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/svg/
SVGLength.h 95 bool isZero() const
108 if ((from.isZero() && isZero())
111 || (!from.isZero() && fromType != LengthTypePercentage && toType == LengthTypePercentage)
112 || (!isZero() && fromType == LengthTypePercentage && toType != LengthTypePercentage)
113 || (!from.isZero() && !isZero() && (fromType == LengthTypeEMS || fromType == LengthTypeEXS) && fromType != toType))
128 if (fromType == toType || from.isZero() || isZero() || fromType == LengthTypeEMS || fromType == LengthTypeEXS) {
131 if (isZero())
    [all...]
ColorDistance.h 39 bool isZero() const;
SVGTransformDistance.h 39 bool isZero() const;
ColorDistance.cpp 80 bool ColorDistance::isZero() const
  /external/chromium_org/third_party/WebKit/Source/core/platform/
LengthBox.h 95 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
Length.h 195 bool isZero() const
245 if (!from.isZero() && !isZero() && from.type() != type())
248 if (from.isZero() && isZero())
252 if (isZero())
256 float fromPercent = from.isZero() ? 0 : from.percent();
257 float toPercent = isZero() ? 0 : percent();
261 float fromValue = from.isZero() ? 0 : from.value();
262 float toValue = isZero() ? 0 : value()
    [all...]
Decimal.h 75 bool isZero() const { return m_formatClass == ClassZero; }
132 bool isZero() const { return m_data.isZero(); }
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FloatSize.cpp 53 bool FloatSize::isZero() const
IntRectExtent.h 67 bool isZero() const { return !left() && !right() && !top() && !bottom(); }
71 if (isZero())
RoundedRect.cpp 38 bool RoundedRect::Radii::isZero() const
40 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
RoundedRect.h 58 bool isZero() const;
82 bool isRounded() const { return !m_radii.isZero(); }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
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())
  /frameworks/native/services/surfaceflinger/
Transform.cpp 49 bool Transform::isZero(float f) {
54 return isZero(fabs(f) - 1.0f);
117 if (isZero(tx) && isZero(ty)) {
149 H.mType |= isZero(w) ? IDENTITY : TRANSLATE;
157 V.mType |= isZero(h) ? IDENTITY : TRANSLATE;
166 R.mType |= isZero(original_w) ? IDENTITY : TRANSLATE;
260 if (isZero(b) && isZero(c)) {
266 } else if (isZero(a) && isZero(d))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
Cone.cpp 47 if (sourceOrientation.isZero() || ((m_innerAngle == 360.0) && (m_outerAngle == 360.0)))
  /external/clang/lib/AST/
RecordLayout.cpp 79 assert(getVBaseClassOffset(PrimaryBase).isZero() &&
83 assert(getBaseClassOffset(PrimaryBase).isZero() &&
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 203 if (!C1I->isZero() && !C2I->isZero()) // One side must be zero.
680 if (!TrueVal->isZero() && !FalseVal->isZero()) {
703 ConstantInt *ValC = !TrueVal->isZero() ? TrueVal : FalseVal;
721 bool ShouldNotVal = !TrueVal->isZero();
779 if (FalseValC->isZero() && TrueValC->getValue() == 1)
783 if (FalseValC->isZero() && TrueValC->isAllOnesValue())
787 if (TrueValC->isZero() && FalseValC->getValue() == 1) {
793 if (TrueValC->isZero() && FalseValC->isAllOnesValue())
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 376 bool isZero() const { return category == fcZero; }
399 bool isFiniteNonZero() const { return isFinite() && !isZero(); }
400 bool isPosZero() const { return isZero() && !isNegative(); }
401 bool isNegZero() const { return isZero() && isNegative(); }
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 735 if (this.isZero()) {
739 if (augend.isZero()) {
742 } else if (augend.isZero()) {
792 if ((augend.isZero()) || (this.isZero())
839 if (this.isZero()) {
843 if (subtrahend.isZero()) {
846 } else if (subtrahend.isZero()) {
    [all...]
  /frameworks/base/libs/hwui/
Matrix.cpp 71 static bool isZero(float f) {
108 if ((isZero(m00) && isZero(m11) && !isZero(m01) && !isZero(m10)) ||
109 (isZero(m01) && isZero(m10) && !isZero(m00) && !isZero(m11))) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
BaseDateAndTimeInputType.cpp 130 if (step.remainder(msecPerMinute).isZero())
132 if (step.remainder(msecPerSecond).isZero())
  /external/chromium_org/third_party/WebKit/Source/web/tests/
DragImageTest.cpp 75 if (m_size.isZero())
ImageLayerChromiumTest.cpp 80 if (m_size.isZero())
  /external/chromium_org/third_party/skia/include/core/
SkSize.h 31 bool isZero() const {
  /external/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 66 if (typeSize.isZero())

Completed in 1334 milliseconds

1 2 3 4 5 6 7 8