Searched defs:m_z (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleTransformData.h49 float m_z; member in class:WebCore::StyleTransformData
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
H A DRotateTransformOperation.h46 double z() const { return m_z; }
60 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
65 transform.rotate3d(m_x, m_y, m_z, m_angle);
74 , m_z(z)
83 double m_z; member in class:WebCore::RotateTransformOperation
H A DScaleTransformOperation.h46 double z() const { return m_z; }
49 virtual bool isIdentity() const { return m_x == 1 && m_y == 1 && m_z == 1; }
59 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z;
64 transform.scale3d(m_x, m_y, m_z);
73 , m_z(sz)
81 double m_z; member in class:WebCore::ScaleTransformOperation
H A DTranslateTransformOperation.h48 double z(const FloatSize&) const { return floatValueForLength(m_z, 1); }
52 Length z() const { return m_z; }
55 virtual bool isIdentity() const { return !floatValueForLength(m_x, 1) && !floatValueForLength(m_y, 1) && !floatValueForLength(m_z, 1); }
65 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
79 , m_z(tz)
87 Length m_z; member in class:WebCore::TranslateTransformOperation
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DFloatPoint3D.h35 , m_z(0)
42 , m_z(z)
49 , m_z(0)
56 , m_z(p.z())
66 float z() const { return m_z; }
67 void setZ(float z) { m_z = z; }
72 m_z = z;
78 m_z += dz;
84 m_z *= sz;
89 return !m_x && !m_y && !m_z;
129 float m_z; member in class:WebCore::FloatPoint3D
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceMotionData.h51 double z() const { return m_z; }
58 double m_z; member in class:WebCore::DeviceMotionData::Acceleration

Completed in 973 milliseconds