HomeSort by relevance Sort by last modified time
    Searched defs:cy (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/chromium_org/v8/test/webkit/fast/js/
regexp-unicode-handling.js 39 function cy(a) { function
56 shouldBe("cy('Re: Moose')", "'Moose'")
57 shouldBe("cy('\\u8f6c\\u53d1: Moose')", "'Moose'")
  /external/chromium_org/v8/test/webkit/
gmail-re-re.js 36 function cy(a) { function
53 shouldBe('cy("Re: Hello")', '"Hello"');
54 shouldBe('cy("?????: Hello")', '"Hello"');
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_geometry.h 34 double cx,cy,m; local
36 cx=0;cy=0;
40 cy+= *X++;
46 c[1]=cy*m;
54 double cx,cy,m; local
57 cx=0;cy=0;
62 cy+=temp[1];
68 c[1]=cy*m;
78 double cx,cy,cz,m; local
80 cx=0;cy=0;cz=0
100 double cx,cy,cz,m; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGCircleElement.h 37 SVGAnimatedLength* cy() const { return m_cy.get(); } function in class:blink::FINAL
SVGEllipseElement.h 37 SVGAnimatedLength* cy() const { return m_cy.get(); } function in class:blink::FINAL
SVGRadialGradientElement.h 40 SVGAnimatedLength* cy() const { return m_cy.get(); } function in class:blink::FINAL
SVGTransform.cpp 121 void SVGTransform::setRotate(float angle, float cx, float cy)
125 m_center = FloatPoint(cx, cy);
127 // TODO: toString() implementation, which can show cx, cy (need to be stored?)
129 m_matrix.translate(cx, cy);
131 m_matrix.translate(-cx, -cy);
212 float cy = narrowPrecisionToFloat(cosAngle != 1 ? (m_matrix.e() * sinAngle / (1 - cosAngle) + m_matrix.f()) / 2 : 0); local
213 if (cx || cy)
214 return prefix + String::number(m_angle) + ' ' + String::number(cx) + ' ' + String::number(cy) + ')';
  /external/chromium_org/third_party/skia/src/svg/
SkSVGCircle.cpp 17 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;
SkSVGEllipse.cpp 17 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/skia/experimental/Intersection/
QuadraticSubDivide.cpp 48 double cy = dst[2].y = interp_quad_coords(&src[0].y, t2); local
50 /* by = */ dst[1].y = 2*dy - (ay + cy)/2;
CubicParameterization_TestUtility.cpp 13 double ay, by, cy, dy; local
15 alt_set_abcd(&cubic[0].y, ay, by, cy, dy);
17 set_abcd(&cubic[0].y, ay, by, cy, dy);
20 if (!try_alt) calc_bc(dy, by, cy);
28 double cy = cubic[2].y;
30 calc_ABCD(ax, bx, cx, dx, ay, by, cy, dy, coeffs);
34 coeffs[index] = (*calc_proc[procIndex])(ax, bx, cx, dx, ay, by, cy, dy);
EdgeWalkerQuadratic4x4_Test.cpp 25 int cy = state.c >> 2; local
43 path.quadTo(bx, by, cx, cy);
53 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
  /external/chromium_org/third_party/cython/src/Cython/Build/Tests/
TestInline.py 44 import cython as cy namespace
46 b = cy.declare(float, a)
47 c = cy.declare(cy.pointer(cy.float), &b)
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
arc.h 40 VGfloat cx, cy; member in struct:arc
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_clip_tmp.h 60 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 + cw < 0) mask |= CLIP_TOP_BIT
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/tests/
InfRectTest.cpp 43 int cy = r.centerY(); local
45 REPORTER_ASSERT(reporter, ((r.top() + r.bottom()) >> 1) == cy);
PathOpsSimplifyTrianglesThreadedTest.cpp 24 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/mesa3d/src/gallium/state_trackers/vega/
arc.h 40 VGfloat cx, cy; member in struct:arc
  /external/mesa3d/src/mesa/math/
m_clip_tmp.h 60 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 + cw < 0) mask |= CLIP_TOP_BIT
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/WebKit/Source/platform/animation/
UnitBezier.h 43 cy = 3.0 * p1y;
44 by = 3.0 * (p2y - p1y) - cy;
45 ay = 1.0 - cy - by;
86 return ((ay * t + by) * t + cy) * t;
156 double cy; member in struct:blink::UnitBezier
  /external/chromium_org/third_party/skia/gm/
downsamplebitmap.cpp 146 int cy = (y * fNumChecks) / fSize; variable
147 if ((cx+cy)%2) {
filterbitmap.cpp 53 SkScalar cy = SkScalarHalf(fBM.height()); local
58 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(scale, scale);
167 int cy = (y * fNumChecks) / fSize; variable
168 if ((cx+cy)%2) {
filterindiabox.cpp 51 SkScalar cy = SkScalarHalf(fBM.height()); local
57 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(horizScale, vertScale);
inversepaths.cpp 14 static SkPath generate_square(SkScalar cx, SkScalar cy, SkScalar w) {
15 SkRect rect = SkRect::MakeXYWH(cx - w / 2, cy - w / 2, w, w);
21 static SkPath generate_rect_line(SkScalar cx, SkScalar cy, SkScalar l) {
22 SkRect rect = SkRect::MakeXYWH(cx - l / 2, cy, l, 0);
28 static SkPath generate_circle(SkScalar cx, SkScalar cy, SkScalar d) {
30 path.addCircle(cx, cy, d/2, SkPath::kCW_Direction);
34 static SkPath generate_line(SkScalar cx, SkScalar cy, SkScalar l) {
36 path.moveTo(cx - l / 2, cy);
37 path.lineTo(cx + l / 2, cy);
87 SkScalar cy = slideHeight / 2 + slideBoundary local
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SampleBlur.cpp 33 const float cy = bm.height() * 0.5f; local
35 float dy = y - cy;

Completed in 867 milliseconds

1 2 3 4