HomeSort by relevance Sort by last modified time
    Searched refs:m_p4 (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FloatQuad.cpp 86 float left = min4(m_p1.x(), m_p2.x(), m_p3.x(), m_p4.x());
87 float top = min4(m_p1.y(), m_p2.y(), m_p3.y(), m_p4.y());
89 float right = max4(m_p1.x(), m_p2.x(), m_p3.x(), m_p4.x());
90 float bottom = max4(m_p1.y(), m_p2.y(), m_p3.y(), m_p4.y());
102 return (withinEpsilon(m_p1.x(), m_p2.x()) && withinEpsilon(m_p2.y(), m_p3.y()) && withinEpsilon(m_p3.x(), m_p4.x()) && withinEpsilon(m_p4.y(), m_p1.y()))
103 || (withinEpsilon(m_p1.y(), m_p2.y()) && withinEpsilon(m_p2.x(), m_p3.x()) && withinEpsilon(m_p3.y(), m_p4.y()) && withinEpsilon(m_p4.x(), m_p1.x()));
108 return isPointInTriangle(p, m_p1, m_p2, m_p3) || isPointInTriangle(p, m_p1, m_p3, m_p4);
151 v3 = m_p4 - m_p3
    [all...]
FloatQuad.h 51 , m_p4(p4)
59 , m_p4(inRect.x(), inRect.maxY())
66 FloatPoint p4() const { return m_p4; }
71 void setP4(const FloatPoint& p) { m_p4 = p; }
103 return FloatPoint((m_p1.x() + m_p2.x() + m_p3.x() + m_p4.x()) / 4.0,
104 (m_p1.y() + m_p2.y() + m_p3.y() + m_p4.y()) / 4.0);
118 m_p4 += offset;
126 m_p4.move(dx, dy);
134 m_p4.scale(dx, dy);
145 FloatPoint m_p4; member in class:WebCore::FloatQuad
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Functional.h 460 , m_p4(ParamStorageTraits<P4>::wrap(p4))
466 return m_functionWrapper(ParamStorageTraits<P1>::unwrap(m_p1), ParamStorageTraits<P2>::unwrap(m_p2), ParamStorageTraits<P3>::unwrap(m_p3), ParamStorageTraits<P4>::unwrap(m_p4));
474 typename ParamStorageTraits<P4>::StorageType m_p4; member in class:WTF::BoundFunctionImpl
485 , m_p4(ParamStorageTraits<P4>::wrap(p4))
492 return m_functionWrapper(ParamStorageTraits<P1>::unwrap(m_p1), ParamStorageTraits<P2>::unwrap(m_p2), ParamStorageTraits<P3>::unwrap(m_p3), ParamStorageTraits<P4>::unwrap(m_p4), ParamStorageTraits<P5>::unwrap(m_p5));
500 typename ParamStorageTraits<P4>::StorageType m_p4; member in class:WTF::BoundFunctionImpl
512 , m_p4(ParamStorageTraits<P4>::wrap(p4))
520 return m_functionWrapper(ParamStorageTraits<P1>::unwrap(m_p1), ParamStorageTraits<P2>::unwrap(m_p2), ParamStorageTraits<P3>::unwrap(m_p3), ParamStorageTraits<P4>::unwrap(m_p4), ParamStorageTraits<P5>::unwrap(m_p5), ParamStorageTraits<P6>::unwrap(m_p6));
528 typename ParamStorageTraits<P4>::StorageType m_p4; member in class:WTF::BoundFunctionImpl

Completed in 213 milliseconds