HomeSort by relevance Sort by last modified time
    Searched defs:X2 (Results 76 - 100 of 105) sorted by null

1 2 34 5

  /external/clang/test/SemaCXX/
static-cast.cpp 169 struct X2 {
172 struct X3 : X2 {
179 (void)static_cast<X3_typedef*>(x2);
182 const X2 *x2; member in struct:X4
cxx0x-initializer-constructor.cpp 41 struct X2 { explicit X2(int); }; // expected-note {{constructor declared here}}
95 { X2 x{0}; }
96 { X2 x = {0}; } // expected-error {{constructor is explicit}}
cxx1y-generic-lambdas.cpp 860 struct X2 {
886 struct X2 {
907 int X1::X2<T>::fooG3(T (*fp)(U)) { return 0; }
908 X1::X2<int> x2; //expected-note 3{{in instantiation of}}
909 int run1 = x2.fooG2();
910 int run2 = x2.fooG3();
enum-scoped.cpp 31 int x2 = Val2; member in struct:E1::E2
68 X<bool> X2; // expected-note{{in instantiation of template}}
154 enum class E x2 = E::a; // expected-error {{reference to scoped enumeration must use 'enum' not 'enum class'}} member in namespace:E1::E2::Redeclare5::N2764
new-delete.cpp 125 struct X2 {
130 void test_delete_conv(X0 x0, X1 x1, X2 x2) {
133 delete x2; // expected-error{{ambiguous conversion of delete expression of type 'X2' to a pointer}}
489 Foo2<Bar2> x2; member in namespace:PR12061
overloaded-operator.cpp 369 struct X2 { };
376 N::X2 &operator<<(N::X2&, const T&);
384 N::X2 x;
  /external/clang/test/SemaTemplate/
default-arguments.cpp 5 X<int> *x2; variable
49 struct X2 {
72 X2<int> x2i; // expected-note{{in instantiation of template class 'X2<int>' requested here}}
73 X2<int>::Inner1<float> x2iif;
75 X2<int>::Inner1<> x2bad; // expected-error{{too few template arguments for class template 'Inner1'}}
77 X2<int>::NonType1<'a'> x2_nontype1;
78 X2<int>::NonType1<> x2_nontype1_bad; // expected-error{{too few template arguments for class template 'NonType1'}}
81 X2<int>::Inner3<float>::VeryInner<> vi;
82 X2<char>::Inner3<int>::NonType2<> x2_deep_nontype; // expected-note{{in instantiation of template cla (…)
    [all...]
instantiate-expr-1.cpp 157 struct X2 {
165 typedef X2<7> X;
instantiate-function-1.cpp 16 struct X2 {
26 template struct X2<int>;
27 template struct X2<int&>; // expected-note{{instantiation of}}
instantiate-method.cpp 107 struct X2 : X0Base, U {
164 template < typename U = X1<int> > struct X2
166 X2( U = U())
173 typedef X2<> X2_type;
default-expr-arguments.cpp 91 struct X2 {
95 void test_x2(X2<int> x2i, X2<NotDefaultConstructible> x2n) {
friend-template.cpp 154 template<typename , typename T> struct X2
162 template <typename T1, typename T2, typename B> friend void op(X2<T1, T2>& , B);
164 template <typename Ch, typename Tr, typename B> void op(X2<Ch, Tr>& , B)
166 X2<int, Tr> s;
171 X2<int, X0<int> > ngs;
186 template<typename , typename T> struct X2
194 template <typename T1, typename T2, typename B> friend void op(X2<T1, T2>& , B);
196 template <typename Ch, typename Tr, typename B> void op(X2<Ch, Tr>& , B)
198 X2<int, Tr> s;
203 X2<int, X0<int> > ngs
    [all...]
instantiate-member-template.cpp 109 struct X2 {
117 X2<int&> x2a; // expected-note{{instantiation}}
118 X2<float> x2b; // expected-note{{instantiation}}
163 template<typename> class X2;
172 typedef X2<TT<typename X1<T>::type> > Type;
185 typedef X2<TT<typename X1<T>::type> > Type;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.h 57 float X2;
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p5.cpp 60 template <X1*> struct X2 { };
61 template <X1* Value> struct X3 : X2<Value> { };
  /external/chromium_org/third_party/sqlite/src/src/
date.c 230 int Y, M, D, A, B, X1, X2;
249 X2 = 306001*(M+1)/10000;
250 p->iJD = (sqlite3_int64)((X1 + X2 + D + B - 1524.5 ) * 86400000);
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 83 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,
88 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,
  /art/runtime/arch/arm64/
registers_arm64.h 29 X2 = 2,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 540 ECFieldElement X2 = b.x, Y2 = b.y;
546 ECFieldElement dx = X2.subtract(X1), dy = Y2.subtract(Y1);
561 ECFieldElement X3 = gamma.square().subtract(X1).subtract(X2);
578 ECFieldElement v1 = Z1IsOne ? X2 : X2.multiply(Z1);
623 ECFieldElement dx = X1.subtract(X2), dy = Y1.subtract(Y2);
634 ECFieldElement W1 = X1.multiply(C), W2 = X2.multiply(C);
655 Z1Squared = Z1; U2 = X2; S2 = Y2;
660 U2 = Z1Squared.multiply(X2);
904 ECFieldElement X2 = b.x, Y2 = b.y
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
avcenc_int.h 277 OsclFloat X2;
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bitvect.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 125781 double x2; local
126006 float x2 = DCOORD(aCell[0].aCoord[i*2+1]); local
    [all...]
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /external/sqlite/dist/orig/
sqlite3.c 146470 RtreeDValue x1, x2; local
    [all...]

Completed in 758 milliseconds

1 2 34 5