Home
last modified time | relevance | path

Searched refs:m_z (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
DFloatPoint3D.h35 , m_z(0) in FloatPoint3D()
42 , m_z(z) in FloatPoint3D()
49 , m_z(0) in FloatPoint3D()
56 , m_z(p.z()) in FloatPoint3D()
66 float z() const { return m_z; } in z()
67 void setZ(float z) { m_z = z; } in setZ()
72 m_z = z; in set()
78 m_z += dz; in move()
84 m_z *= sz; in scale()
89 return !m_x && !m_y && !m_z; in isZero()
[all …]
DFloatPoint3D.cpp37 m_z /= tempLength; in normalize()
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
DRotateTransformOperation.cpp39 … return RotateTransformOperation::create(m_x, m_y, m_z, m_angle - m_angle * progress, m_type); in blend()
44 if (!fromOp || (fromOp->m_x == 0 && fromOp->m_y == 0 && fromOp->m_z == 1) || in blend()
45 (fromOp->m_x == 0 && fromOp->m_y == 1 && fromOp->m_z == 0) || in blend()
46 (fromOp->m_x == 1 && fromOp->m_y == 0 && fromOp->m_z == 0)) { in blend()
50 fromOp ? fromOp->m_z : m_z, in blend()
61 (fromOp ? fromOp->m_z : 1), in blend()
66 (toOp ? toOp->m_z : 1), in blend()
DScaleTransformOperation.h46 double z() const { return m_z; } in z()
49 virtual bool isIdentity() const { return m_x == 1 && m_y == 1 && m_z == 1; } in isIdentity()
58 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z;
63 transform.scale3d(m_x, m_y, m_z); in apply()
71 , m_z(sz) in ScaleTransformOperation()
79 double m_z; variable
DTranslateTransformOperation.h48 double z(const FloatSize&) const { return floatValueForLength(m_z, 1); } in z()
52 Length z() const { return m_z; } in z()
55 …urn !floatValueForLength(m_x, 1) && !floatValueForLength(m_y, 1) && !floatValueForLength(m_z, 1); } in isIdentity()
64 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
82 , m_z(tz) in TranslateTransformOperation()
90 Length m_z; variable
DRotateTransformOperation.h46 double z() const { return m_z; } in z()
59 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
64 transform.rotate3d(m_x, m_y, m_z, m_angle); in apply()
72 , m_z(z) in RotateTransformOperation()
81 double m_z; variable
DScaleTransformOperation.cpp37 WebCore::blend(m_z, 1.0, progress), m_type); in blend()
42 double fromZ = fromOp ? fromOp->m_z : 1.0; in blend()
45 WebCore::blend(fromZ, m_z, progress), m_type); in blend()
DTranslateTransformOperation.cpp34 …angeAll), zeroLength.blend(m_y, progress, ValueRangeAll), zeroLength.blend(m_z, progress, ValueRan… in blend()
39 Length fromZ = fromOp ? fromOp->m_z : zeroLength; in blend()
40 …romX, progress, ValueRangeAll), m_y.blend(fromY, progress, ValueRangeAll), m_z.blend(fromZ, progre… in blend()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DStyleTransformData.cpp33 , m_z(RenderStyle::initialTransformOriginZ()) in StyleTransformData()
42 , m_z(o.m_z) in StyleTransformData()
48 return m_x == o.m_x && m_y == o.m_y && m_z == o.m_z && m_operations == o.m_operations; in operator ==()
DStyleTransformData.h49 float m_z; variable
DRenderStyle.h836 float transformOriginZ() const { return rareNonInheritedData->m_transform->m_z; } in transformOriginZ()
1297 … void setTransformOriginZ(float f) { SET_VAR(rareNonInheritedData.access()->m_transform, m_z, f); } in setTransformOriginZ()
/external/chromium_org/tools/android/memconsumer/
Dmemconsumer_hook.cc21 static uint32_t m_z = 1; in get_random() local
22 m_z = 36969 * (m_z & 65535) + (m_z >> 16); in get_random()
24 return (m_z << 16) + m_w; in get_random()
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DDeviceMotionData.h51 double z() const { return m_z; } in z()
58 double m_z; variable
DDeviceMotionData.cpp42 , m_z(z) in Acceleration()