HomeSort by relevance Sort by last modified time
    Searched refs:X1 (Results 26 - 50 of 396) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 9 struct X1 {
10 X1();
11 explicit X1(const X1&);
49 void g1(const X1&);
56 g1(X1());
p5-cxx0x-no-extra-copy.cpp 8 struct X1 {
9 X1();
10 explicit X1(const X1&);
40 void g1(const X1&);
46 g1(X1());
  /external/clang/test/SemaTemplate/
instantiate-non-type-template-parameter.cpp 49 struct X1 : X0<T> {
50 X1() {}
51 template<typename U> X1(const X1<U> &x) : X0<T>(x) { }
54 X1<int> x1i;
55 X1<float> x1f(x1i);
member-template-access-expr.cpp 53 struct X1 {
61 void test_X1(X1 x1) {
62 float *fp1 = x1.f1<>(17);
63 float *fp2 = x1.f1<int>(3.14); // expected-warning {{implicit conversion from 'double' to 'int' changes value from 3.14 to 3}}
64 int *ip1 = x1.f1(17);
65 float *ip2 = x1.f1(3.14);
67 float* (X1::*mf1)(int) = &X1::f1;
68 float* (X1::*mf2)(int) = &X1::f1<>
    [all...]
instantiate-declref-ice.cpp 28 struct X1 {
33 const unsigned X1<T>::value = sizeof(T);
35 int array3[X1<int>::value == sizeof(int)? 1 : -1];
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
partial-ordering.cpp 8 struct X1 {
13 struct X1<tuple<Head, Tail...> > {
18 struct X1<tuple<Head, Tail&...> > {
23 struct X1<tuple<Head&, Tail&...> > {
27 int check0[X1<tuple<>>::value == 0? 1 : -1];
28 int check1[X1<tuple<int>>::value == 2? 1 : -1];
29 int check2[X1<tuple<int, int>>::value == 1? 1 : -1];
30 int check3[X1<tuple<int, int&>>::value == 2? 1 : -1];
31 int check4[X1<tuple<int&, int&>>::value == 3? 1 : -1];
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p8.cpp 31 struct X1 {
36 template struct X1<int>; // expected-note {{here}}
38 extern template struct X1<char>; // ok
40 template struct X1<char>; // expected-note {{here}}
p1.cpp 29 struct X1 {
42 template struct X1<int>::Inner<float>;
43 template struct X1<int>::Inner<double>;
44 template struct X1<int>::Inner<void>; // expected-note{{instantiation}}
46 template void X1<int>::f(int&, float);
47 template void X1<int>::f<long>(int&, long);
48 template void X1<int>::f<>(int&, double);
49 template void X1<int>::f<>(int&, int*); // expected-note{{instantiation}}
p3-0x.cpp 31 struct X1 {};
34 template void f(X1&);
37 template struct X0<X1>;
43 template struct X0<X2>::MemberClassTemplate<X1>;
45 template void X0<X2>::mem_func_template(X1&);
  /external/clang/test/CXX/temp/temp.param/
p2.cpp 20 class X1 { };
21 template<class X1 *xptr> struct Y2 { };
p9.cpp 20 class X1 {
  /external/clang/test/CodeGenCXX/
global-llvm-constant.cpp 22 struct X1 {
27 X1 array[3];
override-layout.cpp 20 // CHECK: Type: struct X1
21 struct X1 : public X0, public Empty2 {
27 struct PACKED X2 : public X1, public X0, public Empty1 {
33 struct PACKED X3 : virtual public X1, public X0 {
69 X1 x1s[sizeof(X1)];
key-function-vtable.cpp 38 struct X1 : X0 {
42 inline void X1::f() { }
44 void use_X1() { X1 x1; } local
  /external/clang/test/Sema/
warn-unused-variables.c 28 int X1 = 4;
29 (void)(Y1 + X1); // expected-error {{use of undeclared identifier 'Y1'}}
  /external/clang/test/SemaCXX/
libstdcxx_map_base_hack.cpp 18 struct X1 {
25 std::tr1::X1<int> x1i;
static-array-member.cpp 13 struct X1 {
18 T X1<T, N>::array[N];
converting-constructor.cpp 50 struct X1 { X1(const char&); };
51 void x1(X1);
53 x1(1);
default-constructor-initializers.cpp 3 struct X1 { // has no implicit default constructor
4 X1(int);
7 struct X2 : X1 { // expected-note 2 {{'X2' declared here}}
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32_amd64.s 165 MOVOU (SI), X1
169 PXOR X0, X1
177 MOVOA X1, X5
182 PCLMULQDQ $0, X0, X1
198 PXOR X5, X1
203 PXOR X11, X1
214 /* Fold result into a single register (X1) */
218 MOVOA X1, X5
219 PCLMULQDQ $0, X0, X1
221 PXOR X5, X1
    [all...]
  /prebuilts/go/linux-x86/src/hash/crc32/
crc32_amd64.s 165 MOVOU (SI), X1
169 PXOR X0, X1
177 MOVOA X1, X5
182 PCLMULQDQ $0, X0, X1
198 PXOR X5, X1
203 PXOR X11, X1
214 /* Fold result into a single register (X1) */
218 MOVOA X1, X5
219 PCLMULQDQ $0, X0, X1
221 PXOR X5, X1
    [all...]
  /external/clang/test/CXX/expr/expr.post/expr.call/
p7-0x.cpp 3 struct X1 {
4 X1();
25 void f(X1 x1, X2 x2, X3 x3, X4 x4) {
26 vararg(x1); // OK
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1-retmem.cpp 4 template<typename T> struct X1 { };
13 X1<value_type*> f2();
27 X1<typename X0<U>::value_type*> X0<U>::f2() {
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p4.cpp 4 struct X1 {
9 X1<int> x1a;
10 X1<float> x1b; // expected-note {{in instantiation of}}
  /external/clang/test/CXX/class.access/class.friend/
p3-cxx0x.cpp 15 class X1 {
27 X1<Y2> x1a;
28 X1<Y3> x1b;
29 X1<Y1> x1c; // expected-note{{in instantiation of template class 'X1<Y1>' requested here}}

Completed in 1215 milliseconds

12 3 4 5 6 7 8 91011>>