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

1 2

  /external/webkit/WebCore/platform/
LengthBox.h 74 return !(m_left.isZero() && m_right.isZero() && m_top.isZero() && m_bottom.isZero());
Length.h 154 bool isZero() const { return !(m_value & ~0xF); }
168 if (!from.isZero() && !isZero() && from.type() != type())
171 if (from.isZero() && isZero())
175 if (isZero())
179 double fromPercent = from.isZero() ? 0. : from.percent();
180 double toPercent = isZero() ? 0. : percent();
184 int fromValue = from.isZero() ? 0 : from.value();
185 int toValue = isZero() ? 0 : value()
    [all...]
  /external/webkit/WebCore/svg/
ColorDistance.h 41 bool isZero() const;
SVGTransformDistance.h 43 bool isZero() const;
ColorDistance.cpp 81 bool ColorDistance::isZero() const
SVGTransformDistance.cpp 252 bool SVGTransformDistance::isZero() const
  /frameworks/base/services/surfaceflinger/
Transform.cpp 84 bool Transform::isZero(float f) {
89 return isZero(fabs(f) - 1.0f);
152 if (isZero(tx) && isZero(ty)) {
184 H.mType |= isZero(w) ? IDENTITY : TRANSLATE;
192 V.mType |= isZero(h) ? IDENTITY : TRANSLATE;
201 R.mType |= isZero(original_w) ? IDENTITY : TRANSLATE;
297 if (isZero(b) && isZero(c)) {
303 } else if (isZero(a) && isZero(d))
    [all...]
Transform.h 118 static bool isZero(float f);
  /external/chromium/third_party/icu/source/i18n/
digitlst.h 190 UBool isZero(void) const;
digitlst.cpp 663 DigitList::isZero() const
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 796 if (this.isZero()) {
800 if (augend.isZero()) {
803 } else if (augend.isZero()) {
855 if ((augend.isZero()) || (this.isZero())
    [all...]
  /external/icu4c/i18n/
digitlst.h 275 UBool isZero(void) const;
digitlst.cpp 400 if (isZero()) {
847 DigitList::isZero() const
  /external/skia/include/core/
SkSize.h 24 bool isZero() const {
Sk64.h 75 SkBool isZero() const { return (fHi | fLo) == 0; }
  /external/webkit/JavaScriptCore/wtf/
Vector3.h 71 bool isZero() const
  /external/webkit/WebCore/platform/graphics/
IntSize.h 76 bool isZero() const { return !m_width && !m_height; }
  /external/skia/tests/
Sk64Test.cpp 12 REPORTER_ASSERT(reporter, a.isZero() != a.nonZero());
14 REPORTER_ASSERT(reporter, !a.isZero() == !table.zero);
  /external/webkit/WebCore/rendering/
RenderWidget.cpp 271 if (!paintOffset.isZero()) {
277 if (!paintOffset.isZero())
RenderMarquee.cpp 156 if (m_timer.isActive() || m_layer->renderer()->style()->marqueeIncrement().isZero()
AutoTableLayout.cpp 180 if ((w.isFixed() || w.isPercent()) && w.isZero())
317 if (!w.isRelative() && w.isZero())
RenderBox.cpp     [all...]
RenderObject.cpp 677 if (!layer->xPosition().isZero() || !layer->yPosition().isZero())
    [all...]
  /external/skia/src/core/
Sk64.cpp 354 if (D.isZero())
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 45 static inline bool isZero(double d)
394 if (isZero(transform.m_sinA)) {
409 } else if (isZero(transform.m_cosA)) {
487 if (rectBeforeTransform && !isZero(m_data->m_transform.b())) {
    [all...]

Completed in 593 milliseconds

1 2