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

1 2 3 4 5 6

  /external/webkit/Source/WebCore/platform/
LengthBox.h 82 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
Length.h 163 bool isZero() const
180 if (!from.isZero() && !isZero() && from.type() != type())
183 if (from.isZero() && isZero())
187 if (isZero())
191 float fromPercent = from.isZero() ? 0 : from.percent();
192 float toPercent = isZero() ? 0 : percent();
196 float fromValue = from.isZero() ? 0 : from.value();
197 float toValue = isZero() ? 0 : value()
    [all...]
  /external/webkit/Source/WebCore/svg/
ColorDistance.h 39 bool isZero() const;
SVGTransformDistance.h 41 bool isZero() const;
ColorDistance.cpp 80 bool ColorDistance::isZero() const
  /external/webkit/Source/WebKit2/UIProcess/
DrawingAreaProxy.cpp 48 if (m_size == size && scrollOffset.isZero())
  /external/webkit/Source/WebKit/chromium/src/
DragScrollTimer.h 59 bool shouldScroll() const { return !m_lastDistance.isZero(); }
  /frameworks/base/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;
264 if (isZero(b) && isZero(c)) {
270 } else if (isZero(a) && isZero(d))
    [all...]
Transform.h 118 static bool isZero(float f);
  /external/webkit/Source/WebCore/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())
  /external/webkit/Source/WebCore/platform/graphics/
RoundedIntRect.cpp 37 bool RoundedIntRect::Radii::isZero() const
39 return m_topLeft.isZero() && m_topRight.isZero() && m_bottomLeft.isZero() && m_bottomRight.isZero();
RoundedIntRect.h 57 bool isZero() const;
81 bool isRounded() const { return !m_radii.isZero(); }
  /external/webkit/Source/WebCore/platform/audio/
Cone.cpp 47 if (sourceOrientation.isZero() || ((m_innerAngle == 360.0) && (m_outerAngle == 360.0)))
  /external/webkit/Source/WebKit/chromium/tests/
DragImageTest.cpp 73 if (m_size.isZero())
107 EXPECT_TRUE(dragImageSize(0).isZero());
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 197 if (!C1I->isZero() && !C2I->isZero()) // One side must be zero.
603 if (!TrueVal->isZero() && !FalseVal->isZero()) {
626 ConstantInt *ValC = !TrueVal->isZero() ? TrueVal : FalseVal;
638 bool ShouldNotVal = !TrueVal->isZero();
688 if (FalseValC->isZero() && TrueValC->getValue() == 1)
692 if (FalseValC->isZero() && TrueValC->isAllOnesValue())
696 if (TrueValC->isZero() && FalseValC->getValue() == 1) {
702 if (TrueValC->isZero() && FalseValC->isAllOnesValue())
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 776 if (this.isZero()) {
780 if (augend.isZero()) {
783 } else if (augend.isZero()) {
833 if ((augend.isZero()) || (this.isZero())
    [all...]
  /external/clang/lib/AST/
RecordLayout.cpp 78 assert(getVBaseClassOffset(PrimaryBase).isZero() &&
  /external/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 66 if (typeSize.isZero())
  /external/skia/include/core/
SkSize.h 24 bool isZero() const {
  /external/skia/src/effects/
SkRectShape.cpp 63 } else if (fRadii.isZero()) {
  /external/llvm/include/llvm/ADT/
APFloat.h 321 bool isZero() const { return category == fcZero; }
326 bool isPosZero() const { return isZero() && !isNegative(); }
327 bool isNegZero() const { return isZero() && isNegative(); }
  /external/webkit/Source/WebCore/webaudio/
AudioPannerNode.cpp 171 if (sourceListener.isZero()) {
239 bool sourceHasVelocity = !sourceVelocity.isZero();
240 bool listenerHasVelocity = !listenerVelocity.isZero();
  /external/icu4c/i18n/
digitlst.h 277 UBool isZero(void) const;
  /external/webkit/Source/WebKit2/UIProcess/win/
BackingStoreWin.cpp 102 if (scrollOffset.isZero())
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 95 bool isValid() const { return !NonVirtualSize.isZero(); }
389 assert(!NextFieldOffset.isZero() && "Must have laid out at least one byte");
406 assert(!numBytesToAppend.isZero() && "No bytes to append!");
567 if (unionAlign.isZero()) {
684 assert(NextFieldOffset.isZero() &&
751 assert(!Alignment.isZero() && "Did not set alignment!");
868 assert(!numBytes.isZero() && "Empty byte arrays aren't allowed.");
878 if (numBytes.isZero())
    [all...]

Completed in 1070 milliseconds

1 2 3 4 5 6