Searched defs:Y0 (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dtemplate-id-expr.cpp50 struct Y0 { struct
65 Y0::template f1<U>(0);
66 Y0::template f1(0);
69 Y0::template f2<U>(0);
70 Y0::template f2(0);
72 Y0::template f3(0); // expected-error {{'f3' following the 'template' keyword does not refer to a template}}
73 Y0::template f3(); // expected-error {{'f3' following the 'template' keyword does not refer to a template}}
76 x = Y0::f4(0);
77 x = Y0::f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}}
78 x = Y0
[all...]
/external/clang/test/CXX/over/over.over/
H A Dp1.cpp84 template<int(int)> struct Y0 { }; struct
89 Y0<f0> y0;
90 Y0<&f0> y0a;
/external/skia/legacy/src/core/
H A DSkLineClipper.cpp20 double Y0 = src[0].fY; local
23 double result = X0 + ((double)Y - Y0) * (X1 - X0) / (Y1 - Y0);
42 double Y0 = src[0].fY; local
45 double result = Y0 + ((double)X - X0) * (Y1 - Y0) / (X1 - X0);
/external/skia/src/core/
H A DSkLineClipper.cpp35 double Y0 = src[0].fY; local
38 double result = X0 + ((double)Y - Y0) * (X1 - X0) / (Y1 - Y0);
61 double Y0 = src[0].fY; local
64 double result = Y0 + ((double)X - X0) * (Y1 - Y0) / (X1 - X0);

Completed in 64 milliseconds