/external/clang/test/CodeGenCXX/ |
D | mangle-extreme.cpp | 3 struct X { }; struct 6 void f(X****************************************, in f() argument
|
D | atomicinit.cpp | 61 struct X { struct 63 short n; 64 char c; 77 _Atomic(X) c{X(3)}; in _Atomic() argument 91 struct X { struct 92 constexpr X(int n) : n(n) {} in X() function 93 short n; 94 char c = 6; 98 _Atomic(X) c{X(3)}; in _Atomic() argument
|
D | copy-constructor-synthesis.cpp | 25 struct X : M, N, P { // ... struct 26 X() : f1(1.0), d1(2.0), i1(3), name("HELLO"), bf1(0xff), bf2(0xabcd), in X() function 28 P p0; 29 void pr() { in pr() 37 M m1; 38 P p1; 39 float f1; 40 double d1; 41 int i1; 42 const char *name; [all …]
|
/external/clang/test/SemaTemplate/ |
D | ms-class-specialization-class-scope.cpp | 6 template<typename T> struct X { typedef int x; }; struct in A 10 …template<> struct X<int>; // expected-error {{explicit specialization of 'A::X<int>' after instant… 15 template<> struct X<double> { struct in A 21 template<> struct X<float> {}; // expected-note {{previous definition is here}} struct in A 22 template<> struct X<float> {}; // expected-error {{redefinition of 'A::X<float>'}} struct in A 30 template<typename U> struct X { typedef int x; }; struct in B 39 template<> struct X<double> { struct in B 40 typedef int y; 45 template<> struct X<float> {}; // expected-note {{previous definition is here}} struct in B 46 template<> struct X<T> {}; // expected-error {{redefinition of 'X<float>'}} struct in B
|
D | injected-class-name.cpp | 3 struct X { struct 4 X<T*> *ptr; argument 10 struct X<int***> { struct 11 typedef X<int***> *ptr; argument 57 struct X { struct 58 typedef T foo; 59 typedef X<T> xt; 60 typename xt::foo *t;
|
D | partial-spec-instantiate.cpp | 6 template <class T> struct X {}; struct 8 template <> struct X<char> struct 26 struct X { struct 27 int m; 46 template<typename T, T N> struct X { }; struct 47 template<bool C> struct X<bool, C> { struct 48 typedef int type;
|
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/ |
D | p2.cpp | 3 template<int I, int J, class T> struct X { struct 7 template<int I, int J> struct X<I, J, int> { struct 11 template<int I> struct X<I, I, int> { argument 15 int array0[X<0, 0, float>::value == 0? 1 : -1]; argument 21 struct X { struct 22 static const unsigned value = 1; 26 struct X<T, U, typename T::is_b> { struct 27 static const unsigned value = 2; 31 struct X<T, typename T::is_a, typename T::is_b> { struct 32 static const unsigned value = 3;
|
/external/clang/test/SemaObjCXX/ |
D | propert-dot-error.mm | 4 struct X { struct 5 X(); argument 6 X(const X&); argument 7 ~X(); field 15 X xval; argument 19 - (void)setx:(X)x; argument
|
D | literals.mm | 71 struct X { struct 72 ConvertibleTo<id> x; 73 ConvertibleTo<id> get(); 76 template<typename T> T test_numeric_instantiation() { 100 X x; argument 107 void test_array_literals(T t) { 111 template void test_array_literals(id); 112 template void test_array_literals(NSArray*); 113 …e{{in instantiation of function template specialization 'test_array_literals<int>' requested here}} 116 void test_dictionary_literals(T t, U u) { [all …]
|
D | objc-container-subscripting.mm | 59 struct X { struct 60 ConvertibleTo<id> x; 61 ConvertibleTo<id> get(); 64 NSMutableArray *test_array_convertibility(ConvertibleTo<NSMutableArray*> toArray, 81 id test_dict_convertibility(ConvertibleTo<NSMutableDictionary*> toDict, 103 void test_bad_variadic_array_subscripting(Args ...args) { 109 void test_variadic_array_subscripting(Args ...args) { 113 template void test_variadic_array_subscripting(id arg1, NSMutableArray* arg2, id arg3); 118 void test_variadic_dictionary_subscripting(Index I, Args ...args) { 122 … void test_variadic_dictionary_subscripting(Key *key, id arg1, NSMutableDictionary* arg2, id arg3); [all …]
|
/external/clang/test/CodeGen/ |
D | 2007-04-11-PR1321.c | 3 struct X { struct 4 unsigned int e0 : 17; 5 unsigned int e1 : 17; 6 unsigned int e2 : 17; 7 unsigned int e3 : 17; 8 unsigned int e4 : 17; 9 unsigned int e5 : 17; 10 unsigned int e6 : 17; 11 unsigned int e7 : 17;
|
/external/clang/test/CodeGenObjCXX/ |
D | nrvo.mm | 4 struct X { struct 5 X(); field 6 X(const X&); argument 7 ~X(); argument 15 - (X)getNRVO { argument
|
D | literals.mm | 5 struct X { struct 6 X(); field 7 ~X(); argument 24 // CHECK-NEXT: call void @llvm.lifetime.start(i64 8, i8* [[PTR1]]) argument
|
/external/libcxx/test/std/experimental/optional/optional.object/optional.object.observe/ |
D | value_or.pass.cpp | 31 struct X struct 35 X(int i) : i_(i) {} in X() argument 36 X(X&& x) : i_(x.i_) {x.i_ = 0;} in X() function 37 X(const Y& y) : i_(y.i_) {} in X() function 38 X(Y&& y) : i_(y.i_+1) {} in X() argument
|
D | value_or_const.pass.cpp | 29 struct X struct 33 constexpr X(int i) : i_(i) {} in X() function 34 constexpr X(const Y& y) : i_(y.i_) {} in X() function 35 constexpr X(Y&& y) : i_(y.i_+1) {} in X() argument
|
/external/mesa3d/src/mesa/drivers/x11/ |
D | xm_line.c | 137 #define PLOT(X,Y) XMesaPutPixel(xrb->ximage, X, YFLIP(xrb, Y), pixel ); argument 152 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR4(xrb, X, Y) argument 154 #define PLOT(X,Y) *pixelPtr = pixel; argument 169 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR4(xrb, X, Y) argument 171 #define PLOT(X,Y) *pixelPtr = pixel; argument 186 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR4(xrb, X, Y) argument 188 #define PLOT(X,Y) *pixelPtr = pixel; argument 202 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR3(xrb, X, Y) argument 204 #define PLOT(X,Y) { \ argument 223 #define PIXEL_ADDRESS(X,Y) PIXEL_ADDR2(xrb, X, Y) argument [all …]
|
/external/clang/test/CXX/class.access/class.friend/ |
D | p9-cxx0x.cpp | 11 class X { class 22 class X { class 35 class X { class 51 class X { class 65 template <class T> class X { class 76 template <class T> class X { class 91 template <class T> class X { class 107 template <class T> class X { class
|
/external/libcxx/test/std/containers/associative/map/map.cons/ |
D | default_recursive.pass.cpp | 18 struct X struct 20 std::map<int, X> m; argument 21 std::map<int, X>::iterator i; argument 22 std::map<int, X>::const_iterator ci; argument 23 std::map<int, X>::reverse_iterator ri; argument 24 std::map<int, X>::const_reverse_iterator cri; argument
|
/external/libcxx/test/std/containers/associative/multimap/multimap.cons/ |
D | default_recursive.pass.cpp | 18 struct X struct 20 std::multimap<int, X> m; argument 21 std::multimap<int, X>::iterator i; argument 22 std::multimap<int, X>::const_iterator ci; argument 23 std::multimap<int, X>::reverse_iterator ri; argument 24 std::multimap<int, X>::const_reverse_iterator cri; argument
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/ |
D | p4-0x.cpp | 14 struct X { struct 15 int n = 10; 16 int m = [&]{return n + 1; }(); in __anon33c159c20102() 17 int o = [&]{return this->m + 1; }(); in __anon33c159c20202() 18 int p = [&]{return [&](int x) { return this->m + x;}(o); }(); in __anon33c159c20302()
|
/external/cblas/testing/ |
D | c_sblas1.c | 11 float F77_sasum(const int *N, float *X, const int *incX) in F77_sasum() 16 void F77_saxpy(const int *N, const float *alpha, const float *X, in F77_saxpy() 23 float F77_scasum(const int *N, void *X, const int *incX) in F77_scasum() 28 float F77_scnrm2(const int *N, const void *X, const int *incX) in F77_scnrm2() 33 void F77_scopy(const int *N, const float *X, const int *incX, in F77_scopy() 40 float F77_sdot(const int *N, const float *X, const int *incX, in F77_sdot() 46 float F77_snrm2(const int *N, const float *X, const int *incX) in F77_snrm2() 57 void F77_srot( const int *N, float *X, const int *incX, float *Y, in F77_srot() 64 void F77_sscal(const int *N, const float *alpha, float *X, in F77_sscal() 71 void F77_sswap( const int *N, float *X, const int *incX, in F77_sswap() [all …]
|
D | c_dblas1.c | 11 double F77_dasum(const int *N, double *X, const int *incX) in F77_dasum() 16 void F77_daxpy(const int *N, const double *alpha, const double *X, in F77_daxpy() 23 void F77_dcopy(const int *N, double *X, const int *incX, in F77_dcopy() 30 double F77_ddot(const int *N, const double *X, const int *incX, in F77_ddot() 36 double F77_dnrm2(const int *N, const double *X, const int *incX) in F77_dnrm2() 47 void F77_drot( const int *N, double *X, const int *incX, double *Y, in F77_drot() 55 void F77_dscal(const int *N, const double *alpha, double *X, in F77_dscal() 62 void F77_dswap( const int *N, double *X, const int *incX, in F77_dswap() 69 double F77_dzasum(const int *N, void *X, const int *incX) in F77_dzasum() 74 double F77_dznrm2(const int *N, const void *X, const int *incX) in F77_dznrm2() [all …]
|
D | c_cblas1.c | 11 void F77_caxpy(const int *N, const void *alpha, void *X, in F77_caxpy() 18 void F77_ccopy(const int *N, void *X, const int *incX, in F77_ccopy() 25 void F77_cdotc(const int *N, void *X, const int *incX, in F77_cdotc() 32 void F77_cdotu(const int *N, void *X, const int *incX, in F77_cdotu() 39 void F77_cscal(const int *N, const void * *alpha, void *X, in F77_cscal() 46 void F77_csscal(const int *N, const float *alpha, void *X, in F77_csscal() 53 void F77_cswap( const int *N, void *X, const int *incX, in F77_cswap() 60 int F77_icamax(const int *N, const void *X, const int *incX) in F77_icamax() 66 float F77_scnrm2(const int *N, const void *X, const int *incX) in F77_scnrm2() 71 float F77_scasum(const int *N, void *X, const int *incX) in F77_scasum()
|
/external/eigen/bench/btl/libs/BLAS/ |
D | blas_interface_impl.hh | 17 …static inline void matrix_vector_product(gene_matrix & A, gene_vector & B, gene_vector & X, int N){ in matrix_vector_product() 21 static inline void symv(gene_matrix & A, gene_vector & B, gene_vector & X, int N){ in symv() 25 static inline void syr2(gene_matrix & A, gene_vector & B, gene_vector & X, int N){ in syr2() 29 static inline void ger(gene_matrix & A, gene_vector & X, gene_vector & Y, int N){ in ger() 37 static inline void atv_product(gene_matrix & A, gene_vector & B, gene_vector & X, int N){ in atv_product() 41 …static inline void matrix_matrix_product(gene_matrix & A, gene_matrix & B, gene_matrix & X, int N){ in matrix_matrix_product() 45 …ne void transposed_matrix_matrix_product(gene_matrix & A, gene_matrix & B, gene_matrix & X, int N){ in transposed_matrix_matrix_product() 53 static inline void aat_product(gene_matrix & A, gene_matrix & X, int N){ in aat_product() 57 static inline void axpy(SCALAR coef, const gene_vector & X, gene_vector & Y, int N){ in axpy() 61 static inline void axpby(SCALAR a, const gene_vector & X, SCALAR b, gene_vector & Y, int N){ in axpby() [all …]
|
/external/clang/test/SemaCXX/ |
D | illegal-member-initialization.cpp | 12 struct X { struct 13 …X() { } // expected-error {{constructor for 'X' must explicitly initialize the reference memb… in X() function 17 int &value; // expected-note{{declared here}} 18 const int cvalue; // expected-note{{declared here}} 19 B& b; // expected-note{{declared here}} 20 const B cb; // expected-note{{declared here}}
|