/external/clang/test/CXX/temp/temp.param/ |
p10-0x.cpp | 4 template<typename, int> struct Y2; 10 template<template<class> class F = Y2, template<class> class G> using B2t = F<G<int>>; 12 template<int N, int M = 5> using B2n = Y2<int, N + M>; 13 template<int N = 5, int M> using B2n = Y2<int, N + M>;
|
p10.cpp | 3 template<typename, int> struct Y2; 9 template<template<class, int> class = Y2, template<class> class> class B2t;
|
p11.cpp | 3 template<typename, int> struct Y2;
|
p2.cpp | 20 template<class X1 *xptr> struct Y2 { };
|
p12.cpp | 3 template<typename, int> struct Y2;
|
/external/clang/test/SemaCXX/ |
default-constructor-initializers.cpp | 29 struct Y2 : Y1 { 30 Y2(int); 31 Y2(); 34 struct Y3 : public Y2 { 39 Y2 y2; member in struct:Y4
|
typedef-redecl.cpp | 16 typedef int Y2; // expected-note{{declared here}} 17 struct Y2; // expected-error{{definition of type 'Y2' conflicts with typedef of the same name}}
|
/external/clang/test/CXX/class.access/class.friend/ |
p3-cxx0x.cpp | 19 struct Y2 { 27 X1<Y2> x1a;
|
/external/clang/test/SemaTemplate/ |
instantiate-local-class.cpp | 7 } Y2; 9 Y2 y = Y();
|
instantiate-static-var.cpp | 61 struct Y2 { 72 Z1<Y2<X2>::value> x2; 73 int y2[Y2<X2>::value]; local
|
instantiate-expr-1.cpp | 164 template<int> struct Y2 { 171 template void Y2<3>::f();
|
/external/webkit/Source/WebCore/svg/ |
SVGLineElement.h | 62 DECLARE_ANIMATED_LENGTH(Y2, y2)
|
SVGLinearGradientElement.h | 56 DECLARE_ANIMATED_LENGTH(Y2, y2)
|
SVGLineElement.cpp | 39 DEFINE_ANIMATED_LENGTH(SVGLineElement, SVGNames::y2Attr, Y2, y2) 157 path.addLineTo(FloatPoint(x2().value(this), y2().value(this))); 165 || y2().isRelative();
|
SVGLinearGradientElement.cpp | 46 DEFINE_ANIMATED_LENGTH(SVGLinearGradientElement, SVGNames::y2Attr, Y2, y2) 178 attributes.setY2(linear->y2()); 205 endPoint = FloatPoint(attributes.x2().valueAsPercentage(), attributes.y2().valueAsPercentage()); 208 endPoint = FloatPoint(attributes.x2().value(this), attributes.y2().value(this)); 217 || y2().isRelative();
|
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/ |
calc_en.h | 141 * coeff[2] = y2 y2 142 * coeff[3] = -2 xn y2 143 * coeff[4] = 2 y1 y2 146 * gcu = <xn2, y2> / <y2, y2> (0 if <xn2, y2> <= 0) 157 Word16 Y2[], /* i : Filtered innovative vector, Q12 */
|
gain_q.h | 158 Word16 Y2[], /* i : Filtered innovative vector. */
|
gain_q.cpp | 393 Y2 -- Word16 array -- Filtered innovative vector. 477 Word16 Y2[], /* i : Filtered innovative vector. */ 542 Y2, 601 Y2, 661 Y2, 682 Y2,
|
calc_en.cpp | 408 Y2 = Filtered innovative vector, buffer type Word16 444 coeff[2] = y2 y2 445 coeff[3] = -2 xn y2 446 coeff[4] = 2 y1 y2 448 gcu = <xn2, y2> / <y2, y2> (0 if <xn2, y2> <= 0) 472 Word16 Y2[], // i : Filtered innovative vector, Q1 [all...] |
/external/clang/test/CXX/over/over.over/ |
p1.cpp | 86 template<int (&)(int)> struct Y2 { }; 93 Y2<f0> y2; variable
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/ |
SHA1Digest.java | 128 private static final int Y2 = 0x6ed9eba1; 206 // E = rotateLeft(A, 5) + h(B, C, D) + E + X[idx++] + Y2 208 E += (A << 5 | A >>> 27) + h(B, C, D) + X[idx++] + Y2; 211 D += (E << 5 | E >>> 27) + h(A, B, C) + X[idx++] + Y2; 214 C += (D << 5 | D >>> 27) + h(E, A, B) + X[idx++] + Y2; 217 B += (C << 5 | C >>> 27) + h(D, E, A) + X[idx++] + Y2; 220 A += (B << 5 | B >>> 27) + h(C, D, E) + X[idx++] + Y2;
|
/external/opencv/cv/src/ |
cvoptflowbm.cpp | 433 int Y2 = Y1 + offY + ss[k].y; 437 if( Y2 < 0 ) 442 if( Y2 + CurrentHeight >= imgSize.height ) 459 icvCopyBM_8u_C1R( imgB + Y2 * imgStep + X2,
|
/libcore/luni/src/test/java/libcore/java/lang/ |
ClassCastExceptionTest.java | 159 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2, 164 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
|