HomeSort by relevance Sort by last modified time
    Searched refs:Y1 (Results 1 - 25 of 31) sorted by null

1 2

  /external/clang/test/CXX/temp/temp.param/
p11.cpp 2 template<typename> struct Y1;
9 template<template<class> class = Y1, // expected-note{{previous default template argument defined here}}
p10.cpp 3 template<typename> struct Y1;
9 template<template<class, int> class, template<class> class = Y1> class B2t;
p12.cpp 2 template<typename> struct Y1; // expected-note{{too few template parameters in template template argument}}
15 template<class> class = Y1> // expected-note{{previous default template argument defined here}}
21 template<class> class = Y1> // expected-error{{template parameter redefines default argument}}
36 = Y1> // expected-error{{template template argument has different template parameters than its corresponding template template parameter}}
p10-0x.cpp 4 template<typename> struct Y1;
10 template<template<class> class F, template<class> class G = Y1> using B2t = F<G<int>>;
p2.cpp 13 template<typename T, typename X<T>::type Value> struct Y1;
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p1.cpp 23 struct Y1 { }; //
29 struct Y1 { };
33 struct Z : public X<T>::template Y1<U> { };
  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 25 struct Y1 { // has no implicit default constructor
26 Y1(int);
29 struct Y2 : Y1 {
virtual-override.cpp 214 template <typename T1, typename T> class Y1 : public Y<T> { virtual T1 f(); };
215 Y1<Derived*, Base*> y;
constant-expression-cxx11.cpp 64 struct Y1 : virtual X {};
66 struct Z : Y1, Y2 {};
68 static_assert((X*)(Y1*)&z != (X*)(Y2*)&z, "");
    [all...]
  /external/clang/test/CXX/class.access/class.friend/
p3-cxx0x.cpp 7 class Y1 { };
9 X0<Y1> x0a;
10 X0<Y1 *> x0b;
16 friend typename T::type; // expected-error{{no type named 'type' in 'Y1'}}
29 X1<Y1> x1c; // expected-note{{in instantiation of template class 'X1<Y1>' requested here}}
  /external/clang/test/Sema/
warn-unused-variables.c 29 (void)(Y1 + X1); // expected-error {{use of undeclared identifier 'Y1'}}
  /external/clang/test/SemaTemplate/
instantiate-static-var.cpp 47 struct Y1 {
70 Z1<Y1<X1>::value> x;
71 int y[Y1<X1>::value];
  /external/llvm/unittests/IR/
DominatorTreeTest.cpp 33 Instruction *Y1 = BBI++;
109 EXPECT_FALSE(DT->dominates(Y1, Y1));
110 EXPECT_TRUE(DT->dominates(Y1, Y2));
111 EXPECT_FALSE(DT->dominates(Y2, Y1));
130 EXPECT_TRUE(DT->dominates(Y1, Y6));
134 EXPECT_FALSE(DT->dominates(Y6, Y1));
137 EXPECT_FALSE(DT->dominates(Y1, BB0));
138 EXPECT_TRUE(DT->dominates(Y1, BB1));
139 EXPECT_TRUE(DT->dominates(Y1, BB2))
    [all...]
  /external/clang/test/CXX/over/over.over/
p1.cpp 85 template<float(float)> struct Y1 { };
91 Y1<f0> y1; variable
92 Y1<&f0> y1a;
  /external/webkit/Source/WebCore/svg/
SVGLineElement.h 60 DECLARE_ANIMATED_LENGTH(Y1, y1)
SVGLinearGradientElement.h 54 DECLARE_ANIMATED_LENGTH(Y1, y1)
SVGLineElement.cpp 37 DEFINE_ANIMATED_LENGTH(SVGLineElement, SVGNames::y1Attr, Y1, y1)
156 path.moveTo(FloatPoint(x1().value(this), y1().value(this)));
163 || y1().isRelative()
SVGLinearGradientElement.cpp 44 DEFINE_ANIMATED_LENGTH(SVGLinearGradientElement, SVGNames::y1Attr, Y1, y1)
172 attributes.setY1(linear->y1());
204 startPoint = FloatPoint(attributes.x1().valueAsPercentage(), attributes.y1().valueAsPercentage());
207 startPoint = FloatPoint(attributes.x1().value(this), attributes.y1().value(this));
215 || y1().isRelative()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
SHA1Digest.java 127 private static final int Y1 = 0x5a827999;
183 // E = rotateLeft(A, 5) + f(B, C, D) + E + X[idx++] + Y1
185 E += (A << 5 | A >>> 27) + f(B, C, D) + X[idx++] + Y1;
188 D += (E << 5 | E >>> 27) + f(A, B, C) + X[idx++] + Y1;
191 C += (D << 5 | D >>> 27) + f(E, A, B) + X[idx++] + Y1;
194 B += (C << 5 | C >>> 27) + f(D, E, A) + X[idx++] + Y1;
197 A += (B << 5 | B >>> 27) + f(C, D, E) + X[idx++] + Y1;
  /external/dropbear/libtommath/
bn_mp_karatsuba_mul.c 49 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
68 if (mp_init_size (&y1, b->used - B) != MP_OKAY)
73 goto Y1;
82 y1.used = b->used - B;
106 tmpy = y1.dp;
113 * upper words x1/y1 must have a known number of digits
122 if (mp_mul (&x1, &y1, &x1y1) != MP_OKAY)
123 goto X1Y1; /* x1y1 = x1*y1 */
125 /* now calc x1+x0 and y1+y0 */
128 if (s_mp_add (&y1, &y0, &x0) != MP_OKAY
    [all...]
  /external/opencv/cv/src/
cvoptflowbm.cpp 139 int Y1 = 0;
348 Y1 = 0;
389 icvCopyBM_8u_C1R( imgB + (Y1 + offY)*imgStep + (X1 + offX),
401 icvCopyBM_8u_C1R( imgB + (Y1 + offY) * imgStep + (X1 + offX), imgStep,
433 int Y2 = Y1 + offY + ss[k].y;
467 icvCopyBM_8u_C1R( imgB + Y1 * imgStep + X1, imgStep,
522 Y1 += blockSize.height;
  /external/skia/legacy/src/core/
SkLineClipper.cpp 22 double Y1 = src[1].fY;
23 double result = X0 + ((double)Y - Y0) * (X1 - X0) / (Y1 - Y0);
44 double Y1 = src[1].fY;
45 double result = Y0 + ((double)X - X0) * (Y1 - Y0) / (X1 - X0);
  /external/skia/src/core/
SkLineClipper.cpp 37 double Y1 = src[1].fY;
38 double result = X0 + ((double)Y - Y0) * (X1 - X0) / (Y1 - Y0);
63 double Y1 = src[1].fY;
64 double result = Y0 + ((double)X - X0) * (Y1 - Y0) / (X1 - X0);
  /external/clang/test/CXX/class.access/
p4.cpp 359 struct Y1 {
364 const X &xr = Y1(); // expected-error{{temporary of type 'test14::X' has private destructor}}
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 158 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
163 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,

Completed in 924 milliseconds

1 2