Searched defs:cy (Results 1 - 25 of 96) sorted by relevance

1234

/external/chromium_org/v8/test/webkit/fast/js/
H A Dregexp-unicode-handling.js39 function cy(a) { function
56 shouldBe("cy('Re: Moose')", "'Moose'")
57 shouldBe("cy('\\u8f6c\\u53d1: Moose')", "'Moose'")
/external/chromium_org/v8/test/webkit/
H A Dgmail-re-re.js36 function cy(a) { function
53 shouldBe('cy("Re: Hello")', '"Hello"');
54 shouldBe('cy("Ответ: Hello")', '"Hello"');
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGCircle.cpp17 SVG_ATTRIBUTE(cy),
26 SkScalar cx, cy, r; local
28 SkParse::FindScalar(f_cy.c_str(), &cy);
32 top = cy - r;
34 bottom = cy + r;
H A DSkSVGEllipse.cpp17 SVG_ATTRIBUTE(cy),
27 SkScalar cx, cy, rx, ry; local
29 SkParse::FindScalar(f_cy.c_str(), &cy);
34 top = cy - ry;
36 bottom = cy + ry;
/external/skia/src/svg/
H A DSkSVGCircle.cpp17 SVG_ATTRIBUTE(cy),
26 SkScalar cx, cy, r; local
28 SkParse::FindScalar(f_cy.c_str(), &cy);
32 top = cy - r;
34 bottom = cy + r;
H A DSkSVGEllipse.cpp17 SVG_ATTRIBUTE(cy),
27 SkScalar cx, cy, rx, ry; local
29 SkParse::FindScalar(f_cy.c_str(), &cy);
34 top = cy - ry;
36 bottom = cy + ry;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Darc.h40 VGfloat cx, cy; member in struct:arc
/external/mesa3d/src/gallium/state_trackers/vega/
H A Darc.h40 VGfloat cx, cy; member in struct:arc
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTransformDistance.cpp38 SVGTransformDistance::SVGTransformDistance(SVGTransform::SVGTransformType type, float angle, float cx, float cy, const AffineTransform& transform) argument
42 , m_cy(cy)
H A DRadialGradientAttributes.h41 SVGLength cy() const { return m_cy; } function in struct:WebCore::RadialGradientAttributes
H A DSVGTransform.cpp97 void SVGTransform::setRotate(float angle, float cx, float cy) argument
101 m_center = FloatPoint(cx, cy);
103 // TODO: toString() implementation, which can show cx, cy (need to be stored?)
105 m_matrix.translate(cx, cy);
107 m_matrix.translate(-cx, -cy);
184 float cy = narrowPrecisionToFloat(cosAngle != 1 ? (m_matrix.e() * sinAngle / (1 - cosAngle) + m_matrix.f()) / 2 : 0); local
185 if (cx || cy)
186 return prefix + String::number(m_angle) + ' ' + String::number(cx) + ' ' + String::number(cy) + ')';
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DUnitBezier.h43 cy = 3.0 * p1y;
44 by = 3.0 * (p2y - p1y) - cy;
45 ay = 1.0 - cy - by;
56 return ((ay * t + by) * t + cy) * t;
126 double cy; member in struct:WebCore::UnitBezier
/external/chromium_org/third_party/mesa/src/src/mesa/math/
H A Dm_clip_tmp.h60 const GLfloat cy = from[1]; local
68 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
78 if (-cy + cw < 0) mask |= CLIP_TOP_BIT;
79 if ( cy + cw < 0) mask |= CLIP_BOTTOM_BIT;
98 vProj[i][1] = cy * oow;
140 const GLfloat cy = from[1]; local
148 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
149 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
158 if (-cy
195 const GLfloat cx = from[0], cy = from[1], cz = from[2]; local
231 const GLfloat cx = from[0], cy = from[1]; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkBlitBWMaskTemplate.h31 int cy = clip.fTop; local
41 const uint8_t* bits = srcMask.getAddr1(cx, cy);
42 SK_BLITBWMASK_DEVTYPE* device = bitmap.SK_BLITBWMASK_GETADDR(cx, cy);
/external/mesa3d/src/mesa/math/
H A Dm_clip_tmp.h60 const GLfloat cy = from[1]; local
68 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
78 if (-cy + cw < 0) mask |= CLIP_TOP_BIT;
79 if ( cy + cw < 0) mask |= CLIP_BOTTOM_BIT;
98 vProj[i][1] = cy * oow;
140 const GLfloat cy = from[1]; local
148 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
149 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
158 if (-cy
195 const GLfloat cx = from[0], cy = from[1], cz = from[2]; local
231 const GLfloat cx = from[0], cy = from[1]; local
[all...]
/external/skia/src/core/
H A DSkBlitBWMaskTemplate.h31 int cy = clip.fTop; local
41 const uint8_t* bits = srcMask.getAddr1(cx, cy);
42 SK_BLITBWMASK_DEVTYPE* device = bitmap.SK_BLITBWMASK_GETADDR(cx, cy);
/external/skia/tests/
H A DInfRectTest.cpp46 int cy = r.centerY(); local
48 REPORTER_ASSERT(reporter, ((r.top() + r.bottom()) >> 1) == cy);
H A DPathOpsSimplifyDegenerateThreadedTest.cpp23 int cy = state.fC >> 2; local
41 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
51 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
81 int cy = c >> 2; local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
H A DPathOpsSimplifyQuadThreadedTest.cpp24 int cy = state.fC >> 2; local
43 SkIntToScalar(cx), SkIntToScalar(cy));
55 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
H A DPathOpsSimplifyQuadralateralsThreadedTest.cpp24 int cy = state.fC >> 2; local
43 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
56 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp24 int cy = state.fC >> 2; local
44 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
54 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
89 int cy = c >> 2; local
90 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32window.cc50 DWORD exstyle, int x, int y, int cx, int cy) {
71 x, y, cx, cy, parent, NULL, instance_, this);
49 Create(HWND parent, const wchar_t* title, DWORD style, DWORD exstyle, int x, int y, int cx, int cy) argument
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dwin32window.cc50 DWORD exstyle, int x, int y, int cx, int cy) {
79 x, y, cx, cy, parent, NULL, instance_, this);
49 Create(HWND parent, const wchar_t* title, DWORD style, DWORD exstyle, int x, int y, int cx, int cy) argument
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkSweepGradient.cpp11 SkSweepGradient::SkSweepGradient(SkScalar cx, SkScalar cy, argument
14 , fCenter(SkPoint::Make(cx, cy))
16 fPtsToUnit.setTranslate(-cx, -cy);
/external/pixman/pixman/
H A Dpixman-conical-gradient.c68 double cy = 0.; local
89 cy = image->common.transform->matrix[1][0] / 65536.;
119 ry += cy;
154 ry += cy;

Completed in 652 milliseconds

1234